Skip to content

Releases: rabbitmq/rabbitmq-stream-go-client

v1.4.10

27 Sep 09:06
v1.4.10
9318b94
Compare
Choose a tag to compare

What's Changed

Enhancements

Full Changelog: v1.4.9...v1.4.10

v1.4.9

26 Aug 08:21
v1.4.9
ad04b60
Compare
Choose a tag to compare

What's Changed

Bug Fixes

New Contributors

Full Changelog: v1.4.8...v1.4.9

v1.4.8

07 Aug 14:35
v1.4.8
af9077d
Compare
Choose a tag to compare

What's Changed

Bug Fixes

  • Check version when serverProperties is not empty and < 3.11.0 by @Gsantomaggio in #345

Full Changelog: v1.4.7...v1.4.8

v1.4.7

29 Jul 08:47
v1.4.7
e4f6b06
Compare
Choose a tag to compare

What's Changed

Enhancements

Bug Fixes

Documentation

New Contributors

Full Changelog: v1.4.6...v1.4.7

v1.4.6

26 Jun 14:36
1e03806
Compare
Choose a tag to compare

Milestone

Enhancements

Deprecation

  • Deprecate LastConsumed method by @Gsantomaggio in #324
    The method does not indicate the last message consumed of the stream but the last stored offset.
    The method was added to help the user but created confusion. env.QueryOffset(consumerName, streamName) should be used,
    like:
offset, err := env.QueryOffset(consumerName, streamName) 

/// you may need to do offset+1 to restart from the next message
consumer, err := env.NewConsumer(streamName, handleMessages, stream.
	NewConsumerOptions().
	SetManualCommit().
	SetOffset(stream.OffsetSpecification{}.Offset(offset)).SetConsumerName(consName),
)

Full Changelog: v1.4.5...v1.4.6

v.1.4.5

13 Jun 07:05
20110d8
Compare
Choose a tag to compare

Milestone

Enhancements

Bug Fixes

Full Changelog: v1.4.4...v1.4.5

v1.4.4

04 Jun 07:36
202c881
Compare
Choose a tag to compare

Milestone

Bug Fixes

Full Changelog: v1.4.3...v1.4.4

v1.4.3

24 May 07:25
77deb9d
Compare
Choose a tag to compare

Milestone

Enhancements

Deprecation

environment.StreamStats.LastOffset() is now deprecated.
The method name may be misleading. It does not indicate the last offset of the stream. It indicates the last uncommitted chunk id. This information is not necessary. The user should use CommittedChunkId().

Full Changelog: v1.4.2...v1.4.3

v1.4.2

03 May 07:45
247a4f5
Compare
Choose a tag to compare

Milestone

Enhancements

Full Changelog: v1.4.1...v1.4.2

v1.4.1

16 Apr 08:49
92bfd7a
Compare
Choose a tag to compare

Milestone

Enhancements

New Contributors

Full Changelog: v1.4.0...v1.4.1