This is an automated email from the ASF dual-hosted git repository.

rxl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-client-go.git


The following commit(s) were added to refs/heads/master by this push:
     new 9ecebb1  add 0.9.0 release changelog (#804)
9ecebb1 is described below

commit 9ecebb1cf92587d58bbd1ea526a92314e0dc3d91
Author: Rui Fu <freez...@users.noreply.github.com>
AuthorDate: Thu Sep 29 11:24:59 2022 +0800

    add 0.9.0 release changelog (#804)
---
 CHANGELOG.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 VERSION      |  2 +-
 stable.txt   |  2 +-
 3 files changed, 50 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2e0c97d..e68f59b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -23,6 +23,54 @@
 
 All notable changes to this project will be documented in this file.
 
+[0.9.0] 2022-07-07
+
+## Feature
+* Add TableView support, see 
[PR-743](https://github.com/apache/pulsar-client-go/pull/743)
+* Support ack response for Go SDK, see 
[PR-776](https://github.com/apache/pulsar-client-go/pull/776)
+* Add basic authentication, see 
[PR-778](https://github.com/apache/pulsar-client-go/pull/778)
+* Support multiple schema version for producer and consumer, see 
[PR-611](https://github.com/apache/pulsar-client-go/pull/611)
+* Add schema support to Reader, see 
[PR-741](https://github.com/apache/pulsar-client-go/pull/741)
+
+## Improve
+* Add consumer seek by time on partitioned topic, see 
[PR-782](https://github.com/apache/pulsar-client-go/pull/782)
+* Fix using closed connection in consumer, see 
[PR-785](https://github.com/apache/pulsar-client-go/pull/785)
+* Add go 1.18 to the test matrix, see 
[PR-790](https://github.com/apache/pulsar-client-go/pull/790)
+* Schema creation and validation functions without panic, see 
[PR-794](https://github.com/apache/pulsar-client-go/pull/794)
+* Fix ack request not set requestId when enable AckWithResponse option, see 
[PR-780](https://github.com/apache/pulsar-client-go/pull/780)
+* Fix nil pointer dereference in TopicNameWithoutPartitionPart, see 
[PR-734](https://github.com/apache/pulsar-client-go/pull/734)
+* Add error response for Ack func, see 
[PR-775](https://github.com/apache/pulsar-client-go/pull/775)
+* Fix sequenceID is not equal to cause the connection to be closed 
incorrectly, see [PR-774](https://github.com/apache/pulsar-client-go/pull/774)
+* Add consumer state check when request commands, see 
[PR-772](https://github.com/apache/pulsar-client-go/pull/772)
+* Fix panic caused by flushing current batch with an incorrect internal 
function, see [PR-750](https://github.com/apache/pulsar-client-go/pull/750)
+* Fix deadlock in Producer Send when message fails to encode, see 
[PR-762](https://github.com/apache/pulsar-client-go/pull/762)
+* Add `-c/--max-connections` parameter to pulsar-perf-go and set it to 1 by 
default, see [PR-765](https://github.com/apache/pulsar-client-go/pull/765)
+* Fix producer unable register when cnx closed, see 
[PR-761](https://github.com/apache/pulsar-client-go/pull/761)
+* Fix annotation typo in `consumer.go`, see 
[PR-758](https://github.com/apache/pulsar-client-go/pull/758)
+* Dlq producer on topic with schema, see 
[PR-723](https://github.com/apache/pulsar-client-go/pull/723)
+* Add service not ready check, see 
[PR-757](https://github.com/apache/pulsar-client-go/pull/757)
+* Fix ack timeout cause reconnect, see 
[PR-756](https://github.com/apache/pulsar-client-go/pull/756)
+* Cleanup topics after unit tests, see 
[PR-755](https://github.com/apache/pulsar-client-go/pull/755)
+* Allow config reader subscription name, see 
[PR-754](https://github.com/apache/pulsar-client-go/pull/754)
+* Exposing broker metadata, see 
[PR-745](https://github.com/apache/pulsar-client-go/pull/745)
+* Make go version consistent, see 
[PR-751](https://github.com/apache/pulsar-client-go/pull/751)
+* Temporarily point ci to pulsar 2.8.2, see 
[PR-747](https://github.com/apache/pulsar-client-go/pull/747)
+* Upgrade klauspost/compress to v1.14.4, see 
[PR-740](https://github.com/apache/pulsar-client-go/pull/740)
+* Stop ticker when create producer failed, see 
[PR-730](https://github.com/apache/pulsar-client-go/pull/730)
+
+## New Contributors
+* @NaraLuwan made their first contribution in 
https://github.com/apache/pulsar-client-go/pull/730
+* @shubham1172 made their first contribution in 
https://github.com/apache/pulsar-client-go/pull/735
+* @nicoloboschi made their first contribution in 
https://github.com/apache/pulsar-client-go/pull/738
+* @ZiyaoWei made their first contribution in 
https://github.com/apache/pulsar-client-go/pull/741
+* @nodece made their first contribution in 
https://github.com/apache/pulsar-client-go/pull/757
+* @lhotari made their first contribution in 
https://github.com/apache/pulsar-client-go/pull/765
+* @samuelhewitt made their first contribution in 
https://github.com/apache/pulsar-client-go/pull/762
+* @shileiyu made their first contribution in 
https://github.com/apache/pulsar-client-go/pull/750
+* @hantmac made their first contribution in 
https://github.com/apache/pulsar-client-go/pull/734
+* @liushengzhong0927 made their first contribution in 
https://github.com/apache/pulsar-client-go/pull/780
+* @oryx2 made their first contribution in 
https://github.com/apache/pulsar-client-go/pull/611
+
 [0.8.1] 2022-03-08
 
 ## What's Changed
diff --git a/VERSION b/VERSION
index c12365b..f6fadb2 100644
--- a/VERSION
+++ b/VERSION
@@ -1,3 +1,3 @@
 // This version number refers to the currently released version number
 // Please fix the version when release.
-v0.8.0
+v0.9.0
diff --git a/stable.txt b/stable.txt
index aff2506..d9c4fc3 100644
--- a/stable.txt
+++ b/stable.txt
@@ -1,3 +1,3 @@
 // This version number refers to the current stable version, generally is 
`VERSION - 1`.
 // Please fix the version when release.
-v0.8.0
+v0.9.0

Reply via email to