Skip to content

Commit a2527d7

Browse files
committed
Release 5.12.0
1 parent 6cd709b commit a2527d7

32 files changed

+1991
-188
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
Release Notes
22
====
33

4+
# 08-13-2024
5+
<a href="https://www.nuget.org/packages/dotnext/5.12.0">DotNext 5.12.0</a>
6+
* Added `DotNext.Runtime.ValueReference<T>` data type that allows to obtain async-friendly managed pointer to the field
7+
* Deprecation of `ConcurrentCache<TKey, TValue>` in favor of `RandomAccessCache<TKey, TValue>`
8+
9+
<a href="https://www.nuget.org/packages/dotnext.metaprogramming/5.12.0">DotNext.Metaprogramming 5.12.0</a>
10+
* Updated dependencies
11+
12+
<a href="https://www.nuget.org/packages/dotnext.unsafe/5.12.0">DotNext.Unsafe 5.12.0</a>
13+
* Updated dependencies
14+
15+
<a href="https://www.nuget.org/packages/dotnext.threading/5.12.0">DotNext.Threading 5.12.0</a>
16+
* Introduced async-friendly `RandomAccessCache<TKey, TValue>` as a replacement for deprecated `ConcurrentCache<TKey, TValue>`. It uses [SIEVE](https://cachemon.github.io/SIEVE-website/) eviction algorithm.
17+
18+
<a href="https://www.nuget.org/packages/dotnext.io/5.12.0">DotNext.IO 5.12.0</a>
19+
* Updated dependencies
20+
21+
<a href="https://www.nuget.org/packages/dotnext.net.cluster/5.12.0">DotNext.Net.Cluster 5.12.0</a>
22+
* Fixed cancellation of `PersistentState` async methods
23+
24+
<a href="https://www.nuget.org/packages/dotnext.aspnetcore.cluster/5.12.0">DotNext.AspNetCore.Cluster 5.12.0</a>
25+
* Fixed cancellation of `PersistentState` async methods
26+
427
# 08-01-2024
528
<a href="https://www.nuget.org/packages/dotnext/5.11.0">DotNext 5.11.0</a>
629
* Added `DotNext.Threading.Epoch` for epoch-based reclamation

README.md

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -44,35 +44,29 @@ 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: 08-01-2024
47+
Release Date: 08-14-2024
4848

49-
<a href="https://www.nuget.org/packages/dotnext/5.11.0">DotNext 5.11.0</a>
50-
* Added `DotNext.Threading.Epoch` for epoch-based reclamation
51-
* Fixed one-shot FNV1a hashing method
52-
* Fixed [248](https://github.com/dotnet/dotNext/issues/248)
53-
* Minor performance improvements
49+
<a href="https://www.nuget.org/packages/dotnext/5.12.0">DotNext 5.12.0</a>
50+
* Added `DotNext.Runtime.ValueReference<T>` data type that allows to obtain async-friendly managed pointer to the field
51+
* Deprecation of `ConcurrentCache<TKey, TValue>` in favor of `RandomAccessCache<TKey, TValue>`
5452

55-
<a href="https://www.nuget.org/packages/dotnext.metaprogramming/5.11.0">DotNext.Metaprogramming 5.11.0</a>
56-
* Minor performance improvements
53+
<a href="https://www.nuget.org/packages/dotnext.metaprogramming/5.12.0">DotNext.Metaprogramming 5.12.0</a>
5754
* Updated dependencies
5855

59-
<a href="https://www.nuget.org/packages/dotnext.unsafe/5.11.0">DotNext.Unsafe 5.11.0</a>
60-
* Minor performance improvements
56+
<a href="https://www.nuget.org/packages/dotnext.unsafe/5.12.0">DotNext.Unsafe 5.12.0</a>
6157
* Updated dependencies
6258

63-
<a href="https://www.nuget.org/packages/dotnext.threading/5.11.0">DotNext.Threading 5.11.0</a>
64-
* Fixed `AsyncSharedLock.Downgrade` behavior, so it can be used to release a weak lock
65-
* Updated dependencies
59+
<a href="https://www.nuget.org/packages/dotnext.threading/5.12.0">DotNext.Threading 5.12.0</a>
60+
* Introduced async-friendly `RandomAccessCache<TKey, TValue>` as a replacement for deprecated `ConcurrentCache<TKey, TValue>`. It uses [SIEVE](https://cachemon.github.io/SIEVE-website/) eviction algorithm.
6661

67-
<a href="https://www.nuget.org/packages/dotnext.io/5.11.0">DotNext.IO 5.11.0</a>
68-
* Minor performance improvements
62+
<a href="https://www.nuget.org/packages/dotnext.io/5.12.0">DotNext.IO 5.12.0</a>
6963
* Updated dependencies
7064

71-
<a href="https://www.nuget.org/packages/dotnext.net.cluster/5.11.0">DotNext.Net.Cluster 5.11.0</a>
72-
* Updated dependencies
65+
<a href="https://www.nuget.org/packages/dotnext.net.cluster/5.12.0">DotNext.Net.Cluster 5.12.0</a>
66+
* Fixed cancellation of `PersistentState` async methods
7367

74-
<a href="https://www.nuget.org/packages/dotnext.aspnetcore.cluster/5.11.0">DotNext.AspNetCore.Cluster 5.11.0</a>
75-
* Updated dependencies
68+
<a href="https://www.nuget.org/packages/dotnext.aspnetcore.cluster/5.12.0">DotNext.AspNetCore.Cluster 5.12.0</a>
69+
* Fixed cancellation of `PersistentState` async methods
7670

7771
Changelog for previous versions located [here](./CHANGELOG.md).
7872

src/DotNext.Benchmarks/Runtime/Caching/ConcurrentCacheBenchmark.cs

Lines changed: 0 additions & 119 deletions
This file was deleted.

src/DotNext.IO/DotNext.IO.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<Authors>.NET Foundation and Contributors</Authors>
1212
<Company />
1313
<Product>.NEXT Family of Libraries</Product>
14-
<VersionPrefix>5.11.0</VersionPrefix>
14+
<VersionPrefix>5.12.0</VersionPrefix>
1515
<VersionSuffix></VersionSuffix>
1616
<AssemblyName>DotNext.IO</AssemblyName>
1717
<PackageLicenseExpression>MIT</PackageLicenseExpression>

src/DotNext.Metaprogramming/DotNext.Metaprogramming.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<ImplicitUsings>true</ImplicitUsings>
99
<IsTrimmable>false</IsTrimmable>
1010
<Features>nullablePublicOnly</Features>
11-
<VersionPrefix>5.11.0</VersionPrefix>
11+
<VersionPrefix>5.12.0</VersionPrefix>
1212
<VersionSuffix></VersionSuffix>
1313
<Authors>.NET Foundation</Authors>
1414
<Product>.NEXT Family of Libraries</Product>

src/DotNext.Tests/DotNext.Tests.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,8 @@
5656
<Generator></Generator>
5757
</EmbeddedResource>
5858
</ItemGroup>
59+
60+
<ItemGroup>
61+
<Folder Include="Threading\Concurrent\" />
62+
</ItemGroup>
5963
</Project>

src/DotNext.Tests/Runtime/Caching/ConcurrentCacheTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
namespace DotNext.Runtime.Caching;
22

3+
[Obsolete]
34
public sealed class ConcurrentCacheTests : Test
45
{
56
[Fact]

0 commit comments

Comments
 (0)