Skip to content

Commit f7aba7d

Browse files
renovate[bot]otelbot[bot]ChrsMark
authored
fix(deps): update module github.com/twmb/franz-go to v1.20.5 (open-telemetry#44499)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/twmb/franz-go](https://redirect.github.com/twmb/franz-go) | `v1.20.4` -> `v1.20.5` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ftwmb%2ffranz-go/v1.20.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ftwmb%2ffranz-go/v1.20.4/v1.20.5?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)</summary> ### [`v1.20.5`](https://redirect.github.com/twmb/franz-go/blob/HEAD/CHANGELOG.md#v1205) [Compare Source](https://redirect.github.com/twmb/franz-go/compare/v1.20.4...v1.20.5) \=== This fixes a commit in 1.20.4 that accidentally broke client metrics (KIP-714) and inadvertently made a log spammy. In addition to the fix, a few logs around client metrics have been reduced in severity. The new-as-of-1.20 `OnPartitionsCallbackBlocked` is now called in a goroutine, reducing the chance that you accidentally run into a deadlock based on how you structure handling the hook. Deps have been bumped to eliminate any security scanners that flag on CVEs (even though this is a library and you can bump the dep in your own binary). The `kgo.Fetches.Errors` doc has been expanded to account for previously undocumented errors, and updates guidance on what's retryable vs what is not. validating leader epoch changes. - [`e86bb6c9`](https://redirect.github.com/twmb/franz-go/commit/e86bb6c9) kgo: `info=>debug` for a few logs in client metrics - [`7c7ca2b4`](https://redirect.github.com/twmb/franz-go/commit/7c7ca2b4) kgo: call OnPartitionsCallbackBlocked concurrently - [`ebf29a4a`](https://redirect.github.com/twmb/franz-go/commit/ebf29a4a) all: bump deps - [`97b4a1d4`](https://redirect.github.com/twmb/franz-go/commit/97b4a1d4) kgo.Fetches.Errors doc: clarify && expand for two undoc'd errors - [`13ea38e3`](https://redirect.github.com/twmb/franz-go/commit/13ea38e3) **bug** kgo: fix remaining usage of kgo.maxVers/kgo.maxVersion </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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xOS41IiwidXBkYXRlZEluVmVyIjoiNDIuMTkuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: otelbot <[email protected]> Co-authored-by: Christos Markou <[email protected]>
1 parent e9410c7 commit f7aba7d

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
@@ -16,7 +16,7 @@ require (
1616
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.140.1
1717
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.140.1
1818
github.com/stretchr/testify v1.11.1
19-
github.com/twmb/franz-go v1.20.4
19+
github.com/twmb/franz-go v1.20.5
2020
github.com/twmb/franz-go/pkg/kfake v0.0.0-20251021233722-4ca18825d8c0
2121
go.opentelemetry.io/collector/client v1.46.1-0.20251120204106-2e9c82787618
2222
go.opentelemetry.io/collector/component v1.46.1-0.20251120204106-2e9c82787618

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
@@ -66,7 +66,7 @@ require (
6666
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
6767
github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9 // indirect
6868
github.com/stretchr/objx v0.5.2 // indirect
69-
github.com/twmb/franz-go v1.20.4 // indirect
69+
github.com/twmb/franz-go v1.20.5 // indirect
7070
github.com/twmb/franz-go/pkg/kadm v1.17.1 // indirect
7171
github.com/twmb/franz-go/pkg/kmsg v1.12.0 // indirect
7272
github.com/twmb/franz-go/pkg/sasl/kerberos v1.1.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/pierrec/lz4/v4 v4.1.22 // indirect
6060
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
6161
github.com/rogpeppe/go-internal v1.13.1 // indirect
62-
github.com/twmb/franz-go v1.20.4
62+
github.com/twmb/franz-go v1.20.5
6363
github.com/twmb/franz-go/pkg/kadm v1.17.1
6464
github.com/twmb/franz-go/pkg/kmsg v1.12.0
6565
github.com/twmb/franz-go/plugin/kzap v1.1.2

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
@@ -8,7 +8,7 @@ require (
88
github.com/open-telemetry/opentelemetry-collector-contrib/internal/kafka v0.140.1
99
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/kafka/configkafka v0.140.1
1010
github.com/stretchr/testify v1.11.1
11-
github.com/twmb/franz-go v1.20.4
11+
github.com/twmb/franz-go v1.20.5
1212
github.com/twmb/franz-go/pkg/kadm v1.17.1
1313
github.com/twmb/franz-go/pkg/kfake v0.0.0-20251021233722-4ca18825d8c0
1414
go.opentelemetry.io/collector/component v1.46.1-0.20251120204106-2e9c82787618

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
@@ -17,7 +17,7 @@ require (
1717
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.140.1
1818
github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9
1919
github.com/stretchr/testify v1.11.1
20-
github.com/twmb/franz-go v1.20.4
20+
github.com/twmb/franz-go v1.20.5
2121
github.com/twmb/franz-go/pkg/kadm v1.17.1
2222
github.com/twmb/franz-go/pkg/kfake v0.0.0-20251021233722-4ca18825d8c0
2323
go.opentelemetry.io/collector/client v1.46.1-0.20251120204106-2e9c82787618

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)