Skip to content

Commit 3a50cb5

Browse files
committed
Updated release notes
1 parent c176a64 commit 3a50cb5

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

CHANGELOG.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,35 @@
11
Release Notes
22
====
33

4-
# 10-16-2023
4+
# 12-04-2024
5+
<a href="https://www.nuget.org/packages/dotnext/5.16.0">DotNext 5.16.0</a>
6+
* Added 7-bit encoder and decoder for unsigned integers as a public API. See `DotNext.Buffers.Binary.SevenBitEncodedInteger<T>` type.
7+
* Added `SlideToEnd` method to `SpanWriter<T>` type
8+
* Added `IsBitSet` and `SetBit` generic methods to `Number` type
9+
* Added `DetachOrCopyBuffer` to `BufferWriterSlim<T>` type
10+
11+
<a href="https://www.nuget.org/packages/dotnext.metaprogramming/5.16.0">DotNext.Metaprogramming 5.16.0</a>
12+
* Updated dependencies
13+
14+
<a href="https://www.nuget.org/packages/dotnext.unsafe/5.16.0">DotNext.Unsafe 5.16.0</a>
15+
* Updated dependencies
16+
17+
<a href="https://www.nuget.org/packages/dotnext.threading/5.16.0">DotNext.Threading 5.16.0</a>
18+
* 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.
19+
* Added support of cancellation token to synchronous acquisition methods of `AsyncExclusiveLock` and `AsyncReaderWriterLock` classes
20+
* Introduced `LinkTo` method overload that supports multiple cancellation tokens
21+
22+
<a href="https://www.nuget.org/packages/dotnext.io/5.16.0">DotNext.IO 5.16.0</a>
23+
* 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
24+
* Added extension method for `SpanWriter<byte>` that provides length-prefixed string encoding
25+
26+
<a href="https://www.nuget.org/packages/dotnext.net.cluster/5.16.0">DotNext.Net.Cluster 5.16.0</a>
27+
* Updated dependencies
28+
29+
<a href="https://www.nuget.org/packages/dotnext.aspnetcore.cluster/5.16.0">DotNext.AspNetCore.Cluster 5.16.0</a>
30+
* Updated dependencies
31+
32+
# 10-16-2024
533
<a href="https://www.nuget.org/packages/dotnext.threading/5.15.0">DotNext.Threading 5.15.0</a>
634
* 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
735
* Fixed random `InvalidOperationException` caused by `RandomAccessCache<TKey, TValue>`

0 commit comments

Comments
 (0)