This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
Releases: samaysar/dotdotnet
Releases · samaysar/dotdotnet
v6.2.0-Df
Changes to Dot.Net.DevFast 6.2.0
- New feature - Adding FastDictionary in Dot.Net.DevFast.Collections.Concurrent which consumes almost half amount of memory and several times faster compared to COncurrentDictionary of microsoft
- New feature - Adding OneToManyDictionary in Dot.Net.DevFast.Collections for BAU
- New feature - Adding OneToUniqueManyDictionary in Dot.Net.DevFast.Collections for BAU
- New Feature - Adding following extensions ToFastDictionary, ToOneToManyDictionary, ToOneToUniqueManyDictionary to Dot.Net.DevFast.Extensions on IEnumerable to ease the creation of above 3 dictionaries.
v6.1.0-Df
Changes to Dot.Net.DevFast 6.1.0
- Change/Fix - Adding IEnumerable on all implementation of Heaps
- New feature - Adding extension methods on IEnumerable/IAsyncEnumerables
- New feature - Extensions on Type and MethodInfo to perform reflection based invocations
- New feature - Adding .NetStandard2.0 & .Net5.0
v6.0.0-Df
Changes to Dot.Net.DevFast 6.0.0
- Change/Fix - Removing .Net Standard 2.0/.Net Core 2.0 support
- New feature - Adding HasElements extension on ICollection
- New feature - Inside Dot.Net.DevFast.Extensions, Adding ToPpcEnumerableWithException and ToPpcEnumerable extension on BlockingCollection
v5.0.3-Df
v5.0.2-Df
v5.0.1-Df
v5.0.0-Df
Changes to Dot.Net.DevFast 5.0.0
- Change/Fix - IConsumer interface extends IAsyncDisposable in .Net Standard 2.1 and IDisposable in older .Net Frameworks
- Change/Fix - IProducer interface extends IAsyncDisposable in .Net Standard 2.1 and IDisposable in older .Net Frameworks
- Change/Fix - IPpcFeed interface extends IAsyncDisposable in .Net Standard 2.1 and IDisposable in older .Net Frameworks
- New feature - AwaitNDispose and AwaitNDisposeAsync are added as extension on Task for both IDisposable and IAsyncDisposable params.
- New feature - AsTaskResultAsync has been added to convert any object as an awaitable task result.
- New feature - StartIfNeeded is added as an extension on Task.
v4.0.0-Df
Changes to Dot.Net.DevFast 4.0.0
- Change/Fix - Added optional objectBufferSize with default value in AndParseJsonArray in the streaming method
- Change/Fix - Added optional objectBufferSize with default value in FromJsonAsEnumerable in JSON deserialization extensions
- New feature - Adding Lock Based Concurrent Heap implementation under concurrent collection
- New feature - Adding Concurrent Min/Max Heap (lock based) implementation under concurrent collection
- New feature - Added .Net Standard 3.1 as Target Framework
v3.2.0-Df
Changes to Dot.Net.DevFast 3.2.0
- New feature - Adding Abstract Binary Heap implementation under collection
- New feature - Adding Abstract Sizable Binary Heap implementation under collection
- New feature - Adding Binary Min/Max Heap implementation under collection