Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ require (
github.com/tinylib/msgp v1.6.4
github.com/twmb/franz-go v1.21.5
github.com/twmb/franz-go/pkg/kadm v1.18.0
github.com/twmb/franz-go/pkg/kmsg v1.13.1
github.com/twmb/franz-go/pkg/kmsg/v2 v2.0.1

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep kmsg on the imported module path

This line switches the requirement to github.com/twmb/franz-go/pkg/kmsg/v2, but the repo still imports the v1 path (pkg/network/usm/kafka_monitor_test.go) and Bazel still references @com_github_twmb_franz_go_pkg_kmsg. In any linux_bpf Kafka test/build or tidy check, this leaves the actual imported module out of sync while adding an unused v2 module, so dda inv tidy/dependency checks will revert this rather than validate the upgrade. Please update the imports/Bazel dependency to /v2 as part of the upgrade, or keep the v1 requirement.

Useful? React with πŸ‘Β / πŸ‘Ž.

github.com/twmb/murmur3 v1.1.8
github.com/uptrace/bun v1.2.18
github.com/uptrace/bun/dialect/pgdialect v1.2.18
Expand Down
Loading