Skip to content

Commit 0e86e8b

Browse files
authored
Update docs and errors for v2.5.4 (#1301)
1 parent 27d635d commit 0e86e8b

File tree

9 files changed

+481
-518
lines changed

9 files changed

+481
-518
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ v2.5.4 is a maintenance release with the following fixes and enhancements:
1111
* Handle primitives in avrov2 library
1212
* Allow RuleRegistry to be set in serdes
1313

14+
confluent-kafka-go is based on librdkafka v2.5.3, see the
15+
[librdkafka v2.5.3 release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.5.3)
16+
for a complete list of changes, enhancements, fixes and upgrade considerations.
17+
18+
1419
## v2.5.3
1520

1621
v2.5.3 is a maintenance release with the following fixes and enhancements:
@@ -32,6 +37,7 @@ for a complete list of changes, enhancements, fixes and upgrade considerations.
3237

3338
There were no v2.5.1 or v2.5.2 releases.
3439

40+
3541
# v2.5.0
3642

3743
> [!WARNING]

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/v2 v2.5.3
5+
github.com/confluentinc/confluent-kafka-go/v2 v2.5.4
66
)
77

88
go 1.21

examples/go.mod

+1-1
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.5.3
12+
github.com/confluentinc/confluent-kafka-go/v2 v2.5.4
1313
github.com/gdamore/tcell v1.4.0
1414
google.golang.org/protobuf v1.33.0
1515
)

kafka/api.html

+307-307
Large diffs are not rendered by default.

kafka/generated_errors.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package kafka
22

33
// Copyright 2016-2024 Confluent Inc.
4-
// AUTOMATICALLY GENERATED ON 2024-09-02 16:16:32.144950005 +0530 IST m=+0.000136202 USING librdkafka 2.5.3
4+
// AUTOMATICALLY GENERATED ON 2024-09-24 09:39:38.47614636 +0530 IST m=+0.000123498 USING librdkafka 2.5.3
55

66
/*
77
#include "select_rdkafka.h"

kafkatest/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replace github.com/confluentinc/confluent-kafka-go/v2 => ../
88

99
require (
1010
github.com/alecthomas/kingpin v2.2.6+incompatible
11-
github.com/confluentinc/confluent-kafka-go/v2 v2.5.3
11+
github.com/confluentinc/confluent-kafka-go/v2 v2.5.4
1212
)
1313

1414
require (

mk/doc-gen.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def convert_path(url, base_url, after):
2424
sys.exit(1)
2525
package = sys.argv[1]
2626

27-
tag = "v2.5.3"
27+
tag = "v2.5.4"
2828
major = tag.split(".")[0] # e.g. v2
2929
base_css = "https://go.dev/css"
3030
base_js = "https://go.dev/js"

schemaregistry/api.html

+162-205
Large diffs are not rendered by default.

soaktest/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replace github.com/confluentinc/confluent-kafka-go/v2 => ../
88

99
require (
1010
github.com/DataDog/datadog-go v4.8.3+incompatible
11-
github.com/confluentinc/confluent-kafka-go/v2 v2.5.3
11+
github.com/confluentinc/confluent-kafka-go/v2 v2.5.4
1212
github.com/shirou/gopsutil v3.21.11+incompatible
1313
)
1414

0 commit comments

Comments
 (0)