Skip to content

Commit 3db0958

Browse files
renovate[bot]otelbot[bot]songy23
authored andcommitted
Update module github.com/twmb/franz-go/pkg/kmsg to v1.12.0 (open-telemetry#43550)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/twmb/franz-go/pkg/kmsg](https://redirect.github.com/twmb/franz-go) | `v1.11.2` -> `v1.12.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ftwmb%2ffranz-go%2fpkg%2fkmsg/v1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ftwmb%2ffranz-go%2fpkg%2fkmsg/v1.11.2/v1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>twmb/franz-go (github.com/twmb/franz-go/pkg/kmsg)</summary> ### [`v1.12.0`](https://redirect.github.com/twmb/franz-go/blob/HEAD/CHANGELOG.md#v1120) [Compare Source](https://redirect.github.com/twmb/franz-go/compare/v1.11.2...v1.12.0) \=== This release is tested against Kafka 3.4, and kversion can now properly version guess 3.4. There are two external kgo features in this release and there is one internal feature. Externally, - `Client.CommitMarkedOffsets` makes committing marked offsets a bit easier - `Client.UpdateSeedBrokers` allows for updating seed brokers, which can be useful on extremely long lived clients. Internally, - KIP-792 improves fencing of zombie group consumers using cooperative rebalancing * [`c5f86ea`](https://redirect.github.com/twmb/franz-go/commit/c5f86ea) **feature** kgo.Client: add `UpdateSeedBrokers(...string) error` * [`3e45339`](https://redirect.github.com/twmb/franz-go/commit/3e45339) **internal improvement** group balancer: support KIP-792 * [`fe727f8`](https://redirect.github.com/twmb/franz-go/commit/fe727f8) **feature** kversion: cut Kafka 3.4 * [`6751589`](https://redirect.github.com/twmb/franz-go/commit/6751589) **feature** pkg/kgo: add `Client.CommitMarkedOffsets` (thanks [@&open-telemetry#8203;celrenheit](https://redirect.github.com/celrenheit)!) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE0My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: otelbot <[email protected]> Co-authored-by: Yang Song <[email protected]>
1 parent 89edd20 commit 3db0958

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

exporter/kafkaexporter/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ require (
9898
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
9999
github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9 // indirect
100100
github.com/twmb/franz-go/pkg/kadm v1.16.1 // indirect
101-
github.com/twmb/franz-go/pkg/kmsg v1.11.2 // indirect
101+
github.com/twmb/franz-go/pkg/kmsg v1.12.0 // indirect
102102
github.com/twmb/franz-go/pkg/sasl/kerberos v1.1.0 // indirect
103103
github.com/twmb/franz-go/plugin/kzap v1.1.2 // indirect
104104
github.com/xdg-go/pbkdf2 v1.0.0 // indirect

exporter/kafkaexporter/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extension/observer/kafkatopicsobserver/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ require (
6969
github.com/stretchr/objx v0.5.2 // indirect
7070
github.com/twmb/franz-go v1.19.5 // indirect
7171
github.com/twmb/franz-go/pkg/kadm v1.16.1 // indirect
72-
github.com/twmb/franz-go/pkg/kmsg v1.11.2 // indirect
72+
github.com/twmb/franz-go/pkg/kmsg v1.12.0 // indirect
7373
github.com/twmb/franz-go/pkg/sasl/kerberos v1.1.0 // indirect
7474
github.com/twmb/franz-go/plugin/kzap v1.1.2 // indirect
7575
github.com/xdg-go/pbkdf2 v1.0.0 // indirect

extension/observer/kafkatopicsobserver/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/kafka/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ require (
5959
github.com/rogpeppe/go-internal v1.13.1 // indirect
6060
github.com/twmb/franz-go v1.19.5
6161
github.com/twmb/franz-go/pkg/kadm v1.16.1
62-
github.com/twmb/franz-go/pkg/kmsg v1.11.2
62+
github.com/twmb/franz-go/pkg/kmsg v1.12.0
6363
github.com/twmb/franz-go/plugin/kzap v1.1.2
6464
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
6565
github.com/xdg-go/stringprep v1.0.4 // indirect

internal/kafka/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

receiver/kafkametricsreceiver/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ require (
7777
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
7878
github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9 // indirect
7979
github.com/stretchr/objx v0.5.2 // indirect
80-
github.com/twmb/franz-go/pkg/kmsg v1.11.2 // indirect
80+
github.com/twmb/franz-go/pkg/kmsg v1.12.0 // indirect
8181
github.com/twmb/franz-go/pkg/sasl/kerberos v1.1.0 // indirect
8282
github.com/twmb/franz-go/plugin/kzap v1.1.2 // indirect
8383
github.com/xdg-go/pbkdf2 v1.0.0 // indirect

receiver/kafkametricsreceiver/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

receiver/kafkareceiver/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ require (
102102
github.com/pierrec/lz4/v4 v4.1.22 // indirect
103103
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
104104
github.com/relvacode/iso8601 v1.7.0 // indirect
105-
github.com/twmb/franz-go/pkg/kmsg v1.11.2 // indirect
105+
github.com/twmb/franz-go/pkg/kmsg v1.12.0 // indirect
106106
github.com/twmb/franz-go/pkg/sasl/kerberos v1.1.0 // indirect
107107
github.com/twmb/franz-go/plugin/kzap v1.1.2 // indirect
108108
github.com/xdg-go/pbkdf2 v1.0.0 // indirect

receiver/kafkareceiver/go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)