Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update go dependencies #1329

Merged
merged 19 commits into from
Feb 3, 2025
Merged

chore: update go dependencies #1329

merged 19 commits into from
Feb 3, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 4, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
cloud.google.com/go/profiler v0.3.0 -> v0.4.2 age adoption passing confidence require minor
cloud.google.com/go/storage v1.36.0 -> v1.50.0 age adoption passing confidence require minor
github.com/99designs/gqlgen v0.17.43 -> v0.17.64 age adoption passing confidence require patch
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.21.0 -> v1.26.0 age adoption passing confidence require minor
github.com/avast/retry-go/v4 v4.0.4 -> v4.6.0 age adoption passing confidence require minor
github.com/aws/aws-sdk-go-v2 v1.25.3 -> v1.34.0 age adoption passing confidence require minor
github.com/aws/aws-sdk-go-v2/config v1.27.7 -> v1.29.2 age adoption passing confidence require minor
github.com/aws/aws-sdk-go-v2/service/s3 v1.52.0 -> v1.74.1 age adoption passing confidence require minor
github.com/gavv/httpexpect/v2 v2.3.1 -> v2.16.0 age adoption passing confidence require minor
github.com/goccy/go-yaml v1.11.3 -> v1.15.15 age adoption passing confidence require minor
github.com/joho/godotenv v1.4.0 -> v1.5.1 age adoption passing confidence require minor
github.com/k0kubun/pp/v3 v3.2.0 -> v3.4.1 age adoption passing confidence require minor
github.com/labstack/echo/v4 v4.11.4 -> v4.13.3 age adoption passing confidence require minor
github.com/oklog/ulid v1.3.1 -> v2.1.0 age adoption passing confidence require major
github.com/ravilushqa/otelgqlgen v0.15.0 -> v0.17.0 age adoption passing confidence require minor
github.com/samber/lo v1.39.0 -> v1.49.1 age adoption passing confidence require minor
github.com/spf13/afero v1.11.0 -> v1.12.0 age adoption passing confidence require minor
github.com/stretchr/testify v1.8.4 -> v1.10.0 age adoption passing confidence require minor
github.com/twpayne/go-kml v1.5.2 -> v3.2.1 age adoption passing confidence require major
github.com/vektah/gqlparser/v2 v2.5.11 -> v2.5.22 age adoption passing confidence require patch
github.com/zitadel/oidc v1.13.5 -> v3.34.1 age adoption passing confidence require major
go (source) 1.23.4 -> 1.23.5 age adoption passing confidence golang patch
go.mongodb.org/mongo-driver v1.13.1 -> v2.0.0 age adoption passing confidence require major
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.32.0 -> v0.59.0 age adoption passing confidence require minor
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.32.0 -> v0.59.0 age adoption passing confidence require minor
go.opentelemetry.io/otel v1.22.0 -> v1.34.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/sdk v1.22.0 -> v1.34.0 age adoption passing confidence require minor
golang.org/x/net v0.20.0 -> v0.34.0 age adoption passing confidence require minor
golang.org/x/oauth2 v0.16.0 -> v0.25.0 age adoption passing confidence require minor
golang.org/x/text v0.14.0 -> v0.21.0 age adoption passing confidence require minor
golang.org/x/tools v0.17.0 -> v0.29.0 age adoption passing confidence require minor
google.golang.org/api v0.161.0 -> v0.219.0 age adoption passing confidence require minor

Release Notes

googleapis/google-cloud-go (cloud.google.com/go/profiler)

