Skip to content

Commit 9cf7f33

Browse files
committed
Updated release notes
1 parent aecf197 commit 9cf7f33

File tree

2 files changed

+44
-36
lines changed

2 files changed

+44
-36
lines changed

CHANGELOG.md

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

4+
# 01-01-2025
5+
<a href="https://www.nuget.org/packages/dotnext/5.17.2">DotNext 5.17.2</a>
6+
* Fixed nullability attributes
7+
8+
<a href="https://www.nuget.org/packages/dotnext.metaprogramming/5.17.2">DotNext.Metaprogramming 5.17.2</a>
9+
* Fixed nullability attributes
10+
11+
<a href="https://www.nuget.org/packages/dotnext.unsafe/5.17.2">DotNext.Unsafe 5.17.2</a>
12+
* Fixed nullability attributes
13+
14+
<a href="https://www.nuget.org/packages/dotnext.threading/5.17.2">DotNext.Threading 5.17.2</a>
15+
* Fixed nullability attributes
16+
17+
<a href="https://www.nuget.org/packages/dotnext.io/5.17.2">DotNext.IO 5.17.2</a>
18+
* Fixed nullability attributes
19+
20+
<a href="https://www.nuget.org/packages/dotnext.net.cluster/5.17.2">DotNext.Net.Cluster 5.17.2</a>
21+
* Fixed nullability attributes
22+
23+
<a href="https://www.nuget.org/packages/dotnext.aspnetcore.cluster/5.17.2">DotNext.AspNetCore.Cluster 5.17.2</a>
24+
* Fixed nullability attributes
25+
426
# 12-30-2024
527
<a href="https://www.nuget.org/packages/dotnext.io/5.17.1">DotNext.IO 5.17.1</a>
628
* Fixed `EndOfStreamException` caused by async read from `PoolingBufferedStream`

README.md

Lines changed: 22 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -44,42 +44,28 @@ 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: 12-29-2024
48-
49-
This release is aimed to improve AOT compatibility. All the examples in the repo are now AOT compatible.
50-
<a href="https://www.nuget.org/packages/dotnext/5.17.0">DotNext 5.17.0</a>
51-
* Fixed AOT compatibility in `TaskType` class
52-
* Added [ISpanFormattable](https://learn.microsoft.com/en-us/dotnet/api/system.ispanformattable) and [IParsable&lt;T&gt;](https://learn.microsoft.com/en-us/dotnet/api/system.iparsable-1) interfaces to `HttpEndPoint`
53-
* Introduced `TryEncodeAsUtf8` extension method for `SpanWriter<T>`
54-
* Added more factory methods to `DotNext.Buffers.Memory` class to create [ReadOnlySequence&lt;T&gt;](https://learn.microsoft.com/en-us/dotnet/api/system.buffers.readonlysequence-1)
55-
* `Intrinsics.KeepAlive` is introduced for value types
56-
* Added `Synchronization.Wait()` synchronous methods for blocking wait of [value tasks](https://learn.microsoft.com/en-us/dotnet/api/system.threading.tasks.valuetask) without wait handles
57-
58-
<a href="https://www.nuget.org/packages/dotnext.metaprogramming/5.17.0">DotNext.Metaprogramming 5.17.0</a>
59-
* Updated dependencies
60-
61-
<a href="https://www.nuget.org/packages/dotnext.unsafe/5.17.0">DotNext.Unsafe 5.17.0</a>
62-
* Improved AOT support
63-
* Fixed finalizer for unmanaged memory manager that allows to release the allocated unmanaged memory automatically by GC to avoid memory leak
64-
* Updated dependencies
65-
66-
<a href="https://www.nuget.org/packages/dotnext.threading/5.17.0">DotNext.Threading 5.17.0</a>
67-
* Improved AOT support
68-
69-
<a href="https://www.nuget.org/packages/dotnext.io/5.17.1">DotNext.IO 5.17.1</a>
70-
* Reduced memory consumption for applications that use `FileReader` and `FileWriter` classes. These classes are now implemented by using lazy buffer pattern. It means that the different instances can reuse the same buffer taken from the pool
71-
* Fixed [255](https://github.com/dotnet/dotNext/issues/255)
72-
* `PoolingBufferedStream` is introduced to replace classic [BufferedStream](https://learn.microsoft.com/en-us/dotnet/api/system.io.bufferedstream). This class supports memory pooling and implements lazy buffer pattern
73-
74-
<a href="https://www.nuget.org/packages/dotnext.net.cluster/5.17.0">DotNext.Net.Cluster 5.17.0</a>
75-
* Improved AOT support
76-
77-
<a href="https://www.nuget.org/packages/dotnext.aspnetcore.cluster/5.17.0">DotNext.AspNetCore.Cluster 5.17.0</a>
78-
* Improved AOT support
79-
* Fixed [254](https://github.com/dotnet/dotNext/issues/254)
80-
81-
<a href="https://www.nuget.org/packages/dotnext.maintenanceservices/0.5.0">DotNext.MaintenanceServices 0.5.0</a>
82-
* Improved AOT support
47+
Release Date: 01-01-2025
48+
49+
<a href="https://www.nuget.org/packages/dotnext/5.17.2">DotNext 5.17.2</a>
50+
* Fixed nullability attributes
51+
52+
<a href="https://www.nuget.org/packages/dotnext.metaprogramming/5.17.2">DotNext.Metaprogramming 5.17.2</a>
53+
* Fixed nullability attributes
54+
55+
<a href="https://www.nuget.org/packages/dotnext.unsafe/5.17.2">DotNext.Unsafe 5.17.2</a>
56+
* Fixed nullability attributes
57+
58+
<a href="https://www.nuget.org/packages/dotnext.threading/5.17.2">DotNext.Threading 5.17.2</a>
59+
* Fixed nullability attributes
60+
61+
<a href="https://www.nuget.org/packages/dotnext.io/5.17.2">DotNext.IO 5.17.2</a>
62+
* Fixed nullability attributes
63+
64+
<a href="https://www.nuget.org/packages/dotnext.net.cluster/5.17.2">DotNext.Net.Cluster 5.17.2</a>
65+
* Fixed nullability attributes
66+
67+
<a href="https://www.nuget.org/packages/dotnext.aspnetcore.cluster/5.17.2">DotNext.AspNetCore.Cluster 5.17.2</a>
68+
* Fixed nullability attributes
8369

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

0 commit comments

Comments
 (0)