Skip to content

chore: update go dependencies - #2377

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/gomod
Open

chore: update go dependencies#2377
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/gomod

Conversation

@renovate

@renovate renovate Bot commented Aug 10, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
cloud.google.com/go/profiler v0.4.3v0.6.0 age confidence
cloud.google.com/go/storage v1.57.2v1.64.0 age confidence
github.com/99designs/gqlgen v0.17.84v0.17.94 age confidence
github.com/aws/aws-sdk-go-v2 v1.40.0v1.43.3 age confidence
github.com/aws/aws-sdk-go-v2/config v1.32.2v1.32.34 age confidence
github.com/aws/aws-sdk-go-v2/service/s3 v1.92.1v1.106.3 age confidence
github.com/go-faker/faker/v4 v4.7.0v4.10.1 age confidence
github.com/go-playground/validator/v10 v10.28.0v10.30.3 age confidence
github.com/goccy/go-yaml v1.19.0v1.19.2 age confidence
github.com/hasura/go-graphql-client v0.15.0v0.16.0 age confidence
github.com/jarcoal/httpmock v1.4.1v1.4.2 age confidence
github.com/k0kubun/pp/v3 v3.5.0v3.5.2 age confidence
github.com/labstack/gommon v0.4.2v0.5.0 age confidence
github.com/samber/lo v1.52.0v1.53.0 age confidence
github.com/vektah/gqlparser/v2 v2.5.31v2.5.36 age confidence
go.opentelemetry.io/contrib/detectors/gcp v1.38.0v1.44.0 age confidence
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.63.0v0.69.0 age confidence
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.63.0v0.69.0 age confidence
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.63.0v0.69.0 age confidence
go.opentelemetry.io/otel v1.38.0v1.44.0 age confidence
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.38.0v1.44.0 age confidence
go.opentelemetry.io/otel/sdk v1.38.0v1.44.0 age confidence
go.opentelemetry.io/otel/trace v1.38.0v1.44.0 age confidence
golang.org/x/image v0.36.0v0.44.0 age confidence
golang.org/x/net v0.49.0v0.57.0 age confidence
golang.org/x/oauth2 v0.33.0v0.36.0 age confidence
golang.org/x/sync v0.19.0v0.22.0 age confidence
golang.org/x/text v0.34.0v0.40.0 age confidence
golang.org/x/tools v0.41.0v0.48.0 age confidence
google.golang.org/api v0.256.0v0.291.0 age confidence
google.golang.org/grpc v1.77.0v1.83.0 age confidence
google.golang.org/protobuf v1.36.10v1.36.11 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

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

v0.6.0

Compare Source

  • Beta release of BigQuery, DataStore, Logging and Storage. See the
    blog post.

  • bigquery:

    • struct support. Read a row directly into a struct with
      RowIterator.Next, and upload a row directly from a struct with Uploader.Put.
      You can also use field tags. See the [package documentation][cloud-bigquery-ref]
      for details.

    • The ValueList type was removed. It is no longer necessary. Instead of

    var v ValueList
    ... it.Next(&v) ..

    use

    var v []Value
    ... it.Next(&v) ...
    • Previously, repeatedly calling RowIterator.Next on the same []Value or
      ValueList would append to the slice. Now each call resets the size to zero first.

    • Schema inference will infer the SQL type BYTES for a struct field of
      type []byte. Previously it inferred STRING.

    • The types uint, uint64 and uintptr are no longer supported in schema
      inference. BigQuery's integer type is INT64, and those types may hold values
      that are not correctly represented in a 64-bit signed integer.

v0.5.0

  • bigquery:
    • The SQL types DATE, TIME and DATETIME are now supported. They correspond to
      the Date, Time and DateTime types in the new cloud.google.com/go/civil
      package.
    • Support for query parameters.
    • Support deleting a dataset.
    • Values from INTEGER columns will now be returned as int64, not int. This
      will avoid errors arising from large values on 32-bit systems.
  • datastore:
    • Nested Go structs encoded as Entity values, instead of a
      flattened list of the embedded struct's fields. This means that you may now have twice-nested slices, eg.
      type State struct {
        Cities  []struct{
          Populations []int
        }
      }
      See the announcement for
      more details.
    • Contexts no longer hold namespaces; instead you must set a key's namespace
      explicitly. Also, key functions have been changed and renamed.
    • The WithNamespace function has been removed. To specify a namespace in a Query, use the Query.Namespace method:
      q := datastore.NewQuery("Kind").Namespace("ns")
    • All the fields of Key are exported. That means you can construct any Key with a struct literal:
      k := &Key{Kind: "Kind",  ID: 37, Namespace: "ns"}
    • As a result of the above, the Key methods Kind, ID, d.Name, Parent, SetParent and Namespace have been removed.
    • NewIncompleteKey has been removed, replaced by IncompleteKey. Replace
      NewIncompleteKey(ctx, kind, parent)
      with
      IncompleteKey(kind, parent)
      and if you do use namespaces, make sure you set the namespace on the returned key.
    • NewKey has been removed, replaced by NameKey and IDKey. Replace
      NewKey(ctx, kind, name, 0, parent)
      NewKey(ctx, kind, "", id, parent)
      with
      NameKey(kind, name, parent)
      IDKey(kind, id, parent)
      and if you do use namespaces, make sure you set the namespace on the returned key.
    • The Done variable has been removed. Replace datastore.Done with iterator.Done, from the package google.golang.org/api/iterator.
    • The Client.Close method will have a return type of error. It will return the result of closing the underlying gRPC connection.
    • See the announcement for
      more details.
