Skip to content

Commit 9bb4e94

Browse files
Update CHANGELOG.md
1 parent 0eb74de commit 9bb4e94

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
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.

src/Ydb.Sdk/tests/Topic/WriterUnitTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)