Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
MD024:
siblings_only: true
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.4.0"
".": "0.4.1"
}
30 changes: 30 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## [0.4.1](https://github.com/get-eventually/go-eventually/compare/v0.4.0...v0.4.1) (2026-04-22)

> **Note:** This release retracts `v0.4.0`, which was published prematurely without the `message.Stream` iterator migration. Users on v0.4.0 should upgrade to v0.4.1.

### ⚠ BREAKING CHANGES

* replace channel-based event streaming with message.Stream iterator ([#330](https://github.com/get-eventually/go-eventually/issues/330))

### Features

* **examples:** add todolist connect example exercising the new streaming API ([#331](https://github.com/get-eventually/go-eventually/issues/331)) ([492525f](https://github.com/get-eventually/go-eventually/commit/492525f904d6dc1318460c008fb100e08350ebba))
* replace channel-based event streaming with message.Stream iterator ([#330](https://github.com/get-eventually/go-eventually/issues/330)) ([a96b37a](https://github.com/get-eventually/go-eventually/commit/a96b37a9f3f683e200670c76ffc7d4338901c885))


### Bug Fixes

* **release-please:** enable bump-*-pre-major feature flags ([f8456ab](https://github.com/get-eventually/go-eventually/commit/f8456ab24d7816e29b90fa78fc76224160f51747))
* **release:** drop package-name from release-please config ([#328](https://github.com/get-eventually/go-eventually/issues/328)) ([6ae1f8e](https://github.com/get-eventually/go-eventually/commit/6ae1f8e0bc9163ff708b43df1429a1d51d2afaf1))
* rephrase docs ([1aa4425](https://github.com/get-eventually/go-eventually/commit/1aa4425ea048def137b7e62d26358b302ea1d866))


### Documentation

* **README:** add the How to Use section ([baddbb7](https://github.com/get-eventually/go-eventually/commit/baddbb7ce0e7c54c0299071793d2720e2e34405a))


### Miscellaneous

* release 0.4.1 ([f34e71c](https://github.com/get-eventually/go-eventually/commit/f34e71c6caaf4ad86537728dcb14df4459e7193c))

## [0.4.0](https://github.com/get-eventually/go-eventually/compare/v0.3.0...v0.4.0) (2026-04-21)


Expand Down
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ module github.com/get-eventually/go-eventually

go 1.26.0

// Published prematurely: missing the message.Stream iterator migration. Use v0.4.1.
retract v0.4.0

require (
github.com/golang-migrate/migrate/v4 v4.19.1
github.com/google/uuid v1.6.0
Expand Down
Loading