v0.4.0

  • bigquery:
    -NewGCSReference is now a function, not a method on Client.

    • Table.LoaderFrom now accepts a ReaderSource, enabling
      loading data into a table from a file or any io.Reader.
    • Client.Table and Client.OpenTable have been removed.
      Replace

      client.OpenTable("project", "dataset", "table")

      with

      client.DatasetInProject("project", "dataset").Table("table")
    • Client.CreateTable has been removed.
      Replace

      client.CreateTable(ctx, "project", "dataset", "table")

      with

      client.DatasetInProject("project", "dataset").Table("table").Create(ctx)
    • Dataset.ListTables have been replaced with Dataset.Tables.
      Replace

      tables, err := ds.ListTables(ctx)

      with

      it := ds.Tables(ctx)
      for {
          table, err := it.Next()
          if err == iterator.Done {
              break
          }
          if err != nil {
              // TODO: Handle error.
          }
          // TODO: use table.
      }
    • Client.Read has been replaced with Job.Read, Table.Read and Query.Read.
      Replace

      it, err := client.Read(ctx, job)

      with

      it, err := job.Read(ctx)

      and similarly for reading from tables or queries.

    • The iterator returned from the Read methods is now named RowIterator. Its
      behavior is closer to the other iterators in these libraries. It no longer
      supports the Schema method; see the next item.
      Replace

      for it.Next(ctx) {
          var vals ValueList
          if err := it.Get(&vals); err != nil {
              // TODO: Handle error.
          }
          // TODO: use vals.
      }
      if err := it.Err(); err != nil {
          // TODO: Handle error.
      }

      with
      for {
      var vals ValueList
      err := it.Next(&vals)
      if err == iterator.Done {
      break
      }
      if err != nil {
      // TODO: Handle error.
      }
      // TODO: use vals.
      }
      Instead of the RecordsPerRequest(n) option, write

      it.PageInfo().MaxSize = n

      Instead of the StartIndex(i) option, write

      it.StartIndex = i
    • ValueLoader.Load now takes a Schema in addition to a slice of Values.
      Replace

      func (vl *myValueLoader) Load(v []bigquery.Value)

      with

      func (vl *myValueLoader) Load(v []bigquery.Value, s bigquery.Schema)
    • Table.Patch is replace by Table.Update.
      Replace

      p := table.Patch()
      p.Description("new description")
      metadata, err := p.Apply(ctx)

      with

      metadata, err := table.Update(ctx, bigquery.TableMetadataToUpdate{
          Description: "new description",
      })
    • Client.Copy is replaced by separate methods for each of its four functions.
      All options have been replaced by struct fields.

      • To load data from Google Cloud Storage into a table, use Table.LoaderFrom.

        Replace

        client.Copy(ctx, table, gcsRef)

        with

        table.LoaderFrom(gcsRef).Run(ctx)

        Instead of passing options to Copy, set fields on the Loader:

        loader := table.LoaderFrom(gcsRef)
        loader.WriteDisposition = bigquery.WriteTruncate
      • To extract data from a table into Google Cloud Storage, use
        Table.ExtractorTo. Set fields on the returned Extractor instead of
        passing options.

        Replace

        client.Copy(ctx, gcsRef, table)

        with

        table.ExtractorTo(gcsRef).Run(ctx)
      • To copy data into a table from one or more other tables, use
        Table.CopierFrom. Set fields on the returned Copier instead of passing options.

        Replace

        client.Copy(ctx, dstTable, srcTable)

        with

        dst.Table.CopierFrom(srcTable).Run(ctx)
      • To start a query job, create a Query and call its Run method. Set fields
        on the query instead of passing options.

        Replace

        client.Copy(ctx, table, query)

        with

        query.Run(ctx)
    • Table.NewUploader has been renamed to Table.Uploader. Instead of options,
      configure an Uploader by setting its fields.
      Replace

      u := table.NewUploader(bigquery.UploadIgnoreUnknownValues())

      with

      u := table.NewUploader(bigquery.UploadIgnoreUnknownValues())
      u.IgnoreUnknownValues = true
  • pubsub: remove pubsub.Done. Use iterator.Done instead, where iterator is the package
    google.golang.org/api/iterator.

99designs/gqlgen (github.com/99designs/gqlgen)

v0.17.64

