Skip to content

Commit 73e3826

Browse files
authored
[chore] Upgrade franz-go packages on Kafka components (open-telemetry#43724)
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description Relates to open-telemetry#43690 With the patch of franz-go `v1.20.1`, we can now upgrade the kadm package to `v1.17.0` Signed-off-by: Paulo Dias <[email protected]>
1 parent 041fd54 commit 73e3826

File tree

10 files changed

+44
-44
lines changed

10 files changed

+44
-44
lines changed

exporter/kafkaexporter/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ require (
1616
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.138.0
1717
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.138.0
1818
github.com/stretchr/testify v1.11.1
19-
github.com/twmb/franz-go v1.20.0
20-
github.com/twmb/franz-go/pkg/kfake v0.0.0-20250729165834-29dc44e616cd
19+
github.com/twmb/franz-go v1.20.1
20+
github.com/twmb/franz-go/pkg/kfake v0.0.0-20251021233722-4ca18825d8c0
2121
go.opentelemetry.io/collector/client v1.44.1-0.20251021231522-c657d5d4e920
2222
go.opentelemetry.io/collector/component v1.44.1-0.20251021231522-c657d5d4e920
2323
go.opentelemetry.io/collector/component/componenttest v0.138.1-0.20251021231522-c657d5d4e920
@@ -97,7 +97,7 @@ require (
9797
github.com/pierrec/lz4/v4 v4.1.22 // indirect
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
100-
github.com/twmb/franz-go/pkg/kadm v1.16.1 // indirect
100+
github.com/twmb/franz-go/pkg/kadm v1.17.0 // indirect
101101
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

exporter/kafkaexporter/go.sum

Lines changed: 6 additions & 6 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ require (
6767
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
6868
github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9 // indirect
6969
github.com/stretchr/objx v0.5.2 // indirect
70-
github.com/twmb/franz-go v1.20.0 // indirect
71-
github.com/twmb/franz-go/pkg/kadm v1.16.1 // indirect
70+
github.com/twmb/franz-go v1.20.1 // indirect
71+
github.com/twmb/franz-go/pkg/kadm v1.17.0 // indirect
7272
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

extension/observer/kafkatopicsobserver/go.sum

Lines changed: 6 additions & 6 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/kafka/configkafka v0.138.0
99
github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9
1010
github.com/stretchr/testify v1.11.1
11-
github.com/twmb/franz-go/pkg/kfake v0.0.0-20250729165834-29dc44e616cd
11+
github.com/twmb/franz-go/pkg/kfake v0.0.0-20251021233722-4ca18825d8c0
1212
github.com/twmb/franz-go/pkg/sasl/kerberos v1.1.0
1313
github.com/xdg-go/scram v1.1.2
1414
go.opentelemetry.io/collector/config/configcompression v1.44.1-0.20251021231522-c657d5d4e920
@@ -57,8 +57,8 @@ require (
5757
github.com/pierrec/lz4/v4 v4.1.22 // indirect
5858
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
5959
github.com/rogpeppe/go-internal v1.13.1 // indirect
60-
github.com/twmb/franz-go v1.20.0
61-
github.com/twmb/franz-go/pkg/kadm v1.16.1
60+
github.com/twmb/franz-go v1.20.1
61+
github.com/twmb/franz-go/pkg/kadm v1.17.0
6262
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

internal/kafka/go.sum

Lines changed: 6 additions & 6 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ require (
88
github.com/open-telemetry/opentelemetry-collector-contrib/internal/kafka v0.138.0
99
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/kafka/configkafka v0.138.0
1010
github.com/stretchr/testify v1.11.1
11-
github.com/twmb/franz-go v1.20.0
12-
github.com/twmb/franz-go/pkg/kadm v1.16.1
13-
github.com/twmb/franz-go/pkg/kfake v0.0.0-20250729165834-29dc44e616cd
11+
github.com/twmb/franz-go v1.20.1
12+
github.com/twmb/franz-go/pkg/kadm v1.17.0
13+
github.com/twmb/franz-go/pkg/kfake v0.0.0-20251021233722-4ca18825d8c0
1414
go.opentelemetry.io/collector/component v1.44.1-0.20251021231522-c657d5d4e920
1515
go.opentelemetry.io/collector/component/componenttest v0.138.1-0.20251021231522-c657d5d4e920
1616
go.opentelemetry.io/collector/confmap v1.44.1-0.20251021231522-c657d5d4e920

receiver/kafkametricsreceiver/go.sum

Lines changed: 6 additions & 6 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ require (
1717
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/zipkin v0.138.0
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.0
21-
github.com/twmb/franz-go/pkg/kadm v1.16.1
22-
github.com/twmb/franz-go/pkg/kfake v0.0.0-20250729165834-29dc44e616cd
20+
github.com/twmb/franz-go v1.20.1
21+
github.com/twmb/franz-go/pkg/kadm v1.17.0
22+
github.com/twmb/franz-go/pkg/kfake v0.0.0-20251021233722-4ca18825d8c0
2323
go.opentelemetry.io/collector/client v1.44.1-0.20251021231522-c657d5d4e920
2424
go.opentelemetry.io/collector/component v1.44.1-0.20251021231522-c657d5d4e920
2525
go.opentelemetry.io/collector/component/componentstatus v0.138.1-0.20251021231522-c657d5d4e920

receiver/kafkareceiver/go.sum

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

0 commit comments

Comments
 (0)