Releases: kurrent-io/KurrentDB-Client-Go
Releases · kurrent-io/KurrentDB-Client-Go
v1.1.1
v1.1.0
What's Changed
Changed
- Add cherry pick label workflow by @w1am in #13
- feat: add multi stream append feature by @YoEight in #10
- [DEV-647] Dynamic value mapper for event metadata by @w1am in #14
- [DEV-864] Add support for PinnedByCorrelation strategy in persistent subscription by @w1am in #19
- Refactor multi stream append to use v2 protocol by @w1am in #21
- Require plain object for metadata by @w1am in #22
Full Changelog: v1.0.1...v1.1.0
v1.0.1
v1.0.0
What's Changed
Rebranding
We have officially rebranded EventStoreDB to KurrentDB. As part of this transition:
- Functions and imports now use
kurrentdbinstead ofesdb. - The connection protocol now supports
kurrentdb.
Breaking Changes ⚠️
v1.0.0 introduces breaking changes. Ensure you address these changes to prevent application failures.
1. Move ExpectedRevision to StreamState
opts := kurrentdb.AppendToStreamOptions{
- ExpectedRevision: esdb.Any{},
+ StreamState: kurrentdb.Any{},
}