Compare Source

v0.17.63

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.62...v0.17.63

v0.17.62

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.61...v0.17.62

v0.17.61

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.60...v0.17.61

v0.17.60

Compare Source

What's Changed

Full Changelog: 99designs/gqlgen@v0.17.59...v0.17.60

v0.17.59

Compare Source

What's Changed

Full Changelog: 99designs/gqlgen@v0.17.58...v0.17.59

v0.17.58

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.57...v0.17.58

v0.17.57

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.56...v0.17.57

v0.17.56

Compare Source

What's Changed

@renovate renovate bot requested a review from pyshx as a code owner January 4, 2025 00:22
Copy link
Contributor Author

renovate bot commented Jan 4, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: server/go.sum
Command failed: mod upgrade --mod-name=go.mongodb.org/mongo-driver -t=2
go: finding module for package go.mongodb.org/mongo-driver/v2/bson/primitive
go: downloading go.mongodb.org/mongo-driver/v2 v2.0.0
go: finding module for package go.mongodb.org/mongo-driver/v2/mongo
go: finding module for package go.mongodb.org/mongo-driver/v2/mongo/options
go: finding module for package go.mongodb.org/mongo-driver/v2/bson
go: found go.mongodb.org/mongo-driver/v2/mongo in go.mongodb.org/mongo-driver/v2 v2.0.0
go: found go.mongodb.org/mongo-driver/v2/mongo/options in go.mongodb.org/mongo-driver/v2 v2.0.0
go: found go.mongodb.org/mongo-driver/v2/bson in go.mongodb.org/mongo-driver/v2 v2.0.0
go: finding module for package go.mongodb.org/mongo-driver/v2/bson/primitive
go: github.com/reearth/reearth/server/internal/adapter/gql/gqlmodel imports
	go.mongodb.org/mongo-driver/v2/bson/primitive: module go.mongodb.org/mongo-driver/v2@latest found (v2.0.0), but does not contain package go.mongodb.org/mongo-driver/v2/bson/primitive
exit status 1

Copy link

coderabbitai bot commented Jan 4, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions github-actions bot added the server label Jan 4, 2025
Copy link

netlify bot commented Jan 4, 2025

Deploy Preview for reearth-web canceled.

Name Link
🔨 Latest commit 4e88921
🔍 Latest deploy log https://app.netlify.com/sites/reearth-web/deploys/67a0dcac523465000809aa63

@renovate renovate bot force-pushed the renovate/gomod branch 10 times, most recently from a7aae1d to 918eef0 Compare January 10, 2025 22:14
@renovate renovate bot force-pushed the renovate/gomod branch 9 times, most recently from 75967dc to 8ece31f Compare January 17, 2025 21:30
@renovate renovate bot force-pushed the renovate/gomod branch 6 times, most recently from 7ec572c to ecc3b08 Compare January 27, 2025 05:35
Copy link
Contributor Author

renovate bot commented Jan 29, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@soneda-yuya
Copy link
Contributor

soneda-yuya commented Jan 29, 2025

Update Step I did

1. I had a error like this.

internal/adapter/gql/gqldataloader/assetloader_gen.go:9:2: package github.com/reearth/reearth/server/internal/adapter/gql/gqlmodel imports go.mongodb.org/mongo-driver/bson/primitive from implicitly required module; to add missing requirements, run:
        go get go.mongodb.org/[email protected]
internal/app/graphql.go:16:2: package github.com/reearth/reearth/server/internal/adapter/gql imports github.com/oklog/ulid from implicitly required module; to add missing requirements, run:
        go get github.com/oklog/[email protected]
internal/infrastructure/mongo/migration/201217132559_add_scene_widget_id.go:6:2: package github.com/reearth/reearth/server/internal/infrastructure/mongo/mongodoc imports go.mongodb.org/mongo-driver/bson/primitive from implicitly required module; to add missing requirements, run:
        go get go.mongodb.org/[email protected]
