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 28 updates #229

Open
wants to merge 1 commit into
base: feat/halter-release-v3.33.0
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

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

Bumps the safe group with 17 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/getsentry/sentry-go 0.29.1 0.31.1
github.com/grpc-ecosystem/grpc-gateway/v2 2.24.0 2.25.1
github.com/jackc/pgx/v5 5.7.1 5.7.2
github.com/nats-io/nats-server/v2 2.10.22 2.10.24
github.com/nats-io/nats.go 1.37.0 1.38.0
github.com/spf13/cast 1.7.0 1.7.1
github.com/uptrace/bun 1.2.6 1.2.8
github.com/uptrace/bun/dialect/pgdialect 1.2.6 1.2.8
github.com/uptrace/bun/driver/pgdriver 1.2.6 1.2.8
go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux 0.57.0 0.59.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc 0.57.0 0.59.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp 0.57.0 0.59.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc 1.32.0 1.34.0
go.opentelemetry.io/otel/exporters/stdout/stdouttrace 1.32.0 1.34.0
golang.org/x/oauth2 0.24.0 0.25.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/getsentry/sentry-go from 0.29.1 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.24.0 to 2.25.1

Release notes

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

v2.25.1

Support the new Opaque API in openapiv2 generated files

This release contains breaking changes from v2.25.0, in that the previously deprecated EnumDescriptor and Descriptor methods on the struct types in the openapiv2 options package have been removed. This seems to be a requirement to generate the new Hybrid API. Please open an issue if you were depending on these functions and we'll see what we can do about it.

What's Changed

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

v2.25.0

What's Changed

New Contributors

Full Changelog: grpc-ecosystem/grpc-gateway@v2.24.0...v2.25.0

