BridgingIT.DevKit.Common.Abstractions 9.0.23-preview.0.23

This is a prerelease version of BridgingIT.DevKit.Common.Abstractions.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package BridgingIT.DevKit.Common.Abstractions --version 9.0.23-preview.0.23
                    
NuGet\Install-Package BridgingIT.DevKit.Common.Abstractions -Version 9.0.23-preview.0.23
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BridgingIT.DevKit.Common.Abstractions" Version="9.0.23-preview.0.23" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BridgingIT.DevKit.Common.Abstractions" Version="9.0.23-preview.0.23" />
                    
Directory.Packages.props
<PackageReference Include="BridgingIT.DevKit.Common.Abstractions" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add BridgingIT.DevKit.Common.Abstractions --version 9.0.23-preview.0.23
                    
#r "nuget: BridgingIT.DevKit.Common.Abstractions, 9.0.23-preview.0.23"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package BridgingIT.DevKit.Common.Abstractions@9.0.23-preview.0.23
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=BridgingIT.DevKit.Common.Abstractions&version=9.0.23-preview.0.23&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=BridgingIT.DevKit.Common.Abstractions&version=9.0.23-preview.0.23&prerelease
                    
Install as a Cake Tool

bITDevKit

Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles.

Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

This repository includes the complete source code for the bITDevKit, along with a variety of sample applications located in the ./examples folder within the solution. These samples serve as practical demonstrations of how to leverage the capabilities of the bITDevKit in real-world scenarios. All components are available as nuget packages.

For the latest updates and release notes, please refer to the RELEASES.

Join us in advancing the world of software development with the bITDevKit!


Result.cs Overview

The Result class encapsulates the outcome of an operation, promoting an expressive and error-tolerant way to handle success and failure states.

The Result class is a central component designed to encapsulate the outcome of an operation, providing a way to represent both successful and failed operations. This class promotes a more expressive and error-tolerant approach to handling operation results, encouraging the explicit declaration of success or failure states.

Returning a Result

To return a Result from a method, you typically define the method to return Result or Result<T>, where T is the type of the value returned in case of success. Here is an example method returning a Result:

public Result PerformOperation()
{
    // Your logic here
    
    if (success)
    {
        return Result.Success();
    }
    else
    {
        return Result.Failure(new Error("Operation Failed"));
    }
}

Handling a Result

When you receive a Result from a method, you can handle it by checking its success or failure state. Here's an example:

var result = PerformOperation();

if (result.IsSuccess)
{
    // Handle success
}
else
{
    // Handle failure
    var error = result.Error;
    Console.WriteLine(error.Message);
}

Using Typed Results

Sometimes, you may want to return a result with a value. This is where Result<T> comes in handy:

public Result<int> CalculateSum(int a, int b)
{
    if (a < 0 || b < 0)
    {
        return Result.Failure<int>(new Error("Inputs must be non-negative"));
    }

    return Result.Success(a + b);
}

Handling a Result<T> involves extracting the value if the operation was successful:

var result = CalculateSum(5, 10);

if (result.IsSuccess)
{
    int sum = result.Value;
    Console.WriteLine($"Sum: {sum}");
}
else
{
    Console.WriteLine(result.Error.Message);
}

Typed Errors

Typed errors provide a more specific and structured way to handle different error scenarios. For example, the EntityNotFoundResultError class can be used to represent an error where an entity is not found:

EntityNotFoundResultError.cs:
public class EntityNotFoundResultError : Error
{
    public EntityNotFoundResultError(string entityName, object key)
        : base($"Entity '{entityName}' with key '{key}' was not found.")
    {
    }
}

You can return this typed error as follows:

public Result GetEntity(int id)
{
    var entity = repository.FindById(id);

    if (entity == null)
    {
        return Result.Failure(new EntityNotFoundResultError("EntityName", id));
    }

    return Result.Success(entity);
}

When handling the result, you can check if the error is of a specific type:

var result = GetEntity(1);

if (result.IsSuccess)
{
    // Handle success
}
else if (result.Error is EntityNotFoundResultError)
{
    var error = (EntityNotFoundResultError)result.Error;
    Console.WriteLine(error.Message);
}
else
{
    // Handle other errors
}

Other available typed errors are:

By using typed errors, you can create more expressive and manageable error handling in your application.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (14)

