Skip to content

Releases: apache/rocketmq-client-go

rocketmq-client-go-2.1.0-rc4

02 Jun 08:53
09c1624
Compare
Choose a tag to compare
Pre-release

The main goal of this release is to improve stability, usability, and fix bugs and the source code of this release is the copy of the master which has merged from the native branch.

New Feature

  • [ISSUE #457] feat(nameserver): support name server resolver.

Improvement

Bug

  • [ISSUE #472] fix(heartbeat): the value of the message mode, type, and the consume flag is wrong in the heartbeat data.
  • [ISSUE #495] set default of SendResult.Status and fix panic

rocketmq-client-go-2.1.0-rc3

28 Apr 09:25
ef5bda6
Compare
Choose a tag to compare
Pre-release

The main goal of this release is to improve stability, usability, and fix bugs and the source code of this release is the copy of the master which has merged from the native branch.

New Feature

  • [ISSUE #457] feat(nameserver): support name server resolver.

Improvement

  • [ISSUE #474] feat(trace): support name server resolver in TraceConfig.

Bug

  • [ISSUE #472] fix(heartbeat): the value of the message mode, type, and the consume flag is wrong in the heartbeat data.

rocketmq-client-go-2.1.0-rc2

27 Apr 06:40
ef5bda6
Compare
Choose a tag to compare
Pre-release

The main goal of this release is to improve stability, usability, and fix bugs and the source code of this release is the copy of the master which has merged from the native branch.

New Feature

  • [ISSUE #457] feat(nameserver): support name server resolver.

Improvement

  • [ISSUE #474] feat(trace): support name server resolver in TraceConfig.

Bug

  • [ISSUE #472] fix(heartbeat): the value of the message mode, type, and the consume flag is wrong in the heartbeat data.

rocketmq-client-go-2.1.0-rc1

26 Apr 12:07
17a373f
Compare
Choose a tag to compare
Pre-release

The main goal of this release is to improve stability, usability, and fix bugs.

New Feature

  • [ISSUE #457] feat(nameserver): support name server resolver.

Bug

  • [ISSUE #472] fix(heartbeat): the value of the message mode, type, and the consume flag is wrong in the heartbeat data.

rocketmq-client-go-2.0.0

31 Mar 13:05
be57995
Compare
Choose a tag to compare

This is the first product ready RocketMQ Client in pure go, it supports almost the full features of Apache RocketMQ, such as pub and sub messages, ACL, tracing and so on.

New Feature

Improvement

  • [ISSUE #438] Add WithNameServerDomain for producer opt . 

Bug

  • [ISSUE #437] Fix the issue that can not consume the messages in the retry topic .
  • [ISSUE #442] Change consume type to avoid fastjson decode error in lower broker version .
  • [ISSUE #445] UpdateNameServerAddress shoule be called before producer start to avoid to lead to a panic.
  • [ISSUE #449] Correct msgid using unique id .
  • [ISSUE-#450]   Ignore eof error when conn closed.
  • [ISSUE #462] Fix the trace message was send failed.

rocketmq-client-go-2.0.0-rc2

28 Feb 13:17
2af5495
Compare
Choose a tag to compare
Pre-release

The main goal of this release is to improve stability, usability, and fix bugs. meantime, this release update the package version to v2.

New Feature

  • ISSUE #378 chore(doc): update notice and open statistic label.
  • ISSUE #385 feat(mod): update go mod to support v2.
  • ISSUE #416 feat(producer): auto create topic support in the producer.
  • ISSUE #420 feat(strategy): sort the message queue list with ASC when do rebalance.

Improvement

  • ISSUE #403 refactor(consumer): remove retry topic check when consumer start. 
  • ISSUE #406 refactor(nameserver): refactor the implement of UpdateTopicRouteInfo function.
  • ISSUE #408 feat(buffer): reuse bytes.Buffer in message ID creating.
  • ISSUE #414 fix(consumer): use sync method to upload offset instead async method.

Bug

  • ISSUE #387 fix(consumer): cocorrect the consume type when get runtime info from broker.
  • ISSUE #390 fix(consumer): move updatePullFromWhichNode ahead of result check.
  • ISSUE #393 fix(consumer): should not lock all message queues when push comsumer start.
  • ISSUE #396 fix(core): unalign field panic in the atomic operation .
  • ISSUE #418 fix(consumer): subinfo is updated failed when the message queues are scale out.
  • ISSUE #422 chore(travisci): use archive server to avoid download rocketmq package failed .
  • ISSUE #429 fix(consumer): the brokerName is not found when the broker recover from machine crash.
  • ISSUE #436 fix(producer): update name server address immediately when client start.

rocketmq-client-go-2.0.0-rc1

08 Jan 05:38
Compare
Choose a tag to compare
Pre-release

The main goal of this release is to improve stability, usability, and fix bugs. meantime, this release supports some new features like namesrv domain, batch message send, panic handler.

New Feature

Improvement

Bug

Document and code style improvement

rocketmq-client-go-2.0.0-alpha3

28 Nov 09:34
757420d
Compare
Choose a tag to compare
Pre-release

The main goal of this release is to improve stability, usability, and fix bugs. meantime, this release supports some new features like delay messages, transaction producer, namespace, etc.

New Feature

Improvement

  • [ISSUE-120]: update defaultConsumer.client init AND add push_consumer testing
  • [ISSUE-128]: update mockgen command line
  • [ISSUE-130]: add Shutdown of PushConsumer
  • [ISSUE-134]: unify interceptor usage
  • [ISSUE-139]: add locker for updating data
  • [ISSUE-148]: add consume/statistic.go unit test
  • [ISSUE-176]: add ctx to rmqClient & remoteClient
  • [ISSUE-178]: add ut for defaultConsumer
  • [ISSUE-180]: add tag filter example.
  • [ISSUE-188]: fix consumer example & remove extra file
  • [ISSUE-190]: modify some code to be more elegant.
  • [ISSUE-192]: refactor MessageSelector
  • [ISSUE-194]: fix: avoid extra err info when pushConsumer startup
  • [ISSUE-195]: fix the domain checker was rollback before
  • [ISSUE-201]: change default consumer option to Clustering
  • [ISSUE-243]: fix: replace consistent package
  • [ISSUE-252]: reduce receive memory usage
  • [ISSUE-259]: graceful shutdown pc locker
  • [ISSUE-304]: use Atomic-Bool

Bug

  • [ISSUE-120]: add broadcast consumer examples
  • [ISSUE-120]: update strategy and add offset_store test
  • [ISSUE-135]: fix bufio.Scanner token too long error
  • [ISSUE-144]: fix nil pointer when file not exist
  • [ISSUE-164]: add UnCompress function implementation
  • [ISSUE-166]: make Access Message.Properties thread safety
  • [ISSUE-173]: fix namesrv rr bug and remove extra code.
  • [ISSUE-183]: add set consumeMessageBatchMaxSize and fixed count++ skip one message
  • [ISSUE-184]: fix errors of using internal codes in the exported snippet
  • [ISSUE-186]: fix offsetSotre
  • [ISSUE-194]: consumerGroup cannot auto create
  • [ISSUE-202]: fix: support acl for trace
  • [ISSUE-211]: fix unmarhsal messageID bug
  • [ISSUE-221]: fix: avoid file not found err when remove old offset file
  • [ISSUE-234]: fix: support multiple consumer&producer
  • [ISSUE-271]: fix bugs that can't consume multiple topics in single consumer
  • [ISSUE-281]: fix SearchOffsetByTimestamp protocol bug
  • [ISSUE-285]: goroutine leak when shutdown
  • [ISSUE-293]: optimize Close of rmqClient
  • [ISSUE-299]: offset store read missing fallthrough for _ReadMemoryThenStore

Document and code style improvement

rocketmq-client-go-1.2.4

22 Oct 12:44
6bb5243
Compare
Choose a tag to compare

The main goal of this release is to support some new features, e.g. send an orderly message by sharing key and send transaction messages.

Feature

  • [PR-222] - feat(producer): support lite producer to send message by sharding key 
  • [PR-225] - feat(consumer): add set max cachesize api to support simple flow-control 
  • [PR-261] - feat(transaction): add transaction producer message

Improvement

  • [PR-251] - delete useless GroupName and make subscribe method correct

Bug

  • [PR-246] - fix(travis):remove unnecessary script in travis.yml 
  • [PR-248] - fix(golint): fix warnings for golint check

rocketmq-client-go-1.2.2

21 Sep 11:39
Compare
Choose a tag to compare
Pre-release

This release is for the Golang client of Apache RocketMQ. It is based on the kernel of the CPP client and uses cgo to encapsulate the API Implementation of C.
The current version provides the following functions:

  1. support orderly sending of messages by sharding key;
  2. create some simply demos;
  3. deprecate pull consuming model;