Skip to content

Commit

Permalink
Release 5.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sakno committed Aug 13, 2024
1 parent 6cd709b commit a2527d7
Show file tree
Hide file tree
Showing 32 changed files with 1,991 additions and 188 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
Release Notes
====

# 08-13-2024
<a href="https://www.nuget.org/packages/dotnext/5.12.0">DotNext 5.12.0</a>
* Added `DotNext.Runtime.ValueReference<T>` data type that allows to obtain async-friendly managed pointer to the field
* Deprecation of `ConcurrentCache<TKey, TValue>` in favor of `RandomAccessCache<TKey, TValue>`

<a href="https://www.nuget.org/packages/dotnext.metaprogramming/5.12.0">DotNext.Metaprogramming 5.12.0</a>
* Updated dependencies

<a href="https://www.nuget.org/packages/dotnext.unsafe/5.12.0">DotNext.Unsafe 5.12.0</a>
* Updated dependencies

<a href="https://www.nuget.org/packages/dotnext.threading/5.12.0">DotNext.Threading 5.12.0</a>
* 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.

<a href="https://www.nuget.org/packages/dotnext.io/5.12.0">DotNext.IO 5.12.0</a>
* Updated dependencies

<a href="https://www.nuget.org/packages/dotnext.net.cluster/5.12.0">DotNext.Net.Cluster 5.12.0</a>
* Fixed cancellation of `PersistentState` async methods

<a href="https://www.nuget.org/packages/dotnext.aspnetcore.cluster/5.12.0">DotNext.AspNetCore.Cluster 5.12.0</a>
* Fixed cancellation of `PersistentState` async methods

# 08-01-2024
<a href="https://www.nuget.org/packages/dotnext/5.11.0">DotNext 5.11.0</a>
* Added `DotNext.Threading.Epoch` for epoch-based reclamation
Expand Down
32 changes: 13 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,35 +44,29 @@ All these things are implemented in 100% managed code on top of existing .NET AP
* [NuGet Packages](https://www.nuget.org/profiles/rvsakno)

# What's new
Release Date: 08-01-2024
Release Date: 08-14-2024

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

<a href="https://www.nuget.org/packages/dotnext.metaprogramming/5.11.0">DotNext.Metaprogramming 5.11.0</a>
* Minor performance improvements
<a href="https://www.nuget.org/packages/dotnext.metaprogramming/5.12.0">DotNext.Metaprogramming 5.12.0</a>
* Updated dependencies

<a href="https://www.nuget.org/packages/dotnext.unsafe/5.11.0">DotNext.Unsafe 5.11.0</a>
* Minor performance improvements
<a href="https://www.nuget.org/packages/dotnext.unsafe/5.12.0">DotNext.Unsafe 5.12.0</a>
* Updated dependencies

<a href="https://www.nuget.org/packages/dotnext.threading/5.11.0">DotNext.Threading 5.11.0</a>
* Fixed `AsyncSharedLock.Downgrade` behavior, so it can be used to release a weak lock
* Updated dependencies
<a href="https://www.nuget.org/packages/dotnext.threading/5.12.0">DotNext.Threading 5.12.0</a>
* 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.

<a href="https://www.nuget.org/packages/dotnext.io/5.11.0">DotNext.IO 5.11.0</a>
* Minor performance improvements
<a href="https://www.nuget.org/packages/dotnext.io/5.12.0">DotNext.IO 5.12.0</a>
* Updated dependencies

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

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

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

Expand Down
119 changes: 0 additions & 119 deletions src/DotNext.Benchmarks/Runtime/Caching/ConcurrentCacheBenchmark.cs

This file was deleted.

2 changes: 1 addition & 1 deletion src/DotNext.IO/DotNext.IO.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Authors>.NET Foundation and Contributors</Authors>
<Company />
<Product>.NEXT Family of Libraries</Product>
<VersionPrefix>5.11.0</VersionPrefix>
<VersionPrefix>5.12.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<AssemblyName>DotNext.IO</AssemblyName>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion src/DotNext.Metaprogramming/DotNext.Metaprogramming.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<ImplicitUsings>true</ImplicitUsings>
<IsTrimmable>false</IsTrimmable>
<Features>nullablePublicOnly</Features>
<VersionPrefix>5.11.0</VersionPrefix>
<VersionPrefix>5.12.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>.NET Foundation</Authors>
<Product>.NEXT Family of Libraries</Product>
Expand Down
4 changes: 4 additions & 0 deletions src/DotNext.Tests/DotNext.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,8 @@
<Generator></Generator>
</EmbeddedResource>
</ItemGroup>

<ItemGroup>
<Folder Include="Threading\Concurrent\" />
</ItemGroup>
</Project>
1 change: 1 addition & 0 deletions src/DotNext.Tests/Runtime/Caching/ConcurrentCacheTests.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace DotNext.Runtime.Caching;

[Obsolete]
public sealed class ConcurrentCacheTests : Test
{
[Fact]
Expand Down
Loading

0 comments on commit a2527d7

Please sign in to comment.