Skip to content

Bump the go-dependencies group across 1 directory with 11 updates#205

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/go-dependencies-e82175b7f9
Open

Bump the go-dependencies group across 1 directory with 11 updates#205
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/go-dependencies-e82175b7f9

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the go-dependencies group with 10 updates in the / directory:

Package From To
cloud.google.com/go/pubsub/v2 2.3.0 2.6.0
github.com/IBM/sarama 1.46.3 1.48.0
github.com/aws/aws-sdk-go-v2 1.41.0 1.41.7
github.com/aws/aws-sdk-go-v2/config 1.32.6 1.32.17
github.com/aws/aws-sdk-go-v2/service/kinesis 1.42.9 1.43.7
github.com/aws/aws-sdk-go-v2/service/sqs 1.42.20 1.42.27
github.com/nats-io/nats.go 1.48.0 1.51.0
github.com/rabbitmq/amqp091-go 1.10.0 1.11.0
go.uber.org/zap 1.27.1 1.28.0
sigs.k8s.io/controller-runtime 0.22.4 0.24.0

Updates cloud.google.com/go/pubsub/v2 from 2.3.0 to 2.6.0

Commits
  • ea4e89b chore: librarian release pull request: 20260414T204508Z (#14438)
  • 9f7141d chore(firestore): update experimental warnings for pipeline features (#14442)
  • 9c44658 Merge pull request #14406 from googleapis:librarian-20260409T070606Z
  • 1eb32b3 feat(firestore): Add new functions and correct old ones (#14437)
  • c887413 refactor(firestore): fix aliasing (#14440)
  • 427745c feat: Add ingest_events method for Memory Bank.
  • 1ceb42e feat(firestore): refine Pipelines API, error handling, and tests (#14429)
  • 45d75e5 feat(vertexai): Add subset_topics to Memory Bank GenerateMemories
  • cf44ec9 chore: run generation check as post-submit job (#14428)
  • be7c86e chore: librarian release pull request: 20260414T182932Z (#14432)
  • Additional commits viewable in compare view

Updates github.com/IBM/sarama from 1.46.3 to 1.48.0

Release notes

Sourced from github.com/IBM/sarama's releases.

Version 1.48.0 (2026-04-24)

What's Changed

🎉 New Features / Improvements

🐛 Fixes

📦 Dependency updates

🔧 Maintenance

📝 Documentation

➕ Other Changes

New Contributors

Full Changelog: IBM/sarama@v1.47.0...v1.48.0

Version 1.47.0 (2026-02-27)

What's Changed

🎉 New Features / Improvements

... (truncated)

Commits
  • 1c04892 fix: add Unwrap() to DescribeConfigError and AlterConfigError (#3487)
  • e025a73 fix: remove return from checkSeedBrokersHealth
  • 0e6dc1b fix: skip broker health tests without socket probing
  • ea568bd fix: keep bootstrap brokers and unblock async shutdown
  • 8eafc46 fix: close broken tcp connections
  • 188e5a2 chore(ci): Update registry.access.redhat.com/ubi9/ubi-minimal:9.7 Docker dige...
  • a047505 chore(ci): bump the actions group with 3 updates (#3499)
  • 374261b chore(ci): bump github/codeql-action from 4.34.1 to 4.35.2 (#3500)
  • f1cd6c3 chore(deps): update docker/bake-action action to v7.1.0 (#3459)
  • 3d590ad chore(deps): update docker/setup-buildx-action action to v4 (#3458)
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2 from 1.41.0 to 1.41.7

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.32.6 to 1.32.17

Commits

Updates github.com/aws/aws-sdk-go-v2/service/kinesis from 1.42.9 to 1.43.7

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sqs from 1.42.20 to 1.42.27

Commits

Updates github.com/nats-io/nats.go from 1.48.0 to 1.51.0

Release notes

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

Release v1.51.0

Changelog

ADDED

  • Core NATS:
    • Option to customize write buffer size (#2057)
    • Option to automatically reconnect on write error (#2055)
    • Accessors for JetStream API level and IsSysAccount from ServerInfo (#2060)

FIXED

  • Core NATS:
    • Make websocket frame validation more robust (#2050)
  • JetStream:
    • Fix deadlock in Consume() when calling Stop/Drain from ConsumeErrHandler (#2059)

IMPROVED

  • Fix typos in tests. Thanks @​deining for the contribution (#2049)
  • Fix deprecation warnings by bumping GH actions to their latest versions. Thanks @​deining for the contibution (#2048)
  • Code linting: remove functions min and max. Thanks @​deining for the contribution (#2047)

Complete Changes

nats-io/nats.go@v1.50.0...v1.51.0

Release v1.50.0

Changelog

FIXED

  • Core NATS:
    • Fix WebSocket close frame discarding buffered data frames (#2032)
  • JetStream:
    • Remove status listener in Consume()/Messages() cleanup. Thanks @​txuna for the contribution (#1993)
    • Fix race condition in orderedSubscription.Drain() (#2030)
    • Fixed OrderedConsumer.Consume() race in handler (#2043)

IMPROVED

  • Core NATS:
    • De-flake TestAlwaysReconnectOnAccountMaxConnectionsExceededErr (#2042)
    • Wrap EOF/connection reset errors with TLS context after handshake (#2031)
  • JetStream:
    • Reject control characters in stream and consumer names (#2038)
    • Add missing AccountLimits fields in jetstream package (#2041)
    • Fix flaky TestConsumerPrioritized/messages test (#2033)
  • KeyValue:
    • Deduplicate keys in KeyValue.Keys() and document ListKeys behavior (#2029)

... (truncated)

Commits
  • 17b6fd1 Release v1.51.0 (#2061)
  • b6d0226 [ADDED] Accessors for JS API level and IsSysAccount (#2060)
  • 7a2bb4a [IMPROVED] Code linting: remove functions min and max (#2047)
  • 0099a32 [IMPROVED] Fix deprecation warnings by bumping GH actions to their latest ver...
  • e23b40d [FIXED] Deadlock in Consume() whe calling Stop/Drain from ConsumeErrHandler (...
  • 1250dd6 [ADDED] Automatic reconnect on write error option (#2055)
  • e4a8c79 [ADDED] Option to customize write buffer size (#2057)
  • 9a88c4c Update Claude workflow permissions to contents:read and actions:read (#2056)
  • f945cd9 [IMPROVED] Fix typos (#2049)
  • 4bba571 [FIXED] Make websocket frame validation more robust (#2050)
  • Additional commits viewable in compare view

Updates github.com/rabbitmq/amqp091-go from 1.10.0 to 1.11.0

Release notes

Sourced from github.com/rabbitmq/amqp091-go's releases.

v1.11.0

What's Changed

New Contributors

Full Changelog: rabbitmq/amqp091-go@v1.10.0...v1.11.0

Changelog

Sourced from github.com/rabbitmq/amqp091-go's changelog.

v1.11.0 (2026-04-21)

Full Changelog

Implemented enhancements:

  • add better debug information on DialConfig #245

Fixed bugs:

  • Channel error when acking via go-routines #296

Closed issues:

  • PR #318 exposes a pre-existing race in Connection.Close(). #327
  • Entire header frame isn't always read #309
  • Incomplete support of 0-9-1 field type values #302
  • Redelivered Flag Not Exposed #301
  • consume input basicConsumeOk but response queueBindOk #291
  • Channel is closed after Channel.ExchangeDeclarePassive fails #290
  • Incomplete example in (*Channel).QueueBind documentation #279
  • QueueDeclarePassive does not report queue type mismatch #273
  • Release 1.10.0 #261
  • Update minimum Go version to 1.18 #146

Merged pull requests:

... (truncated)

Commits
  • 5fdceeb Version 1.11.0
  • a426238 Merge pull request #330 from NawafSwe/chore-329/publish-with-context-fix
  • 6d3ec4f chore: follow gate-keeper approach for context management in publish
  • 301e296 chore: respect context cancellation in PublishWithDeferredConfirmWithContext ...
  • dbf5f69 chore: respect context cancellation in PublishWithContext function
  • 9665ac6 Merge pull request #328 from rabbitmq/fix-race-condition
  • 86058c1 go fmt
  • e6b63d7 Add a concurrent connection closure test #328
  • b5b3c52 Connection: briefly explain the purpose of each sync.Once
  • 5f7f528 fix: eliminate race condition in Connection.Close() and related methods
  • Additional commits viewable in compare view

Updates go.uber.org/zap from 1.27.1 to 1.28.0

Release notes

Sourced from go.uber.org/zap's releases.

v1.28.0

Enhancements:

  • #1534[]: Add zapcore.CheckPreWriteHook and CheckedEntry.Before method for transforming entries before they are written to any Cores.

#1534: uber-go/zap#1534

Changelog

Sourced from go.uber.org/zap's changelog.

1.28.0 (27 Apr 2026)

Enhancements:

  • #1534[]: Add zapcore.CheckPreWriteHook and CheckedEntry.Before method for transforming entries before they are written to any Cores.
Commits
  • 5b81b37 release v1.28.0 (#1547)
  • 0ab0d5a zapcore: Add PreWriteHook for transforming entries before write (#1534)
  • d278c59 [chore] CI: test on Go 1.26 (#1535)
  • 16fb16b chore(dep): replace archived gopkg.in/yaml.v3 with officially maintained go.y...
  • See full diff in compare view

Updates google.golang.org/api from 0.258.0 to 0.274.0

Release notes

Sourced from google.golang.org/api's releases.

v0.274.0

0.274.0 (2026-04-02)

Features

v0.273.1

0.273.1 (2026-03-31)

Bug Fixes

  • Merge duplicate x-goog-request-params header (#3547) (2008108)

v0.273.0

0.273.0 (2026-03-23)

Features

v0.272.0

0.272.0 (2026-03-16)

Features

v0.271.0

0.271.0 (2026-03-10)

Features

v0.270.0

0.270.0 (2026-03-08)

... (truncated)

Changelog

Sourced from google.golang.org/api's changelog.

0.274.0 (2026-04-02)

Features

0.273.1 (2026-03-31)

Bug Fixes

  • Merge duplicate x-goog-request-params header (#3547) (2008108)

0.273.0 (2026-03-23)

Features

0.272.0 (2026-03-16)

Features

0.271.0 (2026-03-10)

Features

0.270.0 (2026-03-08)

Features

... (truncated)

Commits

Updates sigs.k8s.io/controller-runtime from 0.22.4 to 0.24.0

Release notes

Sourced from sigs.k8s.io/controller-runtime's releases.

v0.24.0

⚠️ Breaking Changes

🐛 Bug Fixes

  • Cache: Fix IndexField blocking until informer is synced (#3445)
  • Cache: Wait for cache sync when ReaderFailOnMissingInformer is true (#3425)
  • Client: Update typed ApplyConfigurations with server response (#3475)
  • Fakeclient: Fix SSA status patch resource version check (#3443)
  • Fakeclient: Fix panic when using CRs with embedded pointer structs (#3431)
  • Fakeclient: Fix status apply if existing object has managedFields set (#3430)
  • Fakeclient: Retry GenerateName on AlreadyExists collisions (#3498)
  • HTTP servers: Wire up base context into http servers (#3452)

🌱 Others

  • Builder/Webhooks: Remove deprecated custom path function (#3465)
  • Cache: Test cache reader waits for cache sync (#3434)
  • Certwatcher: Deflake certwatcher tests (#3457)
  • Dependencies: Use forked version of btree (#3449)
  • Envtest: Ensure envtest stops the whole process group (#3447)
  • Logging: Add missing space in zap-log-level flag description (#3492)
  • Misc: Adopt new(x) over ptr.To(x) and re-enable newexpr lint (#3489)
  • Owners: Cleanup (#3453)
  • Recorder: Add logger into context for structured logging (#3454)
  • Recorder: Switch to StartLogging for event debug logs (#3451)
  • Scheme: Deprecate the scheme builder (#3461)
  • Source/Kind: Improve logging for dynamic type kind source (#3494)
  • Webhooks: Reduce memory usage of default webhooks (#3463 #3468)

🌱 CI & linters

  • Chore: Update golangci-lint version to v2.8.0 (#3448)
  • Chore: Update golangci-lint version to v2.10.1 (#3470)
  • Chore: Update golangci-lint version to v2.11.3 (#3482)
  • Migrate away from custom GitHub action approval workflow (#3491)
  • Release: Auto-create git tags for the tools/setup-envtest submodule (#3476)

📖 Additionally, there has been 1 contribution to our documentation. (#3477)

Dependencies

Added

  • github.com/cenkalti/backoff/v5: v5.0.3
  • gonum.org/v1/gonum: v0.16.0
  • k8s.io/streaming: v0.36.0

Changed

... ...

Description has been truncated

Bumps the go-dependencies group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/pubsub/v2](https://github.com/googleapis/google-cloud-go) | `2.3.0` | `2.6.0` |
| [github.com/IBM/sarama](https://github.com/IBM/sarama) | `1.46.3` | `1.48.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.0` | `1.41.7` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.6` | `1.32.17` |
| [github.com/aws/aws-sdk-go-v2/service/kinesis](https://github.com/aws/aws-sdk-go-v2) | `1.42.9` | `1.43.7` |
| [github.com/aws/aws-sdk-go-v2/service/sqs](https://github.com/aws/aws-sdk-go-v2) | `1.42.20` | `1.42.27` |
| [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) | `1.48.0` | `1.51.0` |
| [github.com/rabbitmq/amqp091-go](https://github.com/rabbitmq/amqp091-go) | `1.10.0` | `1.11.0` |
| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.1` | `1.28.0` |
| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.24.0` |



Updates `cloud.google.com/go/pubsub/v2` from 2.3.0 to 2.6.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@pubsub/v2.3.0...pubsub/v2.6.0)

Updates `github.com/IBM/sarama` from 1.46.3 to 1.48.0
- [Release notes](https://github.com/IBM/sarama/releases)
- [Changelog](https://github.com/IBM/sarama/blob/main/CHANGELOG.md)
- [Commits](IBM/sarama@v1.46.3...v1.48.0)

Updates `github.com/aws/aws-sdk-go-v2` from 1.41.0 to 1.41.7
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.41.0...v1.41.7)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.32.6 to 1.32.17
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.32.6...config/v1.32.17)

Updates `github.com/aws/aws-sdk-go-v2/service/kinesis` from 1.42.9 to 1.43.7
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/amp/v1.42.9...service/fsx/v1.43.7)

Updates `github.com/aws/aws-sdk-go-v2/service/sqs` from 1.42.20 to 1.42.27
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/sqs/v1.42.20...service/sqs/v1.42.27)

Updates `github.com/nats-io/nats.go` from 1.48.0 to 1.51.0
- [Release notes](https://github.com/nats-io/nats.go/releases)
- [Commits](nats-io/nats.go@v1.48.0...v1.51.0)

Updates `github.com/rabbitmq/amqp091-go` from 1.10.0 to 1.11.0
- [Release notes](https://github.com/rabbitmq/amqp091-go/releases)
- [Changelog](https://github.com/rabbitmq/amqp091-go/blob/main/CHANGELOG.md)
- [Commits](rabbitmq/amqp091-go@v1.10.0...v1.11.0)

Updates `go.uber.org/zap` from 1.27.1 to 1.28.0
- [Release notes](https://github.com/uber-go/zap/releases)
- [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md)
- [Commits](uber-go/zap@v1.27.1...v1.28.0)

Updates `google.golang.org/api` from 0.258.0 to 0.274.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.258.0...v0.274.0)

Updates `sigs.k8s.io/controller-runtime` from 0.22.4 to 0.24.0
- [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/controller-runtime@v0.22.4...v0.24.0)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/pubsub/v2
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/IBM/sarama
  dependency-version: 1.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.41.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.32.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/kinesis
  dependency-version: 1.43.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/sqs
  dependency-version: 1.42.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/nats-io/nats.go
  dependency-version: 1.51.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/rabbitmq/amqp091-go
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: go.uber.org/zap
  dependency-version: 1.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: google.golang.org/api
  dependency-version: 0.274.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: sigs.k8s.io/controller-runtime
  dependency-version: 0.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
...

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 May 1, 2026
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