99designs/gqlgen (github.com/99designs/gqlgen)

v0.17.94

Compare Source

v0.17.93

Compare Source

What's Changed

Full Changelog: 99designs/gqlgen@v0.17.92...v0.17.93

v0.17.92

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.91...v0.17.92

v0.17.91

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.90...v0.17.91

v0.17.90

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.89...v0.17.90

v0.17.89

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.88...v0.17.89

v0.17.88

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.87...v0.17.88

v0.17.87

Compare Source

What's Changed

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 3:00 am on monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate

renovate Bot commented Aug 10, 2026

Copy link
Copy Markdown
Contributor Author

ℹ️ Artifact update notice

File name: server/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 55 additional dependencies were updated

Details:

Package Change
github.com/labstack/echo/v4 v4.13.4 -> v4.15.2
go.mongodb.org/mongo-driver v1.17.6 -> v1.17.9
cel.dev/expr v0.25.1 -> v0.25.2
cloud.google.com/go/auth v0.17.0 -> v0.22.0
cloud.google.com/go/iam v1.5.3 -> v1.11.0
cloud.google.com/go/monitoring v1.24.3 -> v1.29.0
cloud.google.com/go/trace v1.11.7 -> v1.16.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.30.0 -> v1.33.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.54.0 -> v0.57.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.54.0 -> v0.57.0
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.3 -> v1.7.16
github.com/aws/aws-sdk-go-v2/credentials v1.19.2 -> v1.19.33
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.14 -> v1.18.34
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.14 -> v1.4.34
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.14 -> v2.7.34
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.14 -> v1.4.35
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.3 -> v1.13.15
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.5 -> v1.9.27
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.14 -> v1.13.34
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.14 -> v1.19.35
github.com/aws/aws-sdk-go-v2/service/signin v1.0.2 -> v1.5.3
github.com/aws/aws-sdk-go-v2/service/sso v1.30.5 -> v1.33.3
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.10 -> v1.38.3
github.com/aws/aws-sdk-go-v2/service/sts v1.41.2 -> v1.45.3
github.com/aws/smithy-go v1.23.2 -> v1.27.6
github.com/cncf/xds/go v0.0.0-20251110193048-8bfbf64dc13e -> v0.0.0-20260202195803-dba9d589def2
github.com/coder/websocket v1.8.14 -> v1.8.15
github.com/envoyproxy/go-control-plane/envoy v1.36.0 -> v1.37.0
github.com/envoyproxy/protoc-gen-validate v1.2.1 -> v1.3.3
github.com/gabriel-vasile/mimetype v1.4.11 -> v1.4.13
github.com/go-jose/go-jose/v4 v4.1.3 -> v4.1.4
github.com/go-viper/mapstructure/v2 v2.4.0 -> v2.5.0
github.com/google/pprof v0.0.0-20250602020802-c6617b811d0e -> v0.0.0-20260402051712-545e8a4df936
github.com/googleapis/enterprise-certificate-proxy v0.3.7 -> v0.3.19
github.com/googleapis/gax-go/v2 v2.15.0 -> v2.23.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 -> v2.29.0
github.com/klauspost/compress v1.18.1 -> v1.18.6
github.com/mattn/go-colorable v0.1.14 -> v0.1.15
github.com/mattn/go-isatty v0.0.20 -> v0.0.22
github.com/montanaflynn/stats v0.7.1 -> v0.9.0
github.com/sosodev/duration v1.3.1 -> v1.4.0
github.com/spiffe/go-spiffe/v2 v2.6.0 -> v2.7.0
github.com/urfave/cli/v3 v3.6.1 -> v3.10.1
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 -> v0.67.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.38.0 -> v1.44.0
go.opentelemetry.io/otel/metric v1.38.0 -> v1.44.0
go.opentelemetry.io/otel/sdk/metric v1.38.0 -> v1.44.0
go.opentelemetry.io/proto/otlp v1.7.1 -> v1.10.0
golang.org/x/crypto v0.47.0 -> v0.54.0
golang.org/x/mod v0.32.0 -> v0.38.0
golang.org/x/sys v0.40.0 -> v0.47.0
golang.org/x/time v0.14.0 -> v0.15.0
google.golang.org/genproto v0.0.0-20251124214823-79d6a2a48846 -> v0.0.0-20260519071638-aa98bba5eb94
google.golang.org/genproto/googleapis/api v0.0.0-20251124214823-79d6a2a48846 -> v0.0.0-20260630182238-925bb5da69e7
google.golang.org/genproto/googleapis/rpc v0.0.0-20251124214823-79d6a2a48846 -> v0.0.0-20260724162435-b2f20204f0df

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants