BridgingIT.DevKit.Common.Abstractions 10.0.1-preview.0.7

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 10.0.1-preview.0.7
                    
NuGet\Install-Package BridgingIT.DevKit.Common.Abstractions -Version 10.0.1-preview.0.7
                    
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="10.0.1-preview.0.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BridgingIT.DevKit.Common.Abstractions" Version="10.0.1-preview.0.7" />
                    
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 10.0.1-preview.0.7
                    
#r "nuget: BridgingIT.DevKit.Common.Abstractions, 10.0.1-preview.0.7"
                    
#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@10.0.1-preview.0.7
                    
#: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=10.0.1-preview.0.7&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=BridgingIT.DevKit.Common.Abstractions&version=10.0.1-preview.0.7&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 net10.0 is compatible.  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

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.

BridgingIT.DevKit.Common.Serialization

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.

BridgingIT.DevKit.Common.Results

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.

BridgingIT.DevKit.Domain

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.

BridgingIT.DevKit.Application.Storage

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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.1-preview.0.27 123 11/22/2025
10.0.1-preview.0.26 242 11/21/2025
10.0.1-preview.0.23 344 11/20/2025
10.0.1-preview.0.22 360 11/19/2025
10.0.1-preview.0.19 356 11/18/2025
10.0.1-preview.0.18 357 11/18/2025
10.0.1-preview.0.16 384 11/18/2025
10.0.1-preview.0.15 357 11/17/2025
10.0.1-preview.0.14 353 11/17/2025
10.0.1-preview.0.13 345 11/17/2025
10.0.1-preview.0.11 305 11/17/2025
10.0.1-preview.0.10 299 11/17/2025
10.0.1-preview.0.7 246 11/13/2025
10.0.0 602 11/12/2025
9.0.29 922 11/18/2025
9.0.28 933 11/18/2025
9.0.28-preview.0.31 256 11/10/2025
9.0.28-preview.0.29 237 11/10/2025
9.0.28-preview.0.24 173 11/10/2025
9.0.28-preview.0.23 172 11/10/2025
9.0.28-preview.0.15 102 11/7/2025
9.0.28-preview.0.14 100 11/7/2025
9.0.28-preview.0.13 122 11/7/2025
9.0.28-preview.0.12 199 11/6/2025
9.0.28-preview.0.8 177 11/5/2025
9.0.28-preview.0.6 160 11/4/2025
9.0.28-preview.0.2 163 11/4/2025
9.0.28-preview.0.1 214 10/30/2025
9.0.27 741 10/30/2025
9.0.27-preview.0.4 136 10/30/2025
9.0.27-preview.0.3 133 10/29/2025
9.0.27-preview.0.2 136 10/29/2025
9.0.27-preview.0.1 135 10/29/2025
9.0.26 717 10/29/2025
9.0.26-preview.0.19 139 10/29/2025
9.0.26-preview.0.17 141 10/29/2025
9.0.26-preview.0.15 135 10/28/2025
9.0.26-preview.0.13 131 10/28/2025
9.0.26-preview.0.12 135 10/28/2025
9.0.26-preview.0.10 133 10/27/2025
9.0.26-preview.0.9 132 10/27/2025
9.0.26-preview.0.8 138 10/27/2025
9.0.26-preview.0.7 167 10/23/2025
9.0.26-preview.0.6 124 10/22/2025
9.0.26-preview.0.5 148 10/22/2025
9.0.26-preview.0.4 122 10/22/2025
9.0.26-preview.0.2 118 10/22/2025
9.0.26-preview.0.1 148 10/21/2025
9.0.25 725 10/21/2025
9.0.25-preview.0.7 125 10/21/2025
9.0.25-preview.0.6 125 10/21/2025
9.0.25-preview.0.5 127 10/21/2025
9.0.25-preview.0.4 121 10/21/2025
9.0.25-preview.0.2 125 10/20/2025
9.0.24 733 10/19/2025
9.0.24-preview.0.13 125 10/19/2025
9.0.24-preview.0.12 132 10/19/2025
9.0.24-preview.0.11 75 10/18/2025
9.0.24-preview.0.8 66 10/18/2025
9.0.24-preview.0.7 55 10/18/2025
9.0.24-preview.0.6 37 10/18/2025
9.0.24-preview.0.5 53 10/17/2025
9.0.24-preview.0.4 56 10/17/2025
9.0.24-preview.0.3 50 10/17/2025
9.0.24-preview.0.1 58 10/17/2025
9.0.23 668 10/17/2025
9.0.23-preview.0.32 142 10/16/2025
9.0.23-preview.0.31 128 10/15/2025
9.0.23-preview.0.30 117 10/15/2025
9.0.23-preview.0.29 127 10/15/2025
9.0.23-preview.0.28 128 10/14/2025
9.0.23-preview.0.27 127 10/14/2025
9.0.23-preview.0.26 127 10/14/2025
9.0.23-preview.0.25 134 10/14/2025
9.0.23-preview.0.23 127 10/14/2025
9.0.23-preview.0.19 130 10/14/2025
9.0.23-preview.0.16 134 10/14/2025
9.0.23-preview.0.15 132 10/14/2025
9.0.23-preview.0.11 365 10/13/2025
9.0.23-preview.0.8 80 10/17/2025
9.0.23-preview.0.6 72 10/17/2025
9.0.23-preview.0.5 75 10/17/2025
9.0.23-preview.0.4 126 10/16/2025
9.0.23-preview.0.3 147 10/16/2025
9.0.23-preview.0.2 132 10/13/2025
9.0.23-preview.0.1 127 10/13/2025
9.0.22 995 10/13/2025
9.0.22-preview.0.1 62 10/10/2025
9.0.21 704 10/9/2025
9.0.21-preview.0.13 127 10/9/2025
9.0.21-preview.0.12 123 10/9/2025
9.0.21-preview.0.11 143 10/9/2025
9.0.21-preview.0.10 127 10/9/2025
9.0.21-preview.0.9 130 10/8/2025
9.0.21-preview.0.8 122 10/8/2025
9.0.21-preview.0.7 133 10/8/2025
9.0.21-preview.0.6 133 10/8/2025
9.0.21-preview.0.5 143 10/7/2025
9.0.21-preview.0.4 134 10/7/2025
9.0.21-preview.0.3 133 10/7/2025
9.0.21-preview.0.2 174 10/6/2025
9.0.21-preview.0.1 86 10/3/2025
9.0.20 790 10/2/2025
9.0.20-preview.0.4 152 10/2/2025
9.0.20-preview.0.3 157 10/1/2025
9.0.20-preview.0.1 137 10/1/2025
9.0.19 756 10/1/2025
9.0.18 843 9/30/2025
9.0.18-preview.0.4 179 9/30/2025
9.0.18-preview.0.2 185 9/30/2025
9.0.17 769 9/30/2025
9.0.17-preview.0.2 182 9/29/2025
9.0.17-preview.0.1 182 9/29/2025
9.0.16 800 9/29/2025
9.0.16-preview.0.1 199 9/28/2025
9.0.15 796 9/28/2025
9.0.14 825 9/24/2025
9.0.12 821 9/24/2025
9.0.12-preview.0.3 243 9/23/2025
9.0.11 788 9/23/2025
9.0.11-preview.0.3 207 9/23/2025
9.0.11-preview.0.2 227 9/22/2025
9.0.11-preview.0.1 214 9/22/2025
9.0.10 809 9/22/2025
9.0.10-preview.0.1 131 8/19/2025
9.0.9 700 8/19/2025
9.0.9-preview.0.1 125 8/18/2025
9.0.8 755 8/7/2025
9.0.7 764 8/5/2025
9.0.6 779 8/5/2025
9.0.6-preview.0.9 128 7/15/2025
9.0.6-preview.0.6 137 7/14/2025
9.0.6-preview.0.5 129 7/14/2025
9.0.6-preview.0.3 91 7/12/2025
9.0.5 1,041 7/9/2025
9.0.5-preview.0.1 150 7/8/2025
9.0.4 750 7/8/2025
9.0.4-preview.0.4 215 7/8/2025
9.0.4-preview.0.3 182 7/8/2025
9.0.4-preview.0.2 164 7/8/2025
9.0.4-preview.0.1 136 7/7/2025
9.0.3 693 7/4/2025
9.0.3-preview.0.1 143 7/3/2025
9.0.2 695 7/2/2025
9.0.2-preview.55 147 7/1/2025
9.0.2-preview.54 168 6/26/2025
9.0.2-preview.53 137 6/26/2025
9.0.2-preview.51 131 6/26/2025
9.0.2-preview.50 134 6/26/2025
9.0.2-preview.49 148 6/25/2025
9.0.2-preview.47 147 6/25/2025
9.0.2-preview.46 135 6/25/2025
9.0.2-preview.45 145 6/25/2025
9.0.2-preview.44 177 6/25/2025
9.0.2-preview.43 166 6/24/2025
9.0.2-preview.42 163 6/24/2025
9.0.2-preview.41 147 6/23/2025
9.0.2-preview.39 66 6/21/2025
9.0.2-preview.38 95 6/20/2025
9.0.2-preview.37 107 6/20/2025
9.0.2-preview.36 131 6/17/2025
9.0.2-preview.35 144 6/14/2025
9.0.2-preview.34 271 6/12/2025
9.0.2-preview.33 275 6/11/2025
9.0.2-preview.32 288 6/11/2025
9.0.2-preview.31 277 6/11/2025
9.0.2-preview.28 279 6/11/2025
9.0.2-preview.25 268 6/11/2025
9.0.2-preview.24 280 6/11/2025
9.0.2-preview.23 275 6/11/2025
9.0.2-preview.22 272 6/11/2025
9.0.2-preview.21 301 6/10/2025
9.0.2-preview.20 279 6/10/2025
9.0.2-preview.19 273 6/10/2025
9.0.2-preview.18 277 6/9/2025
9.0.2-preview.16 228 6/9/2025
9.0.2-preview.14 59 6/7/2025
9.0.2-preview.13 60 6/6/2025
9.0.2-preview.12 63 6/6/2025
9.0.2-preview.5 81 6/6/2025
9.0.2-preview.3 141 6/4/2025
9.0.2-preview.2 139 6/4/2025
9.0.2-preview.1 129 6/4/2025
9.0.1-preview.0.335 256 6/2/2025
9.0.1-preview.0.333 139 6/2/2025
9.0.1-preview.0.332 130 6/1/2025
9.0.1-preview.0.331 133 6/1/2025
9.0.1-preview.0.329 55 5/30/2025
9.0.1-preview.0.326 67 5/30/2025
9.0.1-preview.0.324 56 5/30/2025
9.0.1-preview.0.323 62 5/30/2025
9.0.1-preview.0.321 83 5/30/2025
9.0.1-preview.0.319 66 5/30/2025
9.0.1-preview.0.318 77 5/30/2025
9.0.1-preview.0.317 87 5/30/2025
9.0.1-preview.0.316 90 5/30/2025
9.0.1-preview.0.315 110 5/30/2025
9.0.1-preview.0.314 93 5/30/2025
9.0.1-preview.0.312 97 5/30/2025
9.0.1-preview.0.309 134 5/28/2025
9.0.1-preview.0.302 136 5/21/2025
9.0.1-preview.0.301 173 5/21/2025
9.0.1-preview.0.300 135 5/21/2025
9.0.1-preview.0.299 139 5/21/2025
9.0.1-preview.0.297 190 5/21/2025
9.0.1-preview.0.296 143 6/4/2025
9.0.1-preview.0.295 133 5/21/2025
9.0.1-preview.0.294 142 5/21/2025
9.0.1-preview.0.293 134 5/21/2025
9.0.1-preview.0.290 140 5/19/2025
9.0.1-preview.0.287 149 5/19/2025
9.0.1-preview.0.286 236 5/15/2025
9.0.1-preview.0.285 224 5/13/2025
9.0.1-preview.0.279 216 5/13/2025
9.0.1-preview.0.278 228 5/13/2025
9.0.1-preview.0.277 221 5/13/2025
9.0.1-preview.0.276 283 5/13/2025
9.0.1-preview.0.274 141 5/19/2025
9.0.1-preview.0.272 123 5/11/2025
9.0.1-preview.0.271 121 5/11/2025
9.0.1-preview.0.270 104 5/9/2025
9.0.1-preview.0.267 130 5/7/2025
9.0.1-preview.0.266 131 5/7/2025
9.0.1-preview.0.265 140 5/6/2025
9.0.1-preview.0.264 183 5/6/2025
9.0.1-preview.0.263 136 5/6/2025
9.0.1-preview.0.262 138 5/6/2025
9.0.1-preview.0.261 142 5/6/2025
9.0.1-preview.0.258 492 5/6/2025
9.0.1-preview.0.255 107 5/9/2025
9.0.1-preview.0.254 143 5/8/2025
9.0.1-preview.0.253 133 5/8/2025
9.0.1-preview.0.252 139 5/8/2025
9.0.1-preview.0.251 142 5/8/2025
9.0.1-preview.0.250 143 5/7/2025
9.0.1-preview.0.247 152 5/7/2025
9.0.1-preview.0.246 133 5/7/2025
9.0.1-preview.0.244 167 4/17/2025
9.0.1-preview.0.243 253 4/15/2025
9.0.1-preview.0.242 175 4/15/2025
9.0.1-preview.0.241 170 4/15/2025
9.0.1-preview.0.239 170 4/15/2025
9.0.1-preview.0.238 278 4/15/2025
9.0.1-preview.0.237 234 4/13/2025
9.0.1-preview.0.236 173 4/10/2025
9.0.1-preview.0.235 149 4/10/2025
9.0.1-preview.0.234 158 4/10/2025
9.0.1-preview.0.233 186 4/9/2025
9.0.1-preview.0.232 148 4/9/2025
9.0.1-preview.0.231 145 4/9/2025
9.0.1-preview.0.230 202 4/7/2025
9.0.1-preview.0.229 162 4/7/2025
9.0.1-preview.0.228 162 4/7/2025
9.0.1-preview.0.227 155 4/4/2025
9.0.1-preview.0.226 150 4/3/2025
9.0.1-preview.0.220 186 4/2/2025
9.0.1-preview.0.219 140 4/1/2025
9.0.1-preview.0.218 141 4/1/2025
9.0.1-preview.0.217 201 4/1/2025
9.0.1-preview.0.215 163 4/1/2025
9.0.1-preview.0.214 144 4/1/2025
9.0.1-preview.0.213 162 4/1/2025
9.0.1-preview.0.212 169 4/1/2025
9.0.1-preview.0.211 146 4/1/2025
9.0.1-preview.0.210 146 4/1/2025
9.0.1-preview.0.209 159 3/31/2025
9.0.1-preview.0.208 165 3/31/2025
9.0.1-preview.0.206 150 3/31/2025
9.0.1-preview.0.205 159 3/31/2025
9.0.1-preview.0.204 152 3/31/2025
9.0.1-preview.0.202 145 3/31/2025
9.0.1-preview.0.199 79 3/29/2025
9.0.1-preview.0.198 119 3/28/2025
9.0.1-preview.0.196 126 3/28/2025
9.0.1-preview.0.193 117 3/27/2025
9.0.1-preview.0.189 143 3/26/2025
9.0.1-preview.0.188 472 3/25/2025
9.0.1-preview.0.187 481 3/24/2025
9.0.1-preview.0.186 467 3/24/2025
9.0.1-preview.0.185 473 3/24/2025
9.0.1-preview.0.184 471 3/24/2025
9.0.1-preview.0.183 473 3/24/2025
9.0.1-preview.0.182 77 3/21/2025
9.0.1-preview.0.180 128 3/21/2025
9.0.1-preview.0.179 140 3/21/2025
9.0.1-preview.0.178 139 3/21/2025
9.0.1-preview.0.175 140 3/20/2025
9.0.1-preview.0.174 141 3/19/2025
9.0.1-preview.0.173 154 3/19/2025
9.0.1-preview.0.172 302 3/19/2025
9.0.1-preview.0.171 141 3/19/2025
9.0.1-preview.0.170 139 3/18/2025
9.0.1-preview.0.165 138 3/18/2025
9.0.1-preview.0.162 148 3/17/2025
9.0.1-preview.0.160 142 3/17/2025
9.0.1-preview.0.152 123 3/14/2025
9.0.1-preview.0.148 158 3/13/2025
9.0.1-preview.0.147 139 3/13/2025
9.0.1-preview.0.146 143 3/12/2025
9.0.1-preview.0.145 152 3/12/2025
9.0.1-preview.0.141 146 3/12/2025
9.0.1-preview.0.140 186 3/10/2025
9.0.1-preview.0.139 145 3/10/2025
9.0.1-preview.0.138 162 3/10/2025
9.0.1-preview.0.137 137 3/8/2025
9.0.1-preview.0.135 157 3/8/2025
9.0.1-preview.0.134 194 3/7/2025
9.0.1-preview.0.133 185 3/6/2025
9.0.1-preview.0.132 179 3/6/2025
9.0.1-preview.0.130 185 3/6/2025
9.0.1-preview.0.129 240 3/6/2025
9.0.1-preview.0.128 192 3/6/2025
9.0.1-preview.0.127 196 3/6/2025
9.0.1-preview.0.125 202 3/4/2025
9.0.1-preview.0.119 97 2/28/2025
9.0.1-preview.0.118 77 2/28/2025
9.0.1-preview.0.116 84 2/28/2025
9.0.1-preview.0.112 76 2/27/2025
9.0.1-preview.0.111 83 2/27/2025
9.0.1-preview.0.110 128 2/26/2025
9.0.1-preview.0.107 98 2/26/2025
9.0.1-preview.0.106 86 2/26/2025
9.0.1-preview.0.105 85 2/26/2025
9.0.1-preview.0.104 92 2/26/2025
9.0.1-preview.0.103 115 2/26/2025
9.0.1-preview.0.102 108 2/26/2025
9.0.1-preview.0.100 78 2/26/2025
9.0.1-preview.0.99 119 2/25/2025
9.0.1-preview.0.97 89 2/25/2025
9.0.1-preview.0.96 82 2/25/2025
9.0.1-preview.0.94 85 2/24/2025
9.0.1-preview.0.93 111 2/24/2025
9.0.1-preview.0.92 84 2/21/2025
9.0.1-preview.0.91 74 2/21/2025
9.0.1-preview.0.88 81 2/19/2025
9.0.1-preview.0.87 266 2/18/2025
9.0.1-preview.0.85 284 2/18/2025
9.0.1-preview.0.84 225 2/17/2025
9.0.1-preview.0.82 187 2/17/2025
9.0.1-preview.0.79 190 2/14/2025
9.0.1-preview.0.78 210 2/14/2025
9.0.1-preview.0.77 189 2/14/2025
9.0.1-preview.0.76 225 2/14/2025
9.0.1-preview.0.73 212 2/14/2025
9.0.1-preview.0.71 159 2/14/2025
9.0.1-preview.0.70 205 2/13/2025
9.0.1-preview.0.69 198 2/13/2025
9.0.1-preview.0.67 210 2/13/2025
9.0.1-preview.0.62 192 2/11/2025
9.0.1-preview.0.58 94 2/7/2025
9.0.1-preview.0.56 85 2/7/2025
9.0.1-preview.0.55 74 2/6/2025
9.0.1-preview.0.54 79 2/6/2025
9.0.1-preview.0.53 73 2/6/2025
9.0.1-preview.0.52 72 2/6/2025
9.0.1-preview.0.50 92 2/6/2025
9.0.1-preview.0.49 138 2/6/2025
9.0.1-preview.0.47 76 2/6/2025
9.0.1-preview.0.45 82 2/6/2025
9.0.1-preview.0.43 81 2/5/2025
9.0.1-preview.0.42 85 2/5/2025
9.0.1-preview.0.41 83 2/5/2025
9.0.1-preview.0.35 86 2/4/2025
9.0.1-preview.0.20 83 1/30/2025
9.0.1-preview.0.19 75 1/30/2025
9.0.1-preview.0.18 79 1/30/2025
9.0.1-preview.0.14 77 1/30/2025
9.0.1-preview.0.13 84 1/30/2025
9.0.1-preview.0.11 72 1/29/2025
9.0.1-preview.0.10 73 1/29/2025
9.0.1-preview.0.9 75 1/27/2025
9.0.1-preview.0.2 133 1/27/2025
3.0.5-preview.0.2 145 4/1/2025
3.0.5-preview.0.1 97 2/11/2025
3.0.4 882 1/25/2025
3.0.4-preview.0.38 84 1/25/2025
3.0.4-preview.0.37 124 12/6/2024
3.0.4-preview.0.36 220 12/5/2024
3.0.4-preview.0.34 86 12/5/2024
3.0.4-preview.0.32 85 12/4/2024
3.0.4-preview.0.31 108 11/25/2024
3.0.4-preview.0.30 88 11/25/2024
3.0.4-preview.0.29 75 11/21/2024
3.0.4-preview.0.28 136 11/19/2024
3.0.4-preview.0.27 81 11/19/2024
3.0.4-preview.0.23 87 11/19/2024
3.0.4-preview.0.21 70 11/19/2024
3.0.4-preview.0.20 76 11/18/2024
3.0.4-preview.0.19 88 11/18/2024
3.0.4-preview.0.18 74 11/18/2024
3.0.4-preview.0.17 76 11/18/2024
3.0.4-preview.0.16 82 11/15/2024
3.0.4-preview.0.15 82 11/15/2024
3.0.4-preview.0.14 95 11/2/2024
3.0.4-preview.0.13 90 10/29/2024
3.0.4-preview.0.12 83 10/29/2024
3.0.4-preview.0.8 84 10/29/2024
3.0.4-preview.0.7 88 10/29/2024
3.0.4-preview.0.6 79 10/24/2024
3.0.4-preview.0.5 89 10/23/2024
3.0.4-preview.0.4 80 10/23/2024
3.0.4-preview.0.3 80 10/23/2024
3.0.4-preview.0.2 83 10/23/2024
3.0.4-preview.0.1 221 10/16/2024
3.0.3 745 10/11/2024
3.0.3-preview.0.56 96 10/10/2024
3.0.3-preview.0.55 89 10/10/2024
3.0.3-preview.0.54 90 10/10/2024
3.0.3-preview.0.50 88 10/10/2024
3.0.3-preview.0.49 103 10/9/2024
3.0.3-preview.0.44 104 10/8/2024
3.0.3-preview.0.43 85 10/8/2024
3.0.3-preview.0.42 84 10/7/2024
3.0.3-preview.0.41 85 10/7/2024
3.0.3-preview.0.40 123 10/1/2024
3.0.3-preview.0.39 86 10/1/2024
3.0.3-preview.0.38 84 10/1/2024
3.0.3-preview.0.36 87 9/30/2024
3.0.3-preview.0.35 103 9/26/2024
3.0.3-preview.0.34 98 9/26/2024
3.0.3-preview.0.33 85 9/26/2024
3.0.3-preview.0.32 113 9/24/2024
3.0.3-preview.0.31 861 9/10/2024
3.0.3-preview.0.30 85 9/9/2024
3.0.3-preview.0.29 81 9/9/2024
3.0.3-preview.0.28 71 9/8/2024
3.0.3-preview.0.27 91 9/5/2024
3.0.3-preview.0.26 90 9/3/2024
3.0.3-preview.0.25 89 9/3/2024
3.0.3-preview.0.24 95 9/3/2024
3.0.3-preview.0.23 108 8/21/2024
3.0.3-preview.0.22 72 7/29/2024
3.0.3-preview.0.21 94 7/25/2024
3.0.3-preview.0.18 93 7/12/2024
3.0.3-preview.0.17 87 7/12/2024
3.0.3-preview.0.16 81 7/12/2024
3.0.3-preview.0.15 80 7/5/2024
3.0.3-preview.0.14 147 6/24/2024
3.0.3-preview.0.13 107 6/23/2024
3.0.3-preview.0.12 104 6/21/2024
3.0.3-preview.0.11 108 6/20/2024
3.0.3-preview.0.9 379 5/27/2024
3.0.3-preview.0.8 94 5/27/2024
3.0.3-preview.0.7 125 5/17/2024
3.0.3-preview.0.6 96 5/14/2024
3.0.3-preview.0.5 393 5/8/2024
3.0.3-preview.0.3 120 5/6/2024
3.0.3-preview.0.1 108 4/25/2024
3.0.2 1,746 4/25/2024
3.0.2-preview.0.4 117 4/25/2024
3.0.2-preview.0.3 172 4/25/2024
3.0.2-preview.0.2 117 4/25/2024
3.0.2-preview.0.1 95 4/25/2024
3.0.1 774 4/25/2024
3.0.1-preview.0.10 106 4/24/2024
3.0.1-preview.0.9 202 4/19/2024
3.0.1-preview.0.8 87 4/24/2024
3.0.1-preview.0.7 160 4/24/2024

## Release 9.0.0 [25.04.24]

- [N] Initial release

-----

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