v0.15.0
- Dev: added
ValueTask<string?> GetAuthInfoAsync()
in ICredentialProvider. - Feat:
Writer.DisposeAsync()
waits for all in-flight messages to complete. - Feat:
Reader.DisposeAsync()
waits for all pending commits to be completed. - Breaking Change:
IReader
now implementsIAsyncDisposable
instead ofIDisposable
.
This change requires updates to code that disposesIReader
instances. Useawait using
instead ofusing
. - Breaking Change:
IWriter
now implementsIAsyncDisposable
instead ofIDisposable
.
This change requires updates to code that disposesIWriter
instances. Useawait using
instead ofusing
. - Topic
Reader
&Writer
: update auth token in bidirectional stream.
Full Changelog: v0.14.1...v0.15.0