Commits
  • c89fdf7 protoc-gen-openapiv2: generate hybrid files (#5088)
  • bb4c906 Update gorelease base
  • a74e741 fix(deps): update google.golang.org/genproto/googleapis/rpc digest to 6b3ec00...
  • e9a2074 chore(deps): update googleapis digest to 5e258e3 (#5087)
  • bdc7a7a fix(deps): update google.golang.org/genproto/googleapis/api digest to 6b3ec00...
  • 937be39 fix(deps): update google.golang.org/genproto/googleapis/rpc digest to 9240e9c...
  • df4d666 chore(deps): update googleapis digest to d55dd1d (#5084)
  • e6af5c6 chore(deps): update dependency rules_proto to v7.1.0 (#5079)
  • e062b12 fix: update to protobuf 1.36.0 and exclude synthetic oneofs during populateFi...
  • 50d84d5 chore(deps): update googleapis digest to 09d4103 (#5083)
  • Additional commits viewable in compare view

Updates github.com/jackc/pgx/v5 from 5.7.1 to 5.7.2

Changelog

Sourced from github.com/jackc/pgx/v5's changelog.

5.7.2 (December 21, 2024)

  • Fix prepared statement already exists on batch prepare failure
  • Add commit query to tx options (Lucas Hild)
  • Fix pgtype.Timestamp json unmarshal (Shean de Montigny-Desautels)
  • Add message body size limits in frontend and backend (zene)
  • Add xid8 type
  • Ensure planning encodes and scans cannot infinitely recurse
  • Implement pgtype.UUID.String() (Konstantin Grachev)
  • Switch from ExecParams to Exec in ValidateConnectTargetSessionAttrs functions (Alexander Rumyantsev)
  • Update golang.org/x/crypto
Commits
  • 24fbe35 Create changelog for v5.7.2
  • 3a1593b Merge pull request #2198 from alexandear/fix-nilness
  • 9d851d7 Fix integration benchmarks
  • dacffdc Merge pull request #2196 from alexandear/docs-improve-links
  • bc7c840 Merge pull request #2195 from LucasHild/master
  • 0436851 Handle errors in generate_certs
  • 2532927 Improve links in README
  • ad87d47 Merge pull request #2194 from alexandear/refactor/pgconn-tests
  • 7cf7bc6 Simplify pgconn tests by using T.TempDir
  • 3e6c719 Merge pull request #2189 from pankona/update-crypto
  • Additional commits viewable in compare view

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

Release notes

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

Release v2.10.24

Changelog

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

CVEs

  • Vulnerability check warnings for CVE-2024-45337 are addressed by the dependency update to x/crypto, although the NATS Server does not use the affected functionality and is therefore not vulnerable

Go Version

  • 1.23.4

Dependencies

  • golang.org/x/crypto v0.31.0 (#6246)
  • github.com/nats-io/jwt/v2 v2.7.3 (#6256)
  • github.com/nats-io/nkeys v0.4.9 (#6255)

Fixed

General

  • Request/reply tracking with allow_responses permission is now pruned more regularly, fixing performance issues that can get worse over time (#6064)

JetStream

  • Revert a change introduced in 2.10.23 that could potentially cause a consumer info call to fail if it takes place immediately after the consumer was created in some large or heavily-loaded clustered setups (#6250)
  • Minor fixes to subject state tracking (#6244)
  • Minor fixes to healthz and healthchecks (#6247, #6248, #6232)
  • A calculation used to determine if exceeding limits has been corrected (#6264)
  • Raft groups will no longer spin when truncating the log fails, i.e. during shutdown (#6271)

WebSockets

  • A WebSocket close frame will no longer incorrectly include a status code when not needed (#6260)

Complete Changes

nats-io/nats-server@v2.10.23...v2.10.24

Release v2.10.24-RC.3

Changelog

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

Go Version

  • 1.23.4

Fixed

JetStream

  • A calculation used to determine if exceeding limits has been corrected (#6264)

WebSockets

  • A WebSocket close frame will no longer incorrectly include a status code when not needed (#6260)

... (truncated)

Commits
  • 1d6f7ea Release v2.10.24
  • e031e65 Cherry-picks for 2.10.24 (#6273)
  • 166596a NRG: Only continue if aligned with pindex/pterm
  • bbe3e9b De-flake TestJetStreamClusterConsumerAckSyncReporting
  • bf90cfb Bump to 2.10.24-RC.3
  • 4e7b79b Cherry-picks for 2.10.24-RC.3 (#6268)
  • 34bb983 De-flake TestNRGSimple
  • 90ca361 De-flake RAFT adder tests
  • ec1a7b4 [FIXED] JetStream would exceed limits calculation
  • dc96b75 Adds a number of helper structs for z responses
  • Additional commits viewable in compare view

Updates github.com/nats-io/nats.go from 1.37.0 to 1.38.0

Release notes

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

v1.38.0

Changelog

Added

  • Core NATS:
    • Added UserInfoHandler for dynamically setting user/password (#1713)
    • Added PermissionErrOnSubscribe option, causing SubscribeSync to return nats.ErrPermissionViolation on NextMsg() if there was a permission error (#1728)
    • Added Msgs() method on Subscription, returning an iterator (iter.Seq2[*nats.Msg, error]) for the subscription. This method is only available for go version >=1.23 (#1728)
  • KeyValue:
  • Added WatchFiltered method to watch for updates with multiple filters (#1739)

Fixed

  • Core NATS:
    • Fixed closing connections on max subscriptions exceeded (#1709)
    • Removed redundant nil checks. Thanks @​ramonberrutti for the contribution (#1751)
    • Add missing nats prefix to error (#1753)
  • JetStream:
    • Fixed PublishAsync not closing done and stall channels after failed retries (#1719)
    • Set valid fetch sequence in ordered consumer's Fetch() and Next() after timeout (#1705)
    • Do not overwrite ordered consumer deliver policy if start time is set (#1742)
    • Fixed race condition in MessageBatch (#1743)
  • Legacy JetStream:
    • Fixed race condition in MessageBatch (#1743)

Changed

  • Legacy Jetstream:
    • Added client retry for jetstream async publish old API. Thanks @​pranavmehta94 for the contribution (#1695)

Improved

  • Moved CI to github actions (#1623, #1716)
  • Use errors.New instead of fmt.Errorf to improve efficiency. Thanks @​canack for the contribution (#1707)
  • Fixed invalid schemas in Service API documentation (#1720)
  • Added mention of TTL reset in kv.Update method. Thanks @​fmontorsi-equinix for the contribution (#1727)
  • Updated installation commands in README.md (#1745)
  • Bump nkeys to v0.4.9 (#1750)

Complete Changes

nats-io/nats.go@v1.37.0...v1.38.0

Commits
  • 48391f1 Release v1.38.0 (#1754)
  • 6f4e85a [FIXED] Add missing nats prefix to error (#1753)
  • 074c819 [FIXED] twice respMap nil check (#1751)
  • d6eaa84 [ADDED] Creating iterators for sync subscriptions (#1728)
  • 6bc4159 [FIXED] Race in MessageBatch (#1743)
  • d05f24a Bump nkeys to 0.4.7 (#1750)
  • 01fafde [IMPROVED] Update installation commands (#1745)
  • f563c66 [FIXED] Do not overwrite ordered consumer deliver policy if start time is set...
  • e963b77 [ADDED] WatchFiltered method on KV (#1739)
  • 4530ef6 [FIXED] Invalid fetch sequence in ordered consumer Fetch and Next after timeo...
  • Additional commits viewable in compare view

Updates github.com/spf13/cast from 1.7.0 to 1.7.1

Release notes

Sourced from github.com/spf13/cast's releases.

v1.7.1

What's Changed

New Contributors

Full Changelog: spf13/cast@v1.7.0...v1.7.1

Commits

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

Release notes

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

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.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)
  • pass correct 'transactional' parameter (ebdef1b)
  • pgdialect: remove unsigned integer conversion (ab3c679), closes uptrace/bun#624
  • remove unused param on table.go and tables.go: canAddr (d563e2d)
  • replace the link to docs repo in CONTRIBUTING.md (e120096)
  • trim surrounding '' in string literal in DEFAULT clause (a0dff72)

Features

  • add an ordered map to remove unnecessary dependencies (9fea143)
  • support disable dialect's feature (5343bd7)
Commits
  • 1a507f8 chore: release v1.2.8 (release.sh)
  • e8aaa46 Merge pull request #1098 from uptrace/feat-fields-sort-by-struct
  • 20eea4e Merge pull request #1101 from j2gg0s/fix-get-m2m-table-key
  • b50a0a5 Merge pull request #1099 from j2gg0s/fix-return-err-when-use-scan-dest-with-h...
  • 5edb672 feat: sort fields by struct
  • f107314 fix: get m2m table's structKey with driver.Valuer
  • a92a83e Merge pull request #1082 from GreenmaskIO/feat/add_query_comment
  • e60ae2a Merge pull request #1088 from j2gg0s/fix-support-scan-float32-to-float32
  • 8296774 fix: return error when use dest with has-many/many-to-many
  • 4505099 ci: try to revert ci cache
  • Additional commits viewable in compare view

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

Release notes

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

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.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)
  • pass correct 'transactional' parameter (ebdef1b)
  • pgdialect: remove unsigned integer conversion (ab3c679), closes uptrace/bun#624
  • remove unused param on table.go and tables.go: canAddr (d563e2d)
  • replace the link to docs repo in CONTRIBUTING.md (e120096)
  • trim surrounding '' in string literal in DEFAULT clause (a0dff72)

Features

  • add an ordered map to remove unnecessary dependencies (9fea143)
  • support disable dialect's feature (5343bd7)
Commits
  • 1a507f8 chore: release v1.2.8 (release.sh)
  • e8aaa46 Merge pull request #1098 from uptrace/feat-fields-sort-by-struct
  • 20eea4e Merge pull request #1101 from j2gg0s/fix-get-m2m-table-key
  • b50a0a5 Merge pull request #1099 from j2gg0s/fix-return-err-when-use-scan-dest-with-h...
  • 5edb672 feat: sort fields by struct
  • f107314 fix: get m2m table's structKey with driver.Valuer
  • a92a83e Merge pull request #1082 from GreenmaskIO/feat/add_query_comment
  • e60ae2a Merge pull request #1088 from j2gg0s/fix-support-scan-float32-to-float32
  • 8296774 fix: return error when use dest with has-many/many-to-many
  • 4505099 ci: try to revert ci cache
  • Additional commits viewable in compare view

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

Release notes

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

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.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)
  • pass correct 'transactional' parameter (ebdef1b)
  • pgdialect: remove unsigned integer conversion (ab3c679), closes uptrace/bun#624
  • remove unused param on table.go and tables.go: canAddr (d563e2d)
  • replace the link to docs repo in CONTRIBUTING.md (e120096)
  • trim surrounding '' in string literal in DEFAULT clause (a0dff72)

Features

  • add an ordered map to remove unnecessary dependencies (9fea143)
  • support disable dialect's feature (5343bd7)
Commits
  • 1a507f8 chore: release v1.2.8 (release.sh)
  • e8aaa46 Merge pull request #1098 from uptrace/feat-fields-sort-by-struct
  • 20eea4e Merge pull request #1101 from j2gg0s/fix-get-m2m-table-key
  • b50a0a5 Merge pull request #1099 from j2gg0s/fix-return-err-when-use-scan-dest-with-h...
  • 5edb672 feat: sort fields by struct
  • f107314 fix: get m2m table's structKey with driver.Valuer
  • a92a83e Merge pull request #1082 from GreenmaskIO/feat/add_query_comment
  • e60ae2a Merge pull request #1088 from j2gg0s/fix-support-scan-float32-to-float32
  • 8296774 fix: return error when use dest with has-many/many-to-many
  • 4505099 ci: try to revert ci cache
  • Additional commits viewable in compare view

Updates go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux from 0.57.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 17 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/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.29.1` | `0.31.1` |
| [github.com/grpc-ecosystem/grpc-gateway/v2](https://github.com/grpc-ecosystem/grpc-gateway) | `2.24.0` | `2.25.1` |
| [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) | `5.7.1` | `5.7.2` |
| [github.com/nats-io/nats-server/v2](https://github.com/nats-io/nats-server) | `2.10.22` | `2.10.24` |
| [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) | `1.37.0` | `1.38.0` |
| [github.com/spf13/cast](https://github.com/spf13/cast) | `1.7.0` | `1.7.1` |
| [github.com/uptrace/bun](https://github.com/uptrace/bun) | `1.2.6` | `1.2.8` |
| [github.com/uptrace/bun/dialect/pgdialect](https://github.com/uptrace/bun) | `1.2.6` | `1.2.8` |
| [github.com/uptrace/bun/driver/pgdriver](https://github.com/uptrace/bun) | `1.2.6` | `1.2.8` |
| [go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.57.0` | `0.59.0` |
| [go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.57.0` | `0.59.0` |
| [go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.57.0` | `0.59.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](https://github.com/open-telemetry/opentelemetry-go) | `1.32.0` | `1.34.0` |
| [go.opentelemetry.io/otel/exporters/stdout/stdouttrace](https://github.com/open-telemetry/opentelemetry-go) | `1.32.0` | `1.34.0` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.24.0` | `0.25.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/getsentry/sentry-go` from 0.29.1 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.29.1...v0.31.1)

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.24.0 to 2.25.1
- [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.24.0...v2.25.1)

Updates `github.com/jackc/pgx/v5` from 5.7.1 to 5.7.2
- [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md)
- [Commits](jackc/pgx@v5.7.1...v5.7.2)

Updates `github.com/nats-io/nats-server/v2` from 2.10.22 to 2.10.24
- [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.22...v2.10.24)

Updates `github.com/nats-io/nats.go` from 1.37.0 to 1.38.0
- [Release notes](https://github.com/nats-io/nats.go/releases)
- [Commits](nats-io/nats.go@v1.37.0...v1.38.0)

Updates `github.com/spf13/cast` from 1.7.0 to 1.7.1
- [Release notes](https://github.com/spf13/cast/releases)
- [Commits](spf13/cast@v1.7.0...v1.7.1)

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

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

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

Updates `go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux` from 0.57.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.57.0...zpages/v0.59.0)

Updates `go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc` from 0.57.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.57.0...zpages/v0.59.0)

Updates `go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp` from 0.57.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.57.0...zpages/v0.59.0)

Updates `go.opentelemetry.io/otel` from 1.32.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.32.0...v1.34.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc` from 1.32.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.32.0...v1.34.0)

Updates `go.opentelemetry.io/otel/exporters/stdout/stdouttrace` from 1.32.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.32.0...v1.34.0)

Updates `go.opentelemetry.io/otel/metric` from 1.32.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.32.0...v1.34.0)

Updates `go.opentelemetry.io/otel/sdk` from 1.32.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.32.0...v1.34.0)

Updates `go.opentelemetry.io/otel/trace` from 1.32.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.32.0...v1.34.0)

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

Updates `golang.org/x/net` from 0.31.0 to 0.34.0
- [Commits](golang/net@v0.31.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 `golang.org/x/sync` from 0.9.0 to 0.10.0
- [Commits](golang/sync@v0.9.0...v0.10.0)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20241118233622-e639e219e697 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-20241118233622-e639e219e697 to 0.0.0-20250115164207-1a7da9e5054f
- [Commits](https://github.com/googleapis/go-genproto/commits)

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

Updates `google.golang.org/protobuf` from 1.35.2 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/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/jackc/pgx/v5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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/nats-io/nats.go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
- dependency-name: github.com/spf13/cast
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: golang.org/x/sync
  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-minor
  dependency-group: safe
- dependency-name: google.golang.org/protobuf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: safe
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jan 20, 2025
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