Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies and go version #973

Merged
merged 1 commit into from
Apr 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* [KIP-320](https://cwiki.apache.org/confluence/display/KAFKA/KIP-320%3A+Allow+fetchers+to+detect+and+handle+log+truncation):
add offset leader epoch to the TopicPartition \
and Message structs (#968).
* The minimum version of Go supported has been changed from 1.14 to 1.16 (#973).


confluent-kafka-go is based on librdkafka v2.1.0, see the
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ for use with [Confluent Cloud](https://www.confluent.io/confluent-cloud/).
Getting Started
===============

Supports Go 1.14+ and librdkafka 2.1.0+.
Supports Go 1.16+ and librdkafka 2.1.0+.

Using Go Modules
----------------
Expand Down
6 changes: 2 additions & 4 deletions examples/go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
module github.com/confluentinc/confluent-kafka-go/examples/v2

go 1.14
go 1.16

replace github.com/confluentinc/confluent-kafka-go/v2 => ../

require (
github.com/actgardner/gogen-avro/v10 v10.2.1
github.com/alecthomas/kingpin v2.2.6+incompatible
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/confluentinc/confluent-kafka-go/v2 v2.1.0
github.com/gdamore/tcell v1.4.0
github.com/jhump/protoreflect v1.12.0 // indirect
google.golang.org/protobuf v1.28.0
google.golang.org/protobuf v1.30.0
)
Loading