internal/infrastructure/mongo/container.go:8:2: package github.com/reearth/reearth/server/internal/infrastructure/mongo/migration imports go.mongodb.org/mongo-driver/bson from implicitly required module; to add missing requirements, run:
        go get go.mongodb.org/[email protected]
internal/app/repo.go:12:2: package github.com/reearth/reearth/server/internal/infrastructure/mongo imports go.mongodb.org/mongo-driver/mongo/options from implicitly required module; to add missing requirements, run:
        go get go.mongodb.org/[email protected]
pkg/layer/encoding/kml.go:9:2: no required module provides package github.com/twpayne/go-kml; to add it:
        go get github.com/twpayne/go-kml
cmd/reearth/main.go:3:8: package github.com/reearth/reearth/server/internal/app imports go.mongodb.org/mongo-driver/mongo/options from implicitly required module; to add missing requirements, run:
        go get go.mongodb.org/[email protected]

So, run

go get go.mongodb.org/[email protected]
go get github.com/oklog/[email protected]

2. I had a error like this.

../../../../go/pkg/mod/google.golang.org/[email protected]/xds/internal/xdsclient/xdslbregistry/converter/converter.go:45:2: ambiguous import: found package github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 in multiple modules:
        github.com/envoyproxy/go-control-plane v0.13.1 (/Users/y.soneda/go/pkg/mod/github.com/envoyproxy/[email protected]/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3)
        github.com/envoyproxy/go-control-plane/envoy v1.32.3 (/Users/y.soneda/go/pkg/mod/github.com/envoyproxy/go-control-plane/[email protected]/extensions/load_balancing_policies/client_side_weighted_round_robin/v3)
../../../../go/pkg/mod/google.golang.org/[email protected]/xds/internal/xdsclient/xdslbregistry/converter/converter.go:46:2: ambiguous import: found package github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/least_request/v3 in multiple modules:
        github.com/envoyproxy/go-control-plane v0.13.1 (/Users/y.soneda/go/pkg/mod/github.com/envoyproxy/[email protected]/envoy/extensions/load_balancing_policies/least_request/v3)
        github.com/envoyproxy/go-control-plane/envoy v1.32.3 (/Users/y.soneda/go/pkg/mod/github.com/envoyproxy/go-control-plane/[email protected]/extensions/load_balancing_policies/least_request/v3)
../../../../go/pkg/mod/google.golang.org/[email protected]/xds/internal/xdsclient/xdslbregistry/converter/converter.go:47:2: ambiguous import: found package github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/pick_first/v3 in multiple modules:
        github.com/envoyproxy/go-control-plane v0.13.1 (/Users/y.soneda/go/pkg/mod/github.com/envoyproxy/[email protected]/envoy/extensions/load_balancing_policies/pick_first/v3)
        github.com/envoyproxy/go-control-plane/envoy v1.32.3 (/Users/y.soneda/go/pkg/mod/github.com/envoyproxy/go-control-plane/[email protected]/extensions/load_balancing_policies/pick_first/v3)
../../../../go/pkg/mod/google.golang.org/[email protected]/xds/internal/xdsclient/xdslbregistry/converter/converter.go:48:2: ambiguous import: found package github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/ring_hash/v3 in multiple modules:
        github.com/envoyproxy/go-control-plane v0.13.1 (/Users/y.soneda/go/pkg/mod/github.com/envoyproxy/[email protected]/envoy/extensions/load_balancing_policies/ring_hash/v3)
        github.com/envoyproxy/go-control-plane/envoy v1.32.3 (/Users/y.soneda/go/pkg/mod/github.com/envoyproxy/go-control-plane/[email protected]/extensions/load_balancing_policies/ring_hash/v3)
