Releases: kurrent-io/KurrentDB-Client-Go
Releases · kurrent-io/KurrentDB-Client-Go
v1.0.0
What's Changed
Rebranding
We have officially rebranded EventStoreDB to KurrentDB. As part of this transition:
- Functions and imports now use
kurrentdb
instead 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{},
}