Skip to content

Releases: kurrent-io/KurrentDB-Client-Go

v1.0.0

31 Mar 17:01
654f0cf
Compare
Choose a tag to compare

What's Changed

Rebranding

We have officially rebranded EventStoreDB to KurrentDB. As part of this transition:

  • Functions and imports now use kurrentdb instead of esdb.
  • 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{},
}