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

dev: bump the safe group across 1 directory with 26 updates #7486

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 28, 2025

Bumps the safe group with 15 updates in the / directory:

Package From To
github.com/KimMachineGun/automemlimit 0.6.1 0.7.0
github.com/aws/aws-sdk-go 1.55.5 1.55.6
github.com/envoyproxy/protoc-gen-validate 1.1.0 1.2.1
github.com/getsentry/sentry-go 0.30.0 0.31.1
github.com/grpc-ecosystem/grpc-gateway/v2 2.25.1 2.26.0
github.com/nats-io/nats-server/v2 2.10.24 2.10.25
github.com/throttled/throttled/v2 2.12.0 2.13.0
github.com/uptrace/bun 1.2.6 1.2.9
github.com/uptrace/bun/dialect/pgdialect 1.2.6 1.2.9
github.com/uptrace/bun/driver/pgdriver 1.2.6 1.2.9
go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux 0.58.0 0.59.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc 0.58.0 0.59.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp 0.58.0 0.59.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc 1.33.0 1.34.0
go.opentelemetry.io/otel/exporters/stdout/stdouttrace 1.33.0 1.34.0

Updates github.com/KimMachineGun/automemlimit from 0.6.1 to 0.7.0

Release notes

Sourced from github.com/KimMachineGun/automemlimit's releases.

v0.7.0

What's Changed

Full Changelog: KimMachineGun/automemlimit@v0.6.1...v0.7.0

Commits
  • 01d8b36 docs: update README.md
  • e1b0a11 feat(memlimit): handle ErrNoLimit as math.MaxInt64 during refresh
  • 0506e2d feat(memlimit): replace containerd/cgroup with own cgroup implementation (#24)
  • e4d2767 chore: bump containerd/cgroups from v3.0.1 to v3.0.4
  • c505832 feat(memlimit): support dynamic memory limit (#23)
  • See full diff in compare view

Updates github.com/aws/aws-sdk-go from 1.55.5 to 1.55.6

Release notes

Sourced from github.com/aws/aws-sdk-go's releases.

Release v1.55.6 (2025-01-15)

SDK Bugs

  • Fix broken printf for go1.24
Commits
  • e1db430 release v1.55.6 (2025-01-15) (#5341)
  • 5ab6103 changelog
  • 394e0e3 Merge pull request #5340 from djedward/main
  • 19d98e3 Fix improper use of Printf-style functions
  • 7112c0a Merge pull request #5325 from ashishdhingra/user/ashdhin/IssueTemplateRegress...
  • 8d6a0f9 chore: Modified bug issue template to add checkbox to report potential regres...
  • 02c1f72 Update PULL_REQUEST_TEMPLATE.md
  • See full diff in compare view

Updates github.com/envoyproxy/protoc-gen-validate from 1.1.0 to 1.2.1

Release notes

Sourced from github.com/envoyproxy/protoc-gen-validate's releases.

v1.2.1

What's Changed

Full Changelog: bufbuild/protoc-gen-validate@v1.2.0...v1.2.1

v1.2.0

What's Changed

New Contributors

Full Changelog: bufbuild/protoc-gen-validate@v1.1.0...v1.2.0

Commits

Updates github.com/getsentry/sentry-go from 0.30.0 to 0.31.1

Release notes

Sourced from github.com/getsentry/sentry-go's releases.

0.31.1

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.31.1.

Bug Fixes

  • Correct wrong module name for sentry-go/logrus (#950)

0.31.0

Breaking Changes

  • Remove support for metrics. Read more about the end of the Metrics beta here. (#914)

  • Remove support for profiling. (#915)

  • Remove Segment field from the User struct. This field is no longer used in the Sentry product. (#928)

  • Every integration is now a separate module, reducing the binary size and number of dependencies. Once you update sentry-go to latest version, you'll need to go get the integration you want to use. For example, if you want to use the echo integration, you'll need to run go get github.com/getsentry/sentry-go/echo (#919).

Features

  • Add the ability to override hub in context for integrations that use custom context. (#931)

  • Add HubProvider Hook for sentrylogrus, enabling dynamic Sentry hub allocation for each log entry or goroutine. (#936)

This change enhances compatibility with Sentry's recommendation of using separate hubs per goroutine. To ensure a separate Sentry hub for each goroutine, configure the HubProvider like this:

hook, err := sentrylogrus.New(nil, sentry.ClientOptions{})
if err != nil {
    log.Fatalf("Failed to initialize Sentry hook: %v", err)
}
// Set a custom HubProvider to generate a new hub for each goroutine or log entry
hook.SetHubProvider(func() *sentry.Hub {
client, _ := sentry.NewClient(sentry.ClientOptions{})
return sentry.NewHub(client, sentry.NewScope())
})
logrus.AddHook(hook)

Bug Fixes

  • Add support for closing worker goroutines started by the HTTPTranport to prevent goroutine leaks. (#894)
client, _ := sentry.NewClient()
defer client.Close()

... (truncated)

Changelog

Sourced from github.com/getsentry/sentry-go's changelog.

0.31.1

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.31.1.

Bug Fixes

  • Correct wrong module name for sentry-go/logrus (#950)

0.31.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.31.0.

Breaking Changes

  • Remove support for metrics. Read more about the end of the Metrics beta here. (#914)

  • Remove support for profiling. (#915)

  • Remove Segment field from the User struct. This field is no longer used in the Sentry product. (#928)

  • Every integration is now a separate module, reducing the binary size and number of dependencies. Once you update sentry-go to latest version, you'll need to go get the integration you want to use. For example, if you want to use the echo integration, you'll need to run go get github.com/getsentry/sentry-go/echo (#919).

Features

Add the ability to override hub in context for integrations that use custom context. (#931)

  • Add HubProvider Hook for sentrylogrus, enabling dynamic Sentry hub allocation for each log entry or goroutine. (#936)

This change enhances compatibility with Sentry's recommendation of using separate hubs per goroutine. To ensure a separate Sentry hub for each goroutine, configure the HubProvider like this:

hook, err := sentrylogrus.New(nil, sentry.ClientOptions{})
if err != nil {
    log.Fatalf("Failed to initialize Sentry hook: %v", err)
}
// Set a custom HubProvider to generate a new hub for each goroutine or log entry
hook.SetHubProvider(func() *sentry.Hub {
client, _ := sentry.NewClient(sentry.ClientOptions{})
return sentry.NewHub(client, sentry.NewScope())
})
logrus.AddHook(hook)

Bug Fixes

  • Add support for closing worker goroutines started by the HTTPTranport to prevent goroutine leaks. (#894)
</tr></table> 

... (truncated)

Commits

Updates github.com/grpc-ecosystem/grpc-gateway/v2 from 2.25.1 to 2.26.0

Release notes

Sourced from github.com/grpc-ecosystem/grpc-gateway/v2's releases.

v2.26.0

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.25.1...v2.26.0

Commits
  • f042173 build(deps): bump just-the-docs from 0.10.0 to 0.10.1 in /docs (#5112)
  • 3098c6a chore(deps): update dependency com_github_bazelbuild_buildtools to v8 (#5126)
  • c51073c chore(deps): update googleapis digest to 318818b (#5156)
  • 5dfd063 Only write Content-Length if the runtime.WithWriteContentLength() option is s...
  • e1364b5 protoc-gen-openapiv2: Do not add invisible enum values as default (#5129)
  • 3b7b760 chore(deps): update googleapis digest to 5c2ccb6 (#5155)
  • 0663fba chore(deps): update googleapis digest to 07737e5 (#5154)
  • 3ef2ee0 chore(deps): update dependency bazel to v8.0.1 (#5153)
  • 12a233b chore(deps): update googleapis digest to 3776db1 (#5152)
  • 4da1653 chore(deps): update dependency rules_python to v1.1.0 (#5150)
  • Additional commits viewable in compare view

Updates github.com/nats-io/nats-server/v2 from 2.10.24 to 2.10.25

Release notes

Sourced from github.com/nats-io/nats-server/v2's releases.

Release v2.10.25

Changelog

Refer to the 2.10 Upgrade Guide for backwards compatibility notes with 2.9.x.

Go Version

Dependencies

  • golang.org/x/sys v0.29.0 (#6323)
  • golang.org/x/time v0.9.0 (#6324)
  • golang.org/x/crypto v0.32.0 (#6367)

Improved

JetStream

  • Raft groups will no longer snapshot too often in some situations, improving performance (#6277)
  • Optimistically perform stream and consumer snapshots on a normal shutdown (#6279)
  • The stream snapshot interval has been removed, now relying on the compaction minimum, which improves performance (#6289)
  • Raft groups will no longer report current while they are paused with pending commits (#6317)
  • Unnecessary client info fields have been removed from stream and consumer assignment proposals, API advisories and stream snapshot/restore advisories (#6326, #6338)
  • Reduced lock contention between the JetStream lock and Raft group locks (#6335)
  • Advisories will only be encoded and sent when there is interest, reducing CPU usage (#6341)
  • Consumers with inactivity thresholds will now start less clean-up goroutines, which can reduce load on the goroutine scheduler (#6344)
  • Consumer cleanup goroutines will now stop faster when the server shuts down (#6351)

Fixed

JetStream

  • Subject state consistency with some message removal patterns (#6226)
  • A performance issue has been fixed when updating the per-subject state (#6235)
  • Fixed consistency issues with detecting partial writes in the filestore (#6283)
  • A race condition between removing peers and updating replica counts has been fixed (#6316)
  • Pre-acks for a sequence are now removed when the message is removed, correcting a potential memory leak (#6325)
  • Metalayer snapshot errors are now surfaced correctly (#6361)
  • Healthchecks no longer re-evaluate stream and consumer assignments, avoiding some streams and consumers being unexpectedly recreated shortly after a deletion (#6362)
  • Clients should no longer timeout on a retried ack with the AckAll policy after a server restart (#6392)
  • Replicated consumers should no longer get stuck after leader changes due to incorrect accounting (#6387)
  • Consumers will now correctly handle the case where messages queued for delivery have been removed, fixing a delivery slowdown (#6387, #6399)
  • The API in-flight metric has been fixed so that it does not drift after the queue has been dropped (#6373)
  • Handles for temporary files are now closed correctly if compression errors occur (#6390) — Thanks to @​deem0n for the contribution!
  • JetStream will now shut down correctly when detecting that the store directory underlying filesystem has become read-only (#6292) — Thanks to @​souravagrawal for the contribution!

Leafnodes

  • Fixed an interest propagation issue that could occur when the hub has a user with subscribe permissions on a literal subject (#6291)
  • Fixed a bug where all queue interest across leafnodes could be dropped over gateways in a supercluster deployment after a leafnode connection drops (#6377)

... (truncated)

Commits
  • 006039e Release v2.10.25
  • c21dfde Cherry-picks for 2.10.25 (#6401)
  • b88f999 [FIXED] Don't adjust o.pending during redelivery, gets fixed elsewhere
  • fb122e0 Bump to 2.10.25-RC.3
  • d198cac Cherry-picks for 2.10.25-RC.3 (#6384)
  • 8e94003 Disable JetStream on disk errors (#6292)
  • a441c82 [FIXED] Consumer slowdown when redelivering deleted message
  • 7fa1182 [FIXED] Stuck consumer during leader change with inflight ack
  • 7189018 [FIXED] Don't timeout for retried AckAll
  • 68607a7 fixed unclosed tmp file handle in filestore.go
  • Additional commits viewable in compare view

Updates github.com/throttled/throttled/v2 from 2.12.0 to 2.13.0

Release notes

Sourced from github.com/throttled/throttled/v2's releases.

throttled v2.13.0

  • #106 Use the RedigoPool interface in redigostore.NewCtx
Changelog

Sourced from github.com/throttled/throttled/v2's changelog.

2.13.0 - 2025-01-23

  • #106 Use the RedigoPool interface in redigostore.NewCtx
Commits

Updates github.com/uptrace/bun from 1.2.6 to 1.2.9

Release notes

Sourced from github.com/uptrace/bun's releases.

v1.2.9

Please refer to CHANGELOG.md for details

v1.2.8

Please refer to CHANGELOG.md for details

v1.2.7

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun's changelog.

1.2.9 (2025-01-26)

Bug Fixes

Features

  • add feature flag AlterColumnExists (fc35e12), closes #704
  • add Options (815e11a)
  • allow to specify read-only replica for SELECTs (cbbe1e9)
  • downgrade to use the field in has-many-relation (91e0d27), closes #1107
  • make WithReadOnlyReplica variadic (4cbb15a)
  • pgdialect: allow to convert uint to int (7d22ddd)
  • pgdriver: improve otel instrumentation (c40e4f3)

1.2.8 (2025-01-06)

Bug Fixes

  • comment string zero bytes filtering (34dfd68)
  • get m2m table's structKey with driver.Valuer (f107314), closes #1100
  • return error when use dest with has-many/many-to-many (8296774), closes #606
  • support scan float32 to float32/float64 (a52e733), closes #1087

Features

  • add RelationWithOpts method to SelectQuery (dd3ef52)
  • enhance debugging by adding query comments in headers (1376d18)
  • sort fields by struct (5edb672), closes #1095

1.2.7 (2025-01-01)

Bug Fixes

  • do not create new migrations if nothing to migrate (5cc961d)
  • has many relation with driver.Valuer (cb8c42c)
  • improve range type to support driver.Valuer and sql.Scanner (856e12b)

... (truncated)

Commits
  • 5eb298a chore: release v1.2.9 (release.sh)
  • 4b02d19 Merge pull request #1110 from uptrace/feat/uint-to-int
  • 7d22ddd feat(pgdialect): allow to convert uint to int
  • 40f68ba Merge pull request #1109 from uptrace/upd-deps
  • 19025d8 chore: update dependencies
  • c40e4f3 feat(pgdriver): improve otel instrumentation
  • 3d8666a Merge pull request #1085 from uptrace/feat/read-only-replica
  • a95c99a Merge remote-tracking branch 'refs/remotes/origin/feat/read-only-replica' int...
  • 9f5e8b1 fix: individual replica timeout
  • 06dd779 Update db.go
  • Additional commits viewable in compare view

Updates github.com/uptrace/bun/dialect/pgdialect from 1.2.6 to 1.2.9

Release notes

Sourced from github.com/uptrace/bun/dialect/pgdialect's releases.

v1.2.9

Please refer to CHANGELOG.md for details

v1.2.8

Please refer to CHANGELOG.md for details

v1.2.7

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun/dialect/pgdialect's changelog.

1.2.9 (2025-01-26)

Bug Fixes

Features

  • add feature flag AlterColumnExists (fc35e12), closes #704
  • add Options (815e11a)
  • allow to specify read-only replica for SELECTs (cbbe1e9)
  • downgrade to use the field in has-many-relation (91e0d27), closes #1107
  • make WithReadOnlyReplica variadic (4cbb15a)
  • pgdialect: allow to convert uint to int (7d22ddd)
  • pgdriver: improve otel instrumentation (c40e4f3)

1.2.8 (2025-01-06)

Bug Fixes

  • comment string zero bytes filtering (34dfd68)
  • get m2m table's structKey with driver.Valuer (f107314), closes #1100
  • return error when use dest with has-many/many-to-many (8296774), closes #606
  • support scan float32 to float32/float64 (a52e733), closes #1087

Features

  • add RelationWithOpts method to SelectQuery (dd3ef52)
  • enhance debugging by adding query comments in headers (1376d18)
  • sort fields by struct (5edb672), closes #1095

1.2.7 (2025-01-01)

Bug Fixes

  • do not create new migrations if nothing to migrate (5cc961d)
  • has many relation with driver.Valuer (cb8c42c)
  • improve range type to support driver.Valuer and sql.Scanner (856e12b)

... (truncated)

Commits
  • 5eb298a chore: release v1.2.9 (release.sh)
  • 4b02d19 Merge pull request #1110 from uptrace/feat/uint-to-int
  • 7d22ddd feat(pgdialect): allow to convert uint to int
  • 40f68ba Merge pull request #1109 from uptrace/upd-deps
  • 19025d8 chore: update dependencies
  • c40e4f3 feat(pgdriver): improve otel instrumentation
  • 3d8666a Merge pull request #1085 from uptrace/feat/read-only-replica
  • a95c99a Merge remote-tracking branch 'refs/remotes/origin/feat/read-only-replica' int...
  • 9f5e8b1 fix: individual replica timeout
  • 06dd779 Update db.go
  • Additional commits viewable in compare view

Updates github.com/uptrace/bun/driver/pgdriver from 1.2.6 to 1.2.9

Release notes

Sourced from github.com/uptrace/bun/driver/pgdriver's releases.

v1.2.9

Please refer to CHANGELOG.md for details

v1.2.8

Please refer to CHANGELOG.md for details

v1.2.7

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun/driver/pgdriver's changelog.

1.2.9 (2025-01-26)

Bug Fixes

Features

  • add feature flag AlterColumnExists (fc35e12), closes #704
  • add Options (815e11a)
  • allow to specify read-only replica for SELECTs (cbbe1e9)
  • downgrade to use the field in has-many-relation (91e0d27), closes #1107
  • make WithReadOnlyReplica variadic (4cbb15a)
  • pgdialect: allow to convert uint to int (7d22ddd)
  • pgdriver: improve otel instrumentation (c40e4f3)

1.2.8 (2025-01-06)

Bug Fixes

  • comment string zero bytes filtering (34dfd68)
  • get m2m table's structKey with driver.Valuer (f107314), closes #1100
  • return error when use dest with has-many/many-to-many (8296774), closes #606
  • support scan float32 to float32/float64 (a52e733), closes #1087

Features

  • add RelationWithOpts method to SelectQuery (dd3ef52)
  • enhance debugging by adding query comments in headers (1376d18)
  • sort fields by struct (5edb672), closes #1095

1.2.7 (2025-01-01)

Bug Fixes

  • do not create new migrations if nothing to migrate (5cc961d)
  • has many relation with driver.Valuer (cb8c42c)
  • improve range type to support driver.Valuer and sql.Scanner (856e12b)

... (truncated)

Commits
  • 5eb298a chore: release v1.2.9 (release.sh)
  • 4b02d19 Merge pull request #1110 from uptrace/feat/uint-to-int
  • 7d22ddd feat(pgdialect): allow to convert uint to int
  • 40f68ba Merge pull request #1109 from uptrace/upd-deps
  • 19025d8 chore: update dependencies
  • c40e4f3 feat(pgdriver): improve otel instrumentation
  • 3d8666a Merge pull request #1085 from uptrace/feat/read-only-replica
  • a95c99a Merge remote-tracking branch 'refs/remotes/origin/feat/read-only-replica' int...
  • 9f5e8b1 fix: individual replica timeout
  • 06dd779 Update db.go
  • Additional commits viewable in compare view

Updates go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux from 0.58.0 to 0.59.0

Release notes

Sourced from go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux's releases.

Release v1.34.0/v0.59.0/v0.28.0/v0.14.0/v0.9.0/v0.7.0/v0.6.0

Overview

Added

  • Generate server metrics with semantic conventions v1.26.0 in go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp when OTEL_SEMCONV_STABILITY_OPT_IN is set to http/dup. (#6411)
  • Generate client metrics with semantic conventions v1.26.0 in go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp when OTEL_SEMCONV_STABILITY_OPT_IN is set to http/dup. (#6607)

Fixed

  • Fix error logged by Jaeger remote sampler on empty or unset OTEL_TRACES_SAMPLER_ARG environment variable (#6511)
  • Relax minimum Go version to 1.22.0 in various modules. (#6595)
  • NewSDK handles empty OpenTelemetryConfiguration.Resource properly in go.opentelemetry.io/contrib/config/v0.3.0. (#6606)
  • Fix a possible nil dereference panic in NewSDK of go.opentelemetry.io/contrib/config/v0.3.0. (#6606)

What's Changed

Bumps the safe group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) | `0.6.1` | `0.7.0` |
| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.5` | `1.55.6` |
| [github.com/envoyproxy/protoc-gen-validate](https://github.com/envoyproxy/protoc-gen-validate) | `1.1.0` | `1.2.1` |
| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.30.0` | `0.31.1` |
| [github.com/grpc-ecosystem/grpc-gateway/v2](https://github.com/grpc-ecosystem/grpc-gateway) | `2.25.1` | `2.26.0` |
| [github.com/nats-io/nats-server/v2](https://github.com/nats-io/nats-server) | `2.10.24` | `2.10.25` |
| [github.com/throttled/throttled/v2](https://github.com/throttled/throttled) | `2.12.0` | `2.13.0` |
| [github.com/uptrace/bun](https://github.com/uptrace/bun) | `1.2.6` | `1.2.9` |
| [github.com/uptrace/bun/dialect/pgdialect](https://github.com/uptrace/bun) | `1.2.6` | `1.2.9` |
| [github.com/uptrace/bun/driver/pgdriver](https://github.com/uptrace/bun) | `1.2.6` | `1.2.9` |
| [go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.58.0` | `0.59.0` |
| [go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.58.0` | `0.59.0` |
| [go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.58.0` | `0.59.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](https://github.com/open-telemetry/opentelemetry-go) | `1.33.0` | `1.34.0` |
| [go.opentelemetry.io/otel/exporters/stdout/stdouttrace](https://github.com/open-telemetry/opentelemetry-go) | `1.33.0` | `1.34.0` |



Updates `github.com/KimMachineGun/automemlimit` from 0.6.1 to 0.7.0
- [Release notes](https://github.com/KimMachineGun/automemlimit/releases)
- [Commits](KimMachineGun/automemlimit@v0.6.1...v0.7.0)

Updates `github.com/aws/aws-sdk-go` from 1.55.5 to 1.55.6
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Changelog](https://github.com/aws/aws-sdk-go/blob/main/CHANGELOG_PENDING.md)
- [Commits](aws/aws-sdk-go@v1.55.5...v1.55.6)

Updates `github.com/envoyproxy/protoc-gen-validate` from 1.1.0 to 1.2.1
- [Release notes](https://github.com/envoyproxy/protoc-gen-validate/releases)
- [Changelog](https://github.com/bufbuild/protoc-gen-validate/blob/main/.goreleaser.yaml)
- [Commits](bufbuild/protoc-gen-validate@v1.1.0...v1.2.1)

Updates `github.com/getsentry/sentry-go` from 0.30.0 to 0.31.1
- [Release notes](https://github.com/getsentry/sentry-go/releases)
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-go@v0.30.0...v0.31.1)

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.25.1 to 2.26.0
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Changelog](https://github.com/grpc-ecosystem/grpc-gateway/blob/main/.goreleaser.yml)
- [Commits](grpc-ecosystem/grpc-gateway@v2.25.1...v2.26.0)

Updates `github.com/nats-io/nats-server/v2` from 2.10.24 to 2.10.25
- [Release notes](https://github.com/nats-io/nats-server/releases)
- [Changelog](https://github.com/nats-io/nats-server/blob/main/.goreleaser.yml)
- [Commits](nats-io/nats-server@v2.10.24...v2.10.25)

Updates `github.com/throttled/throttled/v2` from 2.12.0 to 2.13.0
- [Release notes](https://github.com/throttled/throttled/releases)
- [Changelog](https://github.com/throttled/throttled/blob/master/CHANGELOG.md)
- [Commits](throttled/throttled@v2.12.0...v2.13.0)

Updates `github.com/uptrace/bun` from 1.2.6 to 1.2.9
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/v1.2.9/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.6...v1.2.9)

Updates `github.com/uptrace/bun/dialect/pgdialect` from 1.2.6 to 1.2.9
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/v1.2.9/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.6...v1.2.9)

Updates `github.com/uptrace/bun/driver/pgdriver` from 1.2.6 to 1.2.9
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/v1.2.9/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.6...v1.2.9)

Updates `go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux` from 0.58.0 to 0.59.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go-contrib/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go-contrib@zpages/v0.58.0...zpages/v0.59.0)

Updates `go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc` from 0.58.0 to 0.59.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go-contrib/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go-contrib@zpages/v0.58.0...zpages/v0.59.0)

Updates `go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp` from 0.58.0 to 0.59.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go-contrib/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go-contrib@zpages/v0.58.0...zpages/v0.59.0)

Updates `go.opentelemetry.io/otel` from 1.33.0 to 1.34.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.33.0...v1.34.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc` from 1.33.0 to 1.34.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.33.0...v1.34.0)

Updates `go.opentelemetry.io/otel/exporters/stdout/stdouttrace` from 1.33.0 to 1.34.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.33.0...v1.34.0)

Updates `go.opentelemetry.io/otel/metric` from 1.33.0 to 1.34.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.33.0...v1.34.0)

Updates `go.opentelemetry.io/otel/sdk` from 1.33.0 to 1.34.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.33.0...v1.34.0)

Updates `go.opentelemetry.io/otel/trace` from 1.33.0 to 1.34.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.33.0...v1.34.0)

Updates `golang.org/x/crypto` from 0.31.0 to 0.32.0
- [Commits](golang/crypto@v0.31.0...v0.32.0)

Updates `golang.org/x/net` from 0.33.0 to 0.34.0
- [Commits](golang/net@v0.33.0...v0.34.0)

Updates `golang.org/x/oauth2` from 0.24.0 to 0.25.0
- [Commits](golang/oauth2@v0.24.0...v0.25.0)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20241219192143-6b3ec007d9bb to 0.0.0-20250115164207-1a7da9e5054f
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/rpc` from 0.0.0-20241219192143-6b3ec007d9bb to 0.0.0-20250115164207-1a7da9e5054f
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/grpc` from 1.69.2 to 1.69.4
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.69.2...v1.69.4)

Updates `google.golang.org/protobuf` from 1.36.1 to 1.36.3

---
updated-dependencies:
- dependency-name: github.com/KimMachineGun/automemlimit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: github.com/envoyproxy/protoc-gen-validate
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: github.com/getsentry/sentry-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: github.com/nats-io/nats-server/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: github.com/throttled/throttled/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: github.com/uptrace/bun
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: github.com/uptrace/bun/dialect/pgdialect
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: github.com/uptrace/bun/driver/pgdriver
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: go.opentelemetry.io/otel
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: go.opentelemetry.io/otel/exporters/stdout/stdouttrace
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: go.opentelemetry.io/otel/metric
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: go.opentelemetry.io/otel/sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: go.opentelemetry.io/otel/trace
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: golang.org/x/oauth2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: google.golang.org/genproto/googleapis/rpc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
- dependency-name: google.golang.org/protobuf
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: safe
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jan 28, 2025
@dependabot dependabot bot requested a review from a team as a code owner January 28, 2025 08:26
@dependabot dependabot bot requested a review from johanstokking January 28, 2025 08:26
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 28, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 28, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/safe-c20147aa22 branch January 28, 2025 12:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants