Skip to content

Commit cb2701e

Browse files
rzeijdemilindl
andauthored
Update go version to 1.21 and testcontainers-go dependency to v0.29.1 (#1136)
* Run go mod tidy everywhere and add doc changes * updated go version to 1.21 and testcontainers-go dependency to v0.27.0 * updated go version to 1.21 and testcontainers-go dependency to v0.27.0 * Run go mod tidy within examples * Update go version in CI * Update testcontainers-go version to 0.29.1 * Update CHANGELOG.md * Update docker example go.mod and go.sum --------- Co-authored-by: Milind L <[email protected]> Co-authored-by: Milind L <[email protected]>
1 parent a85eae1 commit cb2701e

File tree

16 files changed

+4177
-6130
lines changed

16 files changed

+4177
-6130
lines changed

.semaphore/semaphore.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ global_job_config:
1111
commands:
1212
- checkout
1313
blocks:
14-
- name: "Go 1.19 OSX bundled librdkafka"
14+
- name: "go 1.21 OSX bundled librdkafka"
1515
dependencies: [ ]
1616
task:
1717
agent:
1818
machine:
1919
type: s1-prod-macos-13-5-amd64
2020
prologue:
2121
commands:
22-
- sem-version go 1.19
22+
- sem-version go 1.21
2323
- export GOPATH=$(go env GOPATH)
2424
- export PATH="$PATH:$GOPATH/bin"
2525
- export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig:$HOME/confluent-kafka-go/tmp-build/lib/pkgconfig"
@@ -38,15 +38,15 @@ blocks:
3838
- name: EXPECT_LINK_INFO
3939
value: dynamic
4040
commands_file: semaphore_commands.sh
41-
- name: "Go 1.19 linux bundled librdkafka"
41+
- name: "go 1.21 linux bundled librdkafka"
4242
dependencies: [ ]
4343
task:
4444
agent:
4545
machine:
4646
type: s1-prod-ubuntu20-04-amd64-2
4747
prologue:
4848
commands:
49-
- sem-version go 1.19
49+
- sem-version go 1.21
5050
- export GOPATH=$(go env GOPATH)
5151
- export PATH="$PATH:$GOPATH/bin"
5252
- export PKG_CONFIG_PATH="$HOME/confluent-kafka-go/tmp-build/lib/pkgconfig"
@@ -69,15 +69,15 @@ blocks:
6969
- name: EXPECT_LINK_INFO
7070
value: dynamic
7171
commands_file: semaphore_integration_commands.sh
72-
- name: "Go 1.19 linux arm64 bundled librdkafka"
72+
- name: "go 1.21 linux arm64 bundled librdkafka"
7373
dependencies: [ ]
7474
task:
7575
agent:
7676
machine:
7777
type: s1-prod-ubuntu20-04-arm64-1
7878
prologue:
7979
commands:
80-
- sem-version go 1.19
80+
- sem-version go 1.21
8181
- export GOPATH=$(go env GOPATH)
8282
- export PATH="$PATH:$GOPATH/bin"
8383
- export PKG_CONFIG_PATH="$HOME/confluent-kafka-go/tmp-build/lib/pkgconfig"
@@ -100,7 +100,7 @@ blocks:
100100
- name: EXPECT_LINK_INFO
101101
value: dynamic
102102
commands_file: semaphore_commands.sh
103-
- name: "Go 1.19 Windows bundled librdkafka"
103+
- name: "go 1.21 Windows bundled librdkafka"
104104
dependencies: [ ]
105105
task:
106106
agent:

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Confluent's Golang client for Apache Kafka
22

3+
# v2.3.1
4+
5+
This is a maintenance release.
6+
7+
## Fixes
8+
9+
* The version of Go in go.mod has been changed from 1.17 to 1.21.
10+
This is necessary to update test dependencies with security vulnerabilities.
11+
Code using the library will still work with Go 1.17.
12+
(#1136, @rzeijde).
13+
314

415
# v2.3.0
516

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ for use with [Confluent Cloud](https://www.confluent.io/confluent-cloud/).
133133
Getting Started
134134
===============
135135

136-
Supports Go 1.17+ and librdkafka 2.2.0+.
136+
Supports Go 1.17+ and librdkafka 2.3.0+.
137137

138138
Using Go Modules
139139
----------------

examples/docker_aws_lambda_example/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module docker_example
22

33
require (
44
github.com/aws/aws-lambda-go v1.27.0
5-
github.com/confluentinc/confluent-kafka-go v1.9.0 // indirect
5+
github.com/confluentinc/confluent-kafka-go/v2 v2.3.0
66
)
77

88
go 1.14

examples/docker_aws_lambda_example/go.sum

+2,478
Large diffs are not rendered by default.

examples/go.mod

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/confluentinc/confluent-kafka-go/examples/v2
22

3-
go 1.17
3+
go 1.21
4+
5+
toolchain go1.21.0
46

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

@@ -9,23 +11,24 @@ require (
911
github.com/alecthomas/kingpin v2.2.6+incompatible
1012
github.com/confluentinc/confluent-kafka-go/v2 v2.3.0
1113
github.com/gdamore/tcell v1.4.0
12-
google.golang.org/protobuf v1.30.0
14+
google.golang.org/protobuf v1.33.0
1315
)
1416

1517
require (
1618
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
1719
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
1820
github.com/gdamore/encoding v1.0.0 // indirect
19-
github.com/golang/protobuf v1.5.3 // indirect
20-
github.com/google/uuid v1.3.0 // indirect
21+
github.com/golang/protobuf v1.5.4 // indirect
22+
github.com/google/uuid v1.6.0 // indirect
2123
github.com/heetch/avro v0.4.4 // indirect
2224
github.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0 // indirect
2325
github.com/invopop/jsonschema v0.7.0 // indirect
2426
github.com/jhump/protoreflect v1.14.1 // indirect
2527
github.com/lucasb-eyer/go-colorful v1.0.3 // indirect
26-
github.com/mattn/go-runewidth v0.0.7 // indirect
28+
github.com/mattn/go-runewidth v0.0.15 // indirect
29+
github.com/rivo/uniseg v0.2.0 // indirect
2730
github.com/santhosh-tekuri/jsonschema/v5 v5.2.0 // indirect
28-
golang.org/x/sys v0.6.0 // indirect
29-
golang.org/x/text v0.8.0 // indirect
30-
google.golang.org/genproto v0.0.0-20230331144136-dcfb400f0633 // indirect
31+
golang.org/x/sys v0.18.0 // indirect
32+
golang.org/x/text v0.14.0 // indirect
33+
google.golang.org/genproto v0.0.0-20240325203815-454cdb8f5daa // indirect
3134
)

0 commit comments

Comments
 (0)