Skip to content

Commit

Permalink
Update changelog and make changes for release (#975)
Browse files Browse the repository at this point in the history
  • Loading branch information
milindl authored Apr 5, 2023
1 parent 9af5f2b commit 2240284
Show file tree
Hide file tree
Showing 8 changed files with 4,590 additions and 97 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@
## v2.1.0

* Added Consumer `SeekPartitions()` method to seek multiple partitions at
once and deprecated `Seek()`.
once and deprecated `Seek()` (#940).
* [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).
* The minimum version of Go supported has been changed from 1.14 to 1.16
(#973).
* Add validation on the Producer, the Consumer and the AdminClient to prevent
panic when they are used after close (#901).
* Fix bug causing schema-registry URL with existing path to not be parsed
correctly (#950).
* Support for Offset types on `Offset.Set()` (#962, @jdockerty).
* Added example for using [rebalance callback with manual commit](examples/consumer_rebalance_example).


confluent-kafka-go is based on librdkafka v2.1.0, see the
Expand Down Expand Up @@ -47,7 +54,6 @@ This is a feature release:
* Added `SetRoundtripDuration` to the mock broker for setting RTT delay for
a given mock broker (@kkoehler, #892).
* Built-in support for Linux/ arm64. (#933).
* Support for Offset types on `Offset.Set()`

### Fixes

Expand Down
94 changes: 48 additions & 46 deletions kafka/api.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion kafka/generated_errors.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package kafka

// Copyright 2016-2023 Confluent Inc.
// AUTOMATICALLY GENERATED ON 2023-04-04 11:36:56.159974473 +0200 CEST m=+0.000312854 USING librdkafka 2.1.0-RC3
// AUTOMATICALLY GENERATED ON 2023-04-05 14:41:19.963281797 +0530 IST m=+0.000075103 USING librdkafka 2.1.0-RC3

/*
#include "select_rdkafka.h"
Expand Down
1 change: 0 additions & 1 deletion kafkatest/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ replace github.com/confluentinc/confluent-kafka-go/v2 => ../

require (
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
)
2,295 changes: 2,275 additions & 20 deletions kafkatest/go.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions schemaregistry/api.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<script defer="" src="https://go.dev/js/jquery.js">
</script>
<script>
var goVersion = "go1.18.2";
var goVersion = "go1.18.5";
</script>
<script defer="" src="https://go.dev/js/godocs.js">
</script>
Expand Down Expand Up @@ -564,7 +564,7 @@ <h3 id="SchemaMetadata.UnmarshalJSON">
UnmarshalJSON implements the json.Unmarshaller interface
</p>
<div id="footer">
Build version go1.18.2.
Build version go1.18.5.
<br/>
Except as
<a href="https://developers.google.com/site-policies#restrictions">
Expand Down
2 changes: 0 additions & 2 deletions soaktest/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ require (
github.com/Microsoft/go-winio v0.6.0 // indirect
github.com/confluentinc/confluent-kafka-go/v2 v2.1.0
github.com/shirou/gopsutil v3.21.11+incompatible
github.com/stretchr/testify v1.8.1 // indirect
github.com/tklauser/go-sysconf v0.3.11 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/sys v0.4.0 // indirect
)
2,277 changes: 2,255 additions & 22 deletions soaktest/go.sum

Large diffs are not rendered by default.

0 comments on commit 2240284

Please sign in to comment.