Skip to content

Commit 252fcd2

Browse files
committed
Updated release notes
1 parent 7a421be commit 252fcd2

File tree

1 file changed

+27
-5
lines changed

1 file changed

+27
-5
lines changed

README.md

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,34 @@ All these things are implemented in 100% managed code on top of existing .NET AP
4444
* [NuGet Packages](https://www.nuget.org/profiles/rvsakno)
4545

4646
# What's new
47-
Release Date: 10-16-2024
47+
Release Date: 12-04-2024
4848

49-
<a href="https://www.nuget.org/packages/dotnext.threading/5.15.0">DotNext.Threading 5.15.0</a>
50-
* Added support of synchronous lock acquisition to `AsyncExclusiveLock`, `AsyncReaderWriterLock`, `AsyncManualResetEvent`, `AsyncAutoResetEvent` so the users can easily migrate step-by-step from monitors and other synchronization primitives to async-friendly primitives
51-
* Fixed random `InvalidOperationException` caused by `RandomAccessCache<TKey, TValue>`
52-
* Added synchronous methods to `RandomAccessCache<TKey, TValue>` to support [251](https://github.com/dotnet/dotNext/issues/251) feature request
49+
<a href="https://www.nuget.org/packages/dotnext/5.16.0">DotNext 5.16.0</a>
50+
* Added 7-bit encoder and decoder for unsigned integers as a public API. See `DotNext.Buffers.Binary.SevenBitEncodedInteger<T>` type.
51+
* Added `SlideToEnd` method to `SpanWriter<T>` type
52+
* Added `IsBitSet` and `SetBit` generic methods to `Number` type
53+
* Added `DetachOrCopyBuffer` to `BufferWriterSlim<T>` type
54+
55+
<a href="https://www.nuget.org/packages/dotnext.metaprogramming/5.16.0">DotNext.Metaprogramming 5.16.0</a>
56+
* Updated dependencies
57+
58+
<a href="https://www.nuget.org/packages/dotnext.unsafe/5.16.0">DotNext.Unsafe 5.16.0</a>
59+
* Updated dependencies
60+
61+
<a href="https://www.nuget.org/packages/dotnext.threading/5.16.0">DotNext.Threading 5.16.0</a>
62+
* Async locks with synchronous acquisition methods now throw [LockRecursionException](https://learn.microsoft.com/en-us/dotnet/api/system.threading.lockrecursionexception) if the current thread tries to acquire the lock synchronously and recursively.
63+
* Added support of cancellation token to synchronous acquisition methods of `AsyncExclusiveLock` and `AsyncReaderWriterLock` classes
64+
* Introduced `LinkTo` method overload that supports multiple cancellation tokens
65+
66+
<a href="https://www.nuget.org/packages/dotnext.io/5.16.0">DotNext.IO 5.16.0</a>
67+
* Introduced `RandomAccessStream` class that represents [Stream](https://learn.microsoft.com/en-us/dotnet/api/system.io.stream) wrapper over the underlying data storage that supports random access pattern
68+
* Added extension method for `SpanWriter<byte>` that provides length-prefixed string encoding
69+
70+
<a href="https://www.nuget.org/packages/dotnext.net.cluster/5.16.0">DotNext.Net.Cluster 5.16.0</a>
71+
* Updated dependencies
72+
73+
<a href="https://www.nuget.org/packages/dotnext.aspnetcore.cluster/5.16.0">DotNext.AspNetCore.Cluster 5.16.0</a>
74+
* Updated dependencies
5375

5476
Changelog for previous versions located [here](./CHANGELOG.md).
5577

0 commit comments

Comments
 (0)