Skip to content

Commit 1d11f0a

Browse files
authored
Import v2.8.0 RC1 (#1375)
2 parents 40deae5 + 9112246 commit 1d11f0a

27 files changed

+427
-377
lines changed

.semaphore/semaphore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ agent:
66
global_job_config:
77
env_vars:
88
- name: LIBRDKAFKA_VERSION
9-
value: v2.6.1
9+
value: v2.8.0-RC1
1010
prologue:
1111
commands:
1212
- checkout

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Confluent's Golang client for Apache Kafka
22

3+
## v2.8.0
4+
5+
This is a feature release:
6+
7+
confluent-kafka-go is based on librdkafka v2.8.0, see the
8+
[librdkafka v2.8.0 release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.8.0)
9+
for a complete list of changes, enhancements, fixes and upgrade considerations.
10+
11+
There was no v2.7.0 release.
12+
13+
314
## v2.6.1
415

516
This is a maintenance release:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ for use with [Confluent Cloud](https://www.confluent.io/confluent-cloud/).
137137
Getting Started
138138
===============
139139

140-
Supports Go 1.17+ and librdkafka 2.6.1+.
140+
Supports Go 1.17+ and librdkafka 2.8.0+.
141141

142142
Using Go Modules
143143
----------------

examples/docker_aws_lambda_example/go.mod

Lines changed: 1 addition & 1 deletion
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/v2 v2.6.1
5+
github.com/confluentinc/confluent-kafka-go/v2 v2.8.0-RC1
66
)
77

88
go 1.21

examples/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ replace github.com/confluentinc/confluent-kafka-go/v2 => ../
99
require (
1010
github.com/actgardner/gogen-avro/v10 v10.2.1
1111
github.com/alecthomas/kingpin v2.2.6+incompatible
12-
github.com/confluentinc/confluent-kafka-go/v2 v2.6.1
12+
github.com/confluentinc/confluent-kafka-go/v2 v2.8.0-RC1
1313
github.com/gdamore/tcell v1.4.0
1414
google.golang.org/protobuf v1.33.0
1515
)

kafka/00version.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ import (
3232
#define MIN_RD_KAFKA_VERSION 0x02060100
3333
3434
#ifdef __APPLE__
35-
#define MIN_VER_ERRSTR "confluent-kafka-go requires librdkafka v2.6.1 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
35+
#define MIN_VER_ERRSTR "confluent-kafka-go requires librdkafka v2.8.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
3636
#else
37-
#define MIN_VER_ERRSTR "confluent-kafka-go requires librdkafka v2.6.1 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
37+
#define MIN_VER_ERRSTR "confluent-kafka-go requires librdkafka v2.8.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
3838
#endif
3939
4040
#if RD_KAFKA_VERSION < MIN_RD_KAFKA_VERSION
4141
#ifdef __APPLE__
42-
#error "confluent-kafka-go requires librdkafka v2.6.1 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
42+
#error "confluent-kafka-go requires librdkafka v2.8.0 or later. Install the latest version of librdkafka from Homebrew by running `brew install librdkafka` or `brew upgrade librdkafka`"
4343
#else
44-
#error "confluent-kafka-go requires librdkafka v2.6.1 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
44+
#error "confluent-kafka-go requires librdkafka v2.8.0 or later. Install the latest version of librdkafka from the Confluent repositories, see http://docs.confluent.io/current/installation.html"
4545
#endif
4646
#endif
4747
*/

kafka/api.html

Lines changed: 322 additions & 322 deletions
Large diffs are not rendered by default.

kafka/build_darwin_amd64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ package kafka
1010
import "C"
1111

1212
// LibrdkafkaLinkInfo explains how librdkafka was linked to the Go client
13-
const LibrdkafkaLinkInfo = "static darwin_amd64 from librdkafka-static-bundle-v2.6.1.tgz"
13+
const LibrdkafkaLinkInfo = "static darwin_amd64 from librdkafka-static-bundle-v2.8.0-RC1.tgz"

kafka/build_darwin_arm64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ package kafka
1010
import "C"
1111

1212
// LibrdkafkaLinkInfo explains how librdkafka was linked to the Go client
13-
const LibrdkafkaLinkInfo = "static darwin_arm64 from librdkafka-static-bundle-v2.6.1.tgz"
13+
const LibrdkafkaLinkInfo = "static darwin_arm64 from librdkafka-static-bundle-v2.8.0-RC1.tgz"

kafka/build_glibc_linux_amd64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ package kafka
1010
import "C"
1111

1212
// LibrdkafkaLinkInfo explains how librdkafka was linked to the Go client
13-
const LibrdkafkaLinkInfo = "static glibc_linux_amd64 from librdkafka-static-bundle-v2.6.1.tgz"
13+
const LibrdkafkaLinkInfo = "static glibc_linux_amd64 from librdkafka-static-bundle-v2.8.0-RC1.tgz"

0 commit comments

Comments
 (0)