Showing the top 5 NuGet packages that depend on BridgingIT.DevKit.Common.Abstractions:

Package Downloads
BridgingIT.DevKit.Common.Utilities

BridgingIT DevKit: Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles. Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

BridgingIT.DevKit.Common.Serialization

BridgingIT DevKit: Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles. Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

BridgingIT.DevKit.Domain

BridgingIT DevKit: Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles. Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

BridgingIT.DevKit.Common.Results

BridgingIT DevKit: Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles. Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

BridgingIT.DevKit.Application.Storage

BridgingIT DevKit: Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles. Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
9.0.23-preview.0.32 0 10/16/2025
9.0.23-preview.0.31 11 10/15/2025
9.0.23-preview.0.30 12 10/15/2025
9.0.23-preview.0.29 28 10/15/2025
9.0.23-preview.0.28 33 10/14/2025
9.0.23-preview.0.27 34 10/14/2025
9.0.23-preview.0.26 32 10/14/2025
9.0.23-preview.0.25 35 10/14/2025
9.0.23-preview.0.23 32 10/14/2025
9.0.23-preview.0.19 33 10/14/2025
9.0.23-preview.0.16 38 10/14/2025
9.0.23-preview.0.15 36 10/14/2025
9.0.23-preview.0.11 40 10/13/2025
9.0.23-preview.0.2 39 10/13/2025
9.0.23-preview.0.1 36 10/13/2025
9.0.22 512 10/13/2025
9.0.22-preview.0.1 47 10/10/2025
9.0.21 539 10/9/2025
9.0.21-preview.0.13 115 10/9/2025
9.0.21-preview.0.12 111 10/9/2025
9.0.21-preview.0.11 130 10/9/2025
9.0.21-preview.0.10 116 10/9/2025
9.0.21-preview.0.9 117 10/8/2025
9.0.21-preview.0.8 110 10/8/2025
9.0.21-preview.0.7 121 10/8/2025
9.0.21-preview.0.6 120 10/8/2025
9.0.21-preview.0.5 132 10/7/2025
9.0.21-preview.0.4 120 10/7/2025
9.0.21-preview.0.3 118 10/7/2025
9.0.21-preview.0.2 162 10/6/2025
9.0.21-preview.0.1 77 10/3/2025
9.0.20 773 10/2/2025
9.0.20-preview.0.4 141 10/2/2025
9.0.20-preview.0.3 147 10/1/2025
9.0.20-preview.0.1 124 10/1/2025
9.0.19 744 10/1/2025
9.0.18 835 9/30/2025
9.0.18-preview.0.4 168 9/30/2025
9.0.18-preview.0.2 178 9/30/2025
9.0.17 761 9/30/2025
9.0.17-preview.0.2 174 9/29/2025
9.0.17-preview.0.1 172 9/29/2025
9.0.16 776 9/29/2025
9.0.16-preview.0.1 193 9/28/2025
9.0.15 782 9/28/2025
9.0.14 816 9/24/2025
9.0.12 803 9/24/2025
9.0.12-preview.0.3 233 9/23/2025
9.0.11 771 9/23/2025
9.0.11-preview.0.3 193 9/23/2025
9.0.11-preview.0.2 222 9/22/2025
9.0.11-preview.0.1 206 9/22/2025
9.0.10 795 9/22/2025
9.0.10-preview.0.1 126 8/19/2025
9.0.9 609 8/19/2025
9.0.9-preview.0.1 117 8/18/2025
9.0.8 673 8/7/2025
9.0.7 689 8/5/2025
9.0.6 697 8/5/2025
9.0.6-preview.0.9 120 7/15/2025
9.0.6-preview.0.6 129 7/14/2025
9.0.6-preview.0.5 123 7/14/2025
9.0.6-preview.0.3 85 7/12/2025
9.0.5 1,022 7/9/2025
9.0.5-preview.0.1 140 7/8/2025
9.0.4 733 7/8/2025
9.0.4-preview.0.4 210 7/8/2025
9.0.4-preview.0.3 177 7/8/2025
9.0.4-preview.0.2 159 7/8/2025
9.0.4-preview.0.1 128 7/7/2025
9.0.3 681 7/4/2025
9.0.3-preview.0.1 137 7/3/2025
9.0.2 677 7/2/2025
9.0.2-preview.55 142 7/1/2025
9.0.2-preview.54 162 6/26/2025
9.0.2-preview.53 129 6/26/2025
9.0.2-preview.51 126 6/26/2025
9.0.2-preview.50 128 6/26/2025
9.0.2-preview.49 143 6/25/2025
9.0.2-preview.47 139 6/25/2025
9.0.2-preview.46 125 6/25/2025
9.0.2-preview.45 140 6/25/2025
9.0.2-preview.44 170 6/25/2025
9.0.2-preview.43 162 6/24/2025
9.0.2-preview.42 155 6/24/2025
9.0.2-preview.41 139 6/23/2025
9.0.2-preview.39 56 6/21/2025
9.0.2-preview.38 87 6/20/2025
9.0.2-preview.37 101 6/20/2025
9.0.2-preview.36 127 6/17/2025
9.0.2-preview.35 137 6/14/2025
9.0.2-preview.34 267 6/12/2025
9.0.2-preview.33 269 6/11/2025
9.0.2-preview.32 283 6/11/2025
9.0.2-preview.31 269 6/11/2025
9.0.2-preview.28 270 6/11/2025
9.0.2-preview.25 265 6/11/2025
9.0.2-preview.24 273 6/11/2025
9.0.2-preview.23 269 6/11/2025
9.0.2-preview.22 267 6/11/2025
9.0.2-preview.21 293 6/10/2025
9.0.2-preview.20 273 6/10/2025
9.0.2-preview.19 267 6/10/2025
9.0.2-preview.18 273 6/9/2025
9.0.2-preview.16 223 6/9/2025
9.0.2-preview.14 55 6/7/2025
9.0.2-preview.13 55 6/6/2025
9.0.2-preview.12 55 6/6/2025
9.0.2-preview.5 75 6/6/2025
9.0.2-preview.3 138 6/4/2025
9.0.2-preview.2 132 6/4/2025
9.0.2-preview.1 123 6/4/2025
9.0.1-preview.0.335 247 6/2/2025
9.0.1-preview.0.333 135 6/2/2025
9.0.1-preview.0.332 128 6/1/2025
9.0.1-preview.0.331 127 6/1/2025
9.0.1-preview.0.329 52 5/30/2025
9.0.1-preview.0.326 64 5/30/2025
9.0.1-preview.0.324 52 5/30/2025
9.0.1-preview.0.323 58 5/30/2025
9.0.1-preview.0.321 80 5/30/2025
9.0.1-preview.0.319 61 5/30/2025
9.0.1-preview.0.318 72 5/30/2025
9.0.1-preview.0.317 80 5/30/2025
9.0.1-preview.0.316 84 5/30/2025
9.0.1-preview.0.315 103 5/30/2025
9.0.1-preview.0.314 89 5/30/2025
9.0.1-preview.0.312 90 5/30/2025
9.0.1-preview.0.309 127 5/28/2025
9.0.1-preview.0.302 128 5/21/2025
9.0.1-preview.0.301 169 5/21/2025
9.0.1-preview.0.300 130 5/21/2025
9.0.1-preview.0.299 136 5/21/2025
9.0.1-preview.0.297 184 5/21/2025
9.0.1-preview.0.296 138 6/4/2025
9.0.1-preview.0.295 124 5/21/2025
9.0.1-preview.0.294 131 5/21/2025
9.0.1-preview.0.293 127 5/21/2025
9.0.1-preview.0.290 134 5/19/2025
9.0.1-preview.0.287 143 5/19/2025
9.0.1-preview.0.286 231 5/15/2025
9.0.1-preview.0.285 221 5/13/2025
9.0.1-preview.0.279 211 5/13/2025
9.0.1-preview.0.278 222 5/13/2025
9.0.1-preview.0.277 219 5/13/2025
9.0.1-preview.0.276 274 5/13/2025
9.0.1-preview.0.274 133 5/19/2025
9.0.1-preview.0.272 120 5/11/2025
9.0.1-preview.0.271 119 5/11/2025
9.0.1-preview.0.270 99 5/9/2025
9.0.1-preview.0.267 125 5/7/2025
9.0.1-preview.0.266 126 5/7/2025
9.0.1-preview.0.265 134 5/6/2025
9.0.1-preview.0.264 179 5/6/2025
9.0.1-preview.0.263 129 5/6/2025
9.0.1-preview.0.262 134 5/6/2025
9.0.1-preview.0.261 138 5/6/2025
9.0.1-preview.0.258 488 5/6/2025
9.0.1-preview.0.255 99 5/9/2025
9.0.1-preview.0.254 135 5/8/2025
9.0.1-preview.0.253 129 5/8/2025
9.0.1-preview.0.252 132 5/8/2025
9.0.1-preview.0.251 128 5/8/2025
9.0.1-preview.0.250 138 5/7/2025
9.0.1-preview.0.247 147 5/7/2025
9.0.1-preview.0.246 128 5/7/2025
9.0.1-preview.0.244 165 4/17/2025
9.0.1-preview.0.243 243 4/15/2025
9.0.1-preview.0.242 169 4/15/2025
9.0.1-preview.0.241 166 4/15/2025
9.0.1-preview.0.239 166 4/15/2025
9.0.1-preview.0.238 269 4/15/2025
9.0.1-preview.0.237 226 4/13/2025
9.0.1-preview.0.236 165 4/10/2025
9.0.1-preview.0.235 145 4/10/2025
9.0.1-preview.0.234 156 4/10/2025
9.0.1-preview.0.233 181 4/9/2025
9.0.1-preview.0.232 142 4/9/2025
9.0.1-preview.0.231 141 4/9/2025
9.0.1-preview.0.230 197 4/7/2025
9.0.1-preview.0.229 156 4/7/2025
9.0.1-preview.0.228 158 4/7/2025
9.0.1-preview.0.227 151 4/4/2025
9.0.1-preview.0.226 146 4/3/2025
9.0.1-preview.0.220 182 4/2/2025
9.0.1-preview.0.219 134 4/1/2025
9.0.1-preview.0.218 133 4/1/2025
9.0.1-preview.0.217 196 4/1/2025
9.0.1-preview.0.215 157 4/1/2025
9.0.1-preview.0.214 139 4/1/2025
9.0.1-preview.0.213 157 4/1/2025
9.0.1-preview.0.212 165 4/1/2025
9.0.1-preview.0.211 138 4/1/2025
9.0.1-preview.0.210 142 4/1/2025
9.0.1-preview.0.209 155 3/31/2025
9.0.1-preview.0.208 161 3/31/2025
9.0.1-preview.0.206 143 3/31/2025
9.0.1-preview.0.205 150 3/31/2025
9.0.1-preview.0.204 147 3/31/2025
9.0.1-preview.0.202 138 3/31/2025
9.0.1-preview.0.199 74 3/29/2025
9.0.1-preview.0.198 113 3/28/2025
9.0.1-preview.0.196 120 3/28/2025
9.0.1-preview.0.193 113 3/27/2025
9.0.1-preview.0.189 140 3/26/2025
9.0.1-preview.0.188 468 3/25/2025
9.0.1-preview.0.187 478 3/24/2025
9.0.1-preview.0.186 464 3/24/2025
9.0.1-preview.0.185 468 3/24/2025
9.0.1-preview.0.184 467 3/24/2025
9.0.1-preview.0.183 466 3/24/2025
9.0.1-preview.0.182 74 3/21/2025
9.0.1-preview.0.180 125 3/21/2025
9.0.1-preview.0.179 134 3/21/2025
9.0.1-preview.0.178 132 3/21/2025
9.0.1-preview.0.175 136 3/20/2025
9.0.1-preview.0.174 133 3/19/2025
9.0.1-preview.0.173 150 3/19/2025
9.0.1-preview.0.172 296 3/19/2025
9.0.1-preview.0.171 132 3/19/2025
9.0.1-preview.0.170 131 3/18/2025
9.0.1-preview.0.165 132 3/18/2025
9.0.1-preview.0.162 141 3/17/2025
9.0.1-preview.0.160 134 3/17/2025
9.0.1-preview.0.152 113 3/14/2025
9.0.1-preview.0.148 155 3/13/2025
9.0.1-preview.0.147 135 3/13/2025
9.0.1-preview.0.146 139 3/12/2025
9.0.1-preview.0.145 145 3/12/2025
9.0.1-preview.0.141 141 3/12/2025
9.0.1-preview.0.140 182 3/10/2025
9.0.1-preview.0.139 140 3/10/2025
9.0.1-preview.0.138 156 3/10/2025
9.0.1-preview.0.137 132 3/8/2025
9.0.1-preview.0.135 150 3/8/2025
9.0.1-preview.0.134 187 3/7/2025
9.0.1-preview.0.133 179 3/6/2025
9.0.1-preview.0.132 174 3/6/2025
9.0.1-preview.0.130 176 3/6/2025
9.0.1-preview.0.129 231 3/6/2025
9.0.1-preview.0.128 183 3/6/2025
9.0.1-preview.0.127 190 3/6/2025
9.0.1-preview.0.125 196 3/4/2025
9.0.1-preview.0.119 91 2/28/2025
9.0.1-preview.0.118 72 2/28/2025
9.0.1-preview.0.116 79 2/28/2025
9.0.1-preview.0.112 70 2/27/2025
9.0.1-preview.0.111 79 2/27/2025
9.0.1-preview.0.110 125 2/26/2025
9.0.1-preview.0.107 92 2/26/2025
9.0.1-preview.0.106 82 2/26/2025
9.0.1-preview.0.105 79 2/26/2025
9.0.1-preview.0.104 86 2/26/2025
9.0.1-preview.0.103 105 2/26/2025
9.0.1-preview.0.102 101 2/26/2025
9.0.1-preview.0.100 70 2/26/2025
9.0.1-preview.0.99 111 2/25/2025
9.0.1-preview.0.97 81 2/25/2025
9.0.1-preview.0.96 77 2/25/2025
9.0.1-preview.0.94 76 2/24/2025
9.0.1-preview.0.93 106 2/24/2025
9.0.1-preview.0.92 76 2/21/2025
9.0.1-preview.0.91 68 2/21/2025
9.0.1-preview.0.88 77 2/19/2025
9.0.1-preview.0.87 259 2/18/2025
9.0.1-preview.0.85 276 2/18/2025
9.0.1-preview.0.84 218 2/17/2025
9.0.1-preview.0.82 177 2/17/2025
9.0.1-preview.0.79 185 2/14/2025
9.0.1-preview.0.78 204 2/14/2025
9.0.1-preview.0.77 180 2/14/2025
9.0.1-preview.0.76 218 2/14/2025
9.0.1-preview.0.73 208 2/14/2025
9.0.1-preview.0.71 156 2/14/2025
9.0.1-preview.0.70 201 2/13/2025
9.0.1-preview.0.69 192 2/13/2025
9.0.1-preview.0.67 199 2/13/2025
9.0.1-preview.0.62 184 2/11/2025
9.0.1-preview.0.58 91 2/7/2025
9.0.1-preview.0.56 81 2/7/2025
9.0.1-preview.0.55 68 2/6/2025
9.0.1-preview.0.54 73 2/6/2025
9.0.1-preview.0.53 68 2/6/2025
9.0.1-preview.0.52 69 2/6/2025
9.0.1-preview.0.50 87 2/6/2025
9.0.1-preview.0.49 130 2/6/2025
9.0.1-preview.0.47 70 2/6/2025
9.0.1-preview.0.45 79 2/6/2025
9.0.1-preview.0.43 77 2/5/2025
9.0.1-preview.0.42 79 2/5/2025
9.0.1-preview.0.41 77 2/5/2025
9.0.1-preview.0.35 79 2/4/2025
9.0.1-preview.0.20 75 1/30/2025
9.0.1-preview.0.19 68 1/30/2025
9.0.1-preview.0.18 74 1/30/2025
9.0.1-preview.0.14 72 1/30/2025
9.0.1-preview.0.13 80 1/30/2025
9.0.1-preview.0.11 67 1/29/2025
9.0.1-preview.0.10 66 1/29/2025
9.0.1-preview.0.9 70 1/27/2025
9.0.1-preview.0.2 128 1/27/2025
3.0.5-preview.0.2 140 4/1/2025
3.0.5-preview.0.1 92 2/11/2025
3.0.4 863 1/25/2025
3.0.4-preview.0.38 81 1/25/2025
3.0.4-preview.0.37 118 12/6/2024
3.0.4-preview.0.36 210 12/5/2024
3.0.4-preview.0.34 83 12/5/2024
3.0.4-preview.0.32 81 12/4/2024
3.0.4-preview.0.31 100 11/25/2024
3.0.4-preview.0.30 80 11/25/2024
3.0.4-preview.0.29 72 11/21/2024
3.0.4-preview.0.28 132 11/19/2024
3.0.4-preview.0.27 74 11/19/2024
3.0.4-preview.0.23 80 11/19/2024
3.0.4-preview.0.21 66 11/19/2024
3.0.4-preview.0.20 71 11/18/2024
3.0.4-preview.0.19 83 11/18/2024
3.0.4-preview.0.18 67 11/18/2024
3.0.4-preview.0.17 69 11/18/2024
3.0.4-preview.0.16 76 11/15/2024
3.0.4-preview.0.15 72 11/15/2024
3.0.4-preview.0.14 90 11/2/2024
3.0.4-preview.0.13 84 10/29/2024
3.0.4-preview.0.12 77 10/29/2024
3.0.4-preview.0.8 81 10/29/2024
3.0.4-preview.0.7 81 10/29/2024
3.0.4-preview.0.6 74 10/24/2024
3.0.4-preview.0.5 84 10/23/2024
3.0.4-preview.0.4 75 10/23/2024
3.0.4-preview.0.3 72 10/23/2024
3.0.4-preview.0.2 77 10/23/2024
3.0.4-preview.0.1 216 10/16/2024
3.0.3 731 10/11/2024
3.0.3-preview.0.56 91 10/10/2024
3.0.3-preview.0.55 84 10/10/2024
3.0.3-preview.0.54 87 10/10/2024
3.0.3-preview.0.50 82 10/10/2024
3.0.3-preview.0.49 99 10/9/2024
3.0.3-preview.0.44 101 10/8/2024
3.0.3-preview.0.43 81 10/8/2024
3.0.3-preview.0.42 81 10/7/2024
3.0.3-preview.0.41 82 10/7/2024
3.0.3-preview.0.40 115 10/1/2024
3.0.3-preview.0.39 83 10/1/2024
3.0.3-preview.0.38 80 10/1/2024
3.0.3-preview.0.36 85 9/30/2024
3.0.3-preview.0.35 99 9/26/2024
3.0.3-preview.0.34 93 9/26/2024
3.0.3-preview.0.33 81 9/26/2024
3.0.3-preview.0.32 109 9/24/2024
3.0.3-preview.0.31 809 9/10/2024
3.0.3-preview.0.30 79 9/9/2024
3.0.3-preview.0.29 74 9/9/2024
3.0.3-preview.0.28 66 9/8/2024
3.0.3-preview.0.27 86 9/5/2024
3.0.3-preview.0.26 84 9/3/2024
3.0.3-preview.0.25 81 9/3/2024
3.0.3-preview.0.24 90 9/3/2024
3.0.3-preview.0.23 101 8/21/2024
3.0.3-preview.0.22 69 7/29/2024
3.0.3-preview.0.21 89 7/25/2024
3.0.3-preview.0.18 87 7/12/2024
3.0.3-preview.0.17 82 7/12/2024
3.0.3-preview.0.16 78 7/12/2024
3.0.3-preview.0.15 77 7/5/2024
3.0.3-preview.0.14 142 6/24/2024
3.0.3-preview.0.13 103 6/23/2024
3.0.3-preview.0.12 95 6/21/2024
3.0.3-preview.0.11 102 6/20/2024
3.0.3-preview.0.9 376 5/27/2024
3.0.3-preview.0.8 87 5/27/2024
3.0.3-preview.0.7 116 5/17/2024
3.0.3-preview.0.6 90 5/14/2024
3.0.3-preview.0.5 372 5/8/2024
3.0.3-preview.0.3 115 5/6/2024
3.0.3-preview.0.1 102 4/25/2024
3.0.2 1,697 4/25/2024
3.0.2-preview.0.4 110 4/25/2024
3.0.2-preview.0.3 164 4/25/2024
3.0.2-preview.0.2 111 4/25/2024
3.0.2-preview.0.1 89 4/25/2024
3.0.1 772 4/25/2024
3.0.1-preview.0.10 97 4/24/2024
3.0.1-preview.0.9 198 4/19/2024
3.0.1-preview.0.8 84 4/24/2024
3.0.1-preview.0.7 152 4/24/2024

## Release 3.0.1 [25.04.24]

- [N] Initial release

-----

- [N] New
- [M] Modified
- [B] Breaking