diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e8ab869c..de549908d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +* Removed `experimental` from coordination API * Added `WithReaderLogContext`, `WithWriterLogContext` options to topic reader/writer to supply log entries with user context fields ## v3.108.3 diff --git a/coordination/client.go b/coordination/client.go index b0ff0c011..5de254654 100644 --- a/coordination/client.go +++ b/coordination/client.go @@ -25,8 +25,6 @@ type Client interface { // - call Close on the Session, // - close the Client which the session was created with, // - call any method of the Session until the ErrSessionClosed is returned. - // - // Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental Session(ctx context.Context, path string, opts ...options.SessionOption) (Session, error) }