../../../../go/pkg/mod/google.golang.org/[email protected]/xds/internal/xdsclient/xdslbregistry/converter/converter.go:49:2: ambiguous import: found package github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/wrr_locality/v3 in multiple modules:
        github.com/envoyproxy/go-control-plane v0.13.1 (/Users/y.soneda/go/pkg/mod/github.com/envoyproxy/[email protected]/envoy/extensions/load_balancing_policies/wrr_locality/v3)
        github.com/envoyproxy/go-control-plane/envoy v1.32.3 (/Users/y.soneda/go/pkg/mod/github.com/envoyproxy/go-control-plane/[email protected]/extensions/load_balancing_policies/wrr_locality/v3)
pkg/layer/encoding/kml.go:9:2: no required module provides package github.com/twpayne/go-kml; to add it:
        go get github.com/twpayne/go-kml
cmd/reearth/main.go:3:8: package github.com/reearth/reearth/server/internal/app imports github.com/zitadel/oidc/pkg/oidc from implicitly required module; to add missing requirements, run:
        go get github.com/zitadel/[email protected]
failed to build, error: exit status 1

So, run

go get github.com/twpayne/[email protected]
go get github.com/zitadel/[email protected]

3. I run

go mod tidy

4. I had version conflict Errors

../../../../go/pkg/mod/google.golang.org/[email protected]/xds/internal/xdsclient/xdslbregistry/converter/converter.go:45:2: ambiguous import: found package github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3 in multiple modules:
        github.com/envoyproxy/go-control-plane v0.13.1 (/Users/y.soneda/go/pkg/mod/github.com/envoyproxy/[email protected]/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3)
        github.com/envoyproxy/go-control-plane/envoy v1.32.3 (/Users/y.soneda/go/pkg/mod/github.com/envoyproxy/go-control-plane/[email protected]/extensions/load_balancing_policies/client_side_weighted_round_robin/v3)
➜  server git:(renovate/gomod) ✗ go list -m all | grep envoyproxy/go-control-plane         
github.com/envoyproxy/go-control-plane v0.13.1
github.com/envoyproxy/go-control-plane/envoy v1.32.3
github.com/envoyproxy/go-control-plane/ratelimit v0.1.0
➜  server git:(renovate/gomod) ✗ go mod why -m github.com/envoyproxy/go-control-plane/envoy
go: downloading github.com/envoyproxy/go-control-plane/ratelimit v0.1.0
# github.com/envoyproxy/go-control-plane/envoy
(main module does not need module github.com/envoyproxy/go-control-plane/envoy)
 go mod why -m github.com/envoyproxy/go-control-plane
