Skip to content

Commit 03bec28

Browse files
authored
CHANGELOG and api documentation changes for v2.3.0-RC3 (#1083)
* CHANGELOG * API changes * Fix changelog
1 parent 473cf2e commit 03bec28

File tree

3 files changed

+834
-207
lines changed

3 files changed

+834
-207
lines changed

CHANGELOG.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,24 @@
55

66
This is a feature release.
77

8-
* Add support for AdminAPI `DescribeCluster()` and `DescribeTopics()`
8+
* Adds support for AdminAPI `DescribeCluster()` and `DescribeTopics()`
99
(#964, @jainruchir).
1010
* [KIP-430](https://cwiki.apache.org/confluence/display/KAFKA/KIP-430+-+Return+Authorized+Operations+in+Describe+Responses):
1111
Return authorized operations in Describe Responses.
1212
(#964, @jainruchir).
13-
* Add `Rack` to the `Node` type, so AdminAPI calls can expose racks for brokers
13+
* Adds `Rack` to the `Node` type, so AdminAPI calls can expose racks for brokers
1414
(currently, all Describe Responses) (#964, @jainruchir).
15+
* [KIP-396](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=97551484): completed the implementation with
16+
the addition of ListOffsets (#1029).
17+
* Adds cache for Schema Registry client's `GetSchemaMetadata` (#1042).
1518
* MockCluster can now be shutdown and started again to test broker
1619
availability problems (#998, @kkoehler).
1720
* Adds `CreateTopic` method to the MockCluster. (#1047, @mimikwang).
21+
* Honor `HTTPS_PROXY` environment variable, if set, for the Schema Registry
22+
client (#1065, @finncolman).
23+
* [KIP-516](https://cwiki.apache.org/confluence/display/KAFKA/KIP-516%3A+Topic+Identifiers):
24+
Partial support of topic identifiers. Topic identifiers in metadata response
25+
are available through the new `DescribeTopics` function (#1068).
1826

1927
## Fixes
2028

@@ -23,19 +31,20 @@ This is a feature release.
2331
* The minimum version of Go supported has been changed from 1.16 to 1.17
2432
(#1074).
2533
* Fixes an issue where `testing` was being imported by a non-test file,
26-
testhelpers.go. (@dmlambea, #1049).
27-
* Fix: `Coordinator` field in `ConsumerGroupDescription` is optional, in case
28-
it's not known, and contains a `Node` with ID -1 if not known.
34+
testhelpers.go. (#1049, @dmlambea).
35+
* Fixes the optional `Coordinator` field in `ConsumerGroupDescription` in case
36+
it's not known. It now contains a `Node` with ID -1 in that case.
2937
Avoids a C segmentation fault.
3038
* Fixes an issue with `Producer.Flush`. It was waiting for
3139
`queue.buffering.max.ms` while flushing (#1013).
40+
* Fixes an issue where consumer methods would not be allowed to run while the
41+
consumer was closing, and during the final partition revoke (#1073).
3242

3343
confluent-kafka-go is based on librdkafka v2.3.0, see the
3444
[librdkafka v2.3.0 release notes](https://github.com/confluentinc/librdkafka/releases/tag/v2.3.0-RC3)
3545
for a complete list of changes, enhancements, fixes and upgrade considerations.
3646

3747

38-
3948
# v2.2.0
4049

4150
This is a feature release.

0 commit comments

Comments
 (0)