File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1+ - Feat: ` Writer.DisposeAsync() ` waits for all in-flight messages to complete.
2+ - Feat: ` Reader.DisposeAsync() ` waits for all pending commits to be completed.
3+ - ** Breaking Change** : ` IReader ` now implements ` IAsyncDisposable ` instead of ` IDisposable ` .
4+ This change requires updates to code that disposes ` IReader ` instances. Use ` await using ` instead of ` using ` .
15- ** Breaking Change** : ` IWriter ` now implements ` IAsyncDisposable ` instead of ` IDisposable ` .
26 This change requires updates to code that disposes ` IWriter ` instances. Use ` await using ` instead of ` using ` .
37- Topic ` Reader ` & ` Writer ` : update auth token in bidirectional stream.
48
59## v0.14.1
10+
611- Fixed bug: public key presented not for certificate signature.
712- Fixed: YdbDataReader does not throw YdbException when CloseAsync is called for UPDATE/INSERT statements with no
813 result.
Original file line number Diff line number Diff line change @@ -932,7 +932,7 @@ public async Task DisposeAsync_WhenInFlightMessages_WaitingInFlightMessages()
932932 ( await Assert . ThrowsAsync < WriterException > ( ( ) => writer . WriteAsync ( 12 ) ) ) . Message ) ;
933933
934934 await disposedTask ;
935-
935+
936936 // idempotent
937937 await writer . DisposeAsync ( ) ;
938938 }
You can’t perform that action at this time.
0 commit comments