# github.com/envoyproxy/go-control-plane
github.com/reearth/reearth/server/internal/infrastructure/gcs
cloud.google.com/go/storage
google.golang.org/grpc/stats/opentelemetry
google.golang.org/grpc/stats/opentelemetry.test
google.golang.org/grpc/internal/testutils/xds/e2e
github.com/envoyproxy/go-control-plane/pkg/cache/types
➜  server git:(renovate/gomod) ✗ go list -m all | grep envoy
github.com/envoyproxy/go-control-plane v0.13.1
github.com/envoyproxy/go-control-plane/envoy v1.32.3
github.com/envoyproxy/go-control-plane/ratelimit v0.1.0
github.com/envoyproxy/protoc-gen-validate v1.1.0
server git:(renovate/gomod) ✗ go mod graph | grep envoyproxy/go-control-plane/envoy
cloud.google.com/go/[email protected] github.com/envoyproxy/go-control-plane/[email protected]
server git:(renovate/gomod) ✗ go mod graph | grep envoyproxy/go-control-plane
github.com/reearth/reearth/server github.com/envoyproxy/[email protected]
cloud.google.com/go/[email protected] github.com/envoyproxy/go-control-plane/[email protected]
cloud.google.com/go/[email protected] github.com/envoyproxy/go-control-plane/[email protected]
github.com/spf13/[email protected] github.com/envoyproxy/[email protected]
github.com/envoyproxy/[email protected] github.com/census-instrumentation/[email protected]
github.com/envoyproxy/[email protected] github.com/cncf/xds/[email protected]
github.com/envoyproxy/[email protected] github.com/envoyproxy/[email protected]
github.com/envoyproxy/[email protected] github.com/google/[email protected]
github.com/envoyproxy/[email protected] github.com/planetscale/[email protected]
github.com/envoyproxy/[email protected] github.com/prometheus/[email protected]
github.com/envoyproxy/[email protected] github.com/stretchr/[email protected]
github.com/envoyproxy/[email protected] go.opentelemetry.io/proto/[email protected]
github.com/envoyproxy/[email protected] go.uber.org/[email protected]
github.com/envoyproxy/[email protected] google.golang.org/genproto/googleapis/[email protected]
github.com/envoyproxy/[email protected] google.golang.org/genproto/googleapis/[email protected]
github.com/envoyproxy/[email protected] google.golang.org/[email protected]
github.com/envoyproxy/[email protected] google.golang.org/[email protected]
github.com/envoyproxy/[email protected] cel.dev/[email protected]
github.com/envoyproxy/[email protected] github.com/davecgh/[email protected]
github.com/envoyproxy/[email protected] github.com/kr/[email protected]
github.com/envoyproxy/[email protected] github.com/pmezard/[email protected]
github.com/envoyproxy/[email protected] golang.org/x/[email protected]
github.com/envoyproxy/[email protected] golang.org/x/[email protected]
github.com/envoyproxy/[email protected] golang.org/x/[email protected]
github.com/envoyproxy/[email protected] gopkg.in/[email protected]
github.com/envoyproxy/[email protected] gopkg.in/[email protected]
github.com/envoyproxy/[email protected] [email protected]
google.golang.org/[email protected] github.com/envoyproxy/[email protected]

cloud.google.com/go/[email protected] depends on github.com/envoyproxy/go-control-plane/[email protected]
from this changes https://github.com/googleapis/google-cloud-go/compare/storage/v1.49.0...storage/v1.50.0

So I grade down cloud.google.com/go/[email protected] to cloud.google.com/go/[email protected]

go get cloud.google.com/go/[email protected]
go mod tidy

other packages depend on github.com/envoyproxy/[email protected]

5. I had error application error

# github.com/reearth/reearth/server/internal/app
internal/app/graphql.go:52:27: in call to lru.New, cannot infer T (/Users/y.soneda/go/pkg/mod/github.com/99designs/[email protected]/graphql/handler/lru/lru.go:17:10)
internal/app/graphql.go:54:17: in call to lru.New, cannot infer T (/Users/y.soneda/go/pkg/mod/github.com/99designs/[email protected]/graphql/handler/lru/lru.go:17:10)

So I fix like this

6. I had some go-lint error

like this

So I fixed on this commit.

7. I had test error because of updating testify

Because NotSame method is fixed by this update on testify.
stretchr/testify@118fb83

On our code test, we want to test whether I can deepClone.
So I fixed like this.

784d91d

7. I had test error because of updating httpexpect

In this update, this return nil.
(That is the correct behaviour)

res.Object().Path("$.data.removeNLSInfoboxBlock.layer.infobox.blocks[:].id").Array()

But brefore test code, passed this test.

I fixed like this.

8. I got go-lint erros again

5b4217b

9. change gqlgen's behavior

Any resolver file was not generated by before config.
If we want to generate resolver file, we need to specify package .

resolver:
  filename: internal/adapter/gql/resolver.go
  type: Resolver

Since resolve file is generated by before config on new version,
I comment out resolver section.

3ed1954

@soneda-yuya soneda-yuya self-assigned this Jan 29, 2025
@soneda-yuya soneda-yuya merged commit 1cfa20e into main Feb 3, 2025
17 checks passed
@soneda-yuya soneda-yuya deleted the renovate/gomod branch February 3, 2025 15:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants