BridgingIT.DevKit.Common.Abstractions 9.0.1-preview.0.263

This is a prerelease version of BridgingIT.DevKit.Common.Abstractions.
There is a newer version of this package available.
See the version list below for details.
dotnet add package BridgingIT.DevKit.Common.Abstractions --version 9.0.1-preview.0.263
                    
NuGet\Install-Package BridgingIT.DevKit.Common.Abstractions -Version 9.0.1-preview.0.263
                    
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.1-preview.0.263" />
                    
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.1-preview.0.263" />
                    
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.1-preview.0.263
                    
#r "nuget: BridgingIT.DevKit.Common.Abstractions, 9.0.1-preview.0.263"
                    
#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.1-preview.0.263
                    
#: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.1-preview.0.263&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=BridgingIT.DevKit.Common.Abstractions&version=9.0.1-preview.0.263&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.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.

BridgingIT.DevKit.Application.Messaging

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.6-preview.0.9 29 7/15/2025
9.0.6-preview.0.6 39 7/14/2025
9.0.6-preview.0.5 33 7/14/2025
9.0.6-preview.0.3 31 7/12/2025
9.0.5 506 7/9/2025
9.0.5-preview.0.1 121 7/8/2025
9.0.4 406 7/8/2025
9.0.4-preview.0.4 194 7/8/2025
9.0.4-preview.0.3 161 7/8/2025
9.0.4-preview.0.2 145 7/8/2025
9.0.4-preview.0.1 111 7/7/2025
9.0.3 349 7/4/2025
9.0.3-preview.0.1 120 7/3/2025
9.0.2 359 7/2/2025
9.0.2-preview.55 127 7/1/2025
9.0.2-preview.54 150 6/26/2025
9.0.2-preview.53 116 6/26/2025
9.0.2-preview.51 114 6/26/2025
9.0.2-preview.50 115 6/26/2025
9.0.2-preview.49 131 6/25/2025
9.0.2-preview.47 127 6/25/2025
9.0.2-preview.46 112 6/25/2025
9.0.2-preview.45 128 6/25/2025
9.0.2-preview.44 158 6/25/2025
9.0.2-preview.43 149 6/24/2025
9.0.2-preview.42 143 6/24/2025
9.0.2-preview.41 128 6/23/2025
9.0.2-preview.39 46 6/21/2025
9.0.2-preview.38 77 6/20/2025
9.0.2-preview.37 91 6/20/2025
9.0.2-preview.36 115 6/17/2025
9.0.2-preview.35 127 6/14/2025
9.0.2-preview.34 256 6/12/2025
9.0.2-preview.33 259 6/11/2025
9.0.2-preview.32 272 6/11/2025
9.0.2-preview.31 258 6/11/2025
9.0.2-preview.28 261 6/11/2025
9.0.2-preview.25 255 6/11/2025
9.0.2-preview.24 261 6/11/2025
9.0.2-preview.23 258 6/11/2025
9.0.2-preview.22 256 6/11/2025
9.0.2-preview.21 282 6/10/2025
9.0.2-preview.20 263 6/10/2025
9.0.2-preview.19 256 6/10/2025
9.0.2-preview.18 258 6/9/2025
9.0.2-preview.16 212 6/9/2025
9.0.2-preview.14 44 6/7/2025
9.0.2-preview.13 44 6/6/2025
9.0.2-preview.12 44 6/6/2025
9.0.2-preview.5 63 6/6/2025
9.0.2-preview.3 127 6/4/2025
9.0.2-preview.2 122 6/4/2025
9.0.2-preview.1 113 6/4/2025
9.0.1-preview.0.335 236 6/2/2025
9.0.1-preview.0.333 125 6/2/2025
9.0.1-preview.0.332 117 6/1/2025
9.0.1-preview.0.331 117 6/1/2025
9.0.1-preview.0.329 41 5/30/2025
9.0.1-preview.0.326 53 5/30/2025
9.0.1-preview.0.324 42 5/30/2025
9.0.1-preview.0.323 47 5/30/2025
9.0.1-preview.0.321 69 5/30/2025
9.0.1-preview.0.319 51 5/30/2025
9.0.1-preview.0.318 63 5/30/2025
9.0.1-preview.0.317 69 5/30/2025
9.0.1-preview.0.316 73 5/30/2025
9.0.1-preview.0.315 92 5/30/2025
9.0.1-preview.0.314 76 5/30/2025
9.0.1-preview.0.312 80 5/30/2025
9.0.1-preview.0.309 116 5/28/2025
9.0.1-preview.0.302 117 5/21/2025
9.0.1-preview.0.301 156 5/21/2025
9.0.1-preview.0.300 118 5/21/2025
9.0.1-preview.0.299 124 5/21/2025
9.0.1-preview.0.297 173 5/21/2025
9.0.1-preview.0.296 127 6/4/2025
9.0.1-preview.0.295 114 5/21/2025
9.0.1-preview.0.294 120 5/21/2025
9.0.1-preview.0.293 115 5/21/2025
9.0.1-preview.0.290 123 5/19/2025
9.0.1-preview.0.287 132 5/19/2025
9.0.1-preview.0.286 217 5/15/2025
9.0.1-preview.0.285 208 5/13/2025
9.0.1-preview.0.279 199 5/13/2025
9.0.1-preview.0.278 211 5/13/2025
9.0.1-preview.0.277 207 5/13/2025
9.0.1-preview.0.276 262 5/13/2025
9.0.1-preview.0.274 124 5/19/2025
9.0.1-preview.0.272 109 5/11/2025
9.0.1-preview.0.271 108 5/11/2025
9.0.1-preview.0.270 89 5/9/2025
9.0.1-preview.0.267 115 5/7/2025
9.0.1-preview.0.266 115 5/7/2025
9.0.1-preview.0.265 122 5/6/2025
9.0.1-preview.0.264 168 5/6/2025
9.0.1-preview.0.263 120 5/6/2025
9.0.1-preview.0.262 122 5/6/2025
9.0.1-preview.0.261 125 5/6/2025
9.0.1-preview.0.258 476 5/6/2025
9.0.1-preview.0.255 88 5/9/2025
9.0.1-preview.0.254 124 5/8/2025
9.0.1-preview.0.253 117 5/8/2025
9.0.1-preview.0.252 122 5/8/2025
9.0.1-preview.0.251 117 5/8/2025
9.0.1-preview.0.250 127 5/7/2025
9.0.1-preview.0.247 134 5/7/2025
9.0.1-preview.0.246 118 5/7/2025
9.0.1-preview.0.244 154 4/17/2025
9.0.1-preview.0.243 231 4/15/2025
9.0.1-preview.0.242 160 4/15/2025
9.0.1-preview.0.241 157 4/15/2025
9.0.1-preview.0.239 156 4/15/2025
9.0.1-preview.0.238 260 4/15/2025
9.0.1-preview.0.237 215 4/13/2025
9.0.1-preview.0.236 153 4/10/2025
9.0.1-preview.0.235 134 4/10/2025
9.0.1-preview.0.234 146 4/10/2025
9.0.1-preview.0.233 169 4/9/2025
9.0.1-preview.0.232 132 4/9/2025
9.0.1-preview.0.231 129 4/9/2025
9.0.1-preview.0.230 185 4/7/2025
9.0.1-preview.0.229 144 4/7/2025
9.0.1-preview.0.228 148 4/7/2025
9.0.1-preview.0.227 139 4/4/2025
9.0.1-preview.0.226 134 4/3/2025
9.0.1-preview.0.220 170 4/2/2025
9.0.1-preview.0.219 123 4/1/2025
9.0.1-preview.0.218 123 4/1/2025
9.0.1-preview.0.217 186 4/1/2025
9.0.1-preview.0.215 148 4/1/2025
9.0.1-preview.0.214 128 4/1/2025
9.0.1-preview.0.213 148 4/1/2025
9.0.1-preview.0.212 154 4/1/2025
9.0.1-preview.0.211 128 4/1/2025
9.0.1-preview.0.210 132 4/1/2025
9.0.1-preview.0.209 145 3/31/2025
9.0.1-preview.0.208 148 3/31/2025
9.0.1-preview.0.206 130 3/31/2025
9.0.1-preview.0.205 139 3/31/2025
9.0.1-preview.0.204 136 3/31/2025
9.0.1-preview.0.202 128 3/31/2025
9.0.1-preview.0.199 65 3/29/2025
9.0.1-preview.0.198 104 3/28/2025
9.0.1-preview.0.196 110 3/28/2025
9.0.1-preview.0.193 103 3/27/2025
9.0.1-preview.0.189 128 3/26/2025
9.0.1-preview.0.188 457 3/25/2025
9.0.1-preview.0.187 467 3/24/2025
9.0.1-preview.0.186 454 3/24/2025
9.0.1-preview.0.185 455 3/24/2025
9.0.1-preview.0.184 458 3/24/2025
9.0.1-preview.0.183 454 3/24/2025
9.0.1-preview.0.182 64 3/21/2025
9.0.1-preview.0.180 115 3/21/2025
9.0.1-preview.0.179 124 3/21/2025
9.0.1-preview.0.178 121 3/21/2025
9.0.1-preview.0.175 123 3/20/2025
9.0.1-preview.0.174 123 3/19/2025
9.0.1-preview.0.173 138 3/19/2025
9.0.1-preview.0.172 286 3/19/2025
9.0.1-preview.0.171 121 3/19/2025
9.0.1-preview.0.170 121 3/18/2025
9.0.1-preview.0.165 121 3/18/2025
9.0.1-preview.0.162 131 3/17/2025
9.0.1-preview.0.160 124 3/17/2025
9.0.1-preview.0.152 104 3/14/2025
9.0.1-preview.0.148 145 3/13/2025
9.0.1-preview.0.147 125 3/13/2025
9.0.1-preview.0.146 127 3/12/2025
9.0.1-preview.0.145 134 3/12/2025
9.0.1-preview.0.141 131 3/12/2025
9.0.1-preview.0.140 172 3/10/2025
9.0.1-preview.0.139 129 3/10/2025
9.0.1-preview.0.138 144 3/10/2025
9.0.1-preview.0.137 122 3/8/2025
9.0.1-preview.0.135 139 3/8/2025
9.0.1-preview.0.134 178 3/7/2025
9.0.1-preview.0.133 172 3/6/2025
9.0.1-preview.0.132 167 3/6/2025
9.0.1-preview.0.130 167 3/6/2025
9.0.1-preview.0.129 221 3/6/2025
9.0.1-preview.0.128 173 3/6/2025
9.0.1-preview.0.127 179 3/6/2025
9.0.1-preview.0.125 187 3/4/2025
9.0.1-preview.0.119 82 2/28/2025
9.0.1-preview.0.118 64 2/28/2025
9.0.1-preview.0.116 70 2/28/2025
9.0.1-preview.0.112 60 2/27/2025
9.0.1-preview.0.111 68 2/27/2025
9.0.1-preview.0.110 117 2/26/2025
9.0.1-preview.0.107 82 2/26/2025
9.0.1-preview.0.106 73 2/26/2025
9.0.1-preview.0.105 69 2/26/2025
9.0.1-preview.0.104 75 2/26/2025
9.0.1-preview.0.103 94 2/26/2025
9.0.1-preview.0.102 91 2/26/2025
9.0.1-preview.0.100 60 2/26/2025
9.0.1-preview.0.99 102 2/25/2025
9.0.1-preview.0.97 71 2/25/2025
9.0.1-preview.0.96 65 2/25/2025
9.0.1-preview.0.94 67 2/24/2025
9.0.1-preview.0.93 96 2/24/2025
9.0.1-preview.0.92 67 2/21/2025
9.0.1-preview.0.91 59 2/21/2025
9.0.1-preview.0.88 67 2/19/2025
9.0.1-preview.0.87 250 2/18/2025
9.0.1-preview.0.85 269 2/18/2025
9.0.1-preview.0.84 208 2/17/2025
9.0.1-preview.0.82 168 2/17/2025
9.0.1-preview.0.79 176 2/14/2025
9.0.1-preview.0.78 196 2/14/2025
9.0.1-preview.0.77 171 2/14/2025
9.0.1-preview.0.76 208 2/14/2025
9.0.1-preview.0.73 200 2/14/2025
9.0.1-preview.0.71 146 2/14/2025
9.0.1-preview.0.70 191 2/13/2025
9.0.1-preview.0.69 183 2/13/2025
9.0.1-preview.0.67 190 2/13/2025
9.0.1-preview.0.62 174 2/11/2025
9.0.1-preview.0.58 82 2/7/2025
9.0.1-preview.0.56 74 2/7/2025
9.0.1-preview.0.55 60 2/6/2025
9.0.1-preview.0.54 64 2/6/2025
9.0.1-preview.0.53 58 2/6/2025
9.0.1-preview.0.52 62 2/6/2025
9.0.1-preview.0.50 78 2/6/2025
9.0.1-preview.0.49 121 2/6/2025
9.0.1-preview.0.47 61 2/6/2025
9.0.1-preview.0.45 67 2/6/2025
9.0.1-preview.0.43 68 2/5/2025
9.0.1-preview.0.42 66 2/5/2025
9.0.1-preview.0.41 69 2/5/2025
9.0.1-preview.0.35 69 2/4/2025
9.0.1-preview.0.20 66 1/30/2025
9.0.1-preview.0.19 59 1/30/2025
9.0.1-preview.0.18 63 1/30/2025
9.0.1-preview.0.14 62 1/30/2025
9.0.1-preview.0.13 70 1/30/2025
9.0.1-preview.0.11 58 1/29/2025
9.0.1-preview.0.10 56 1/29/2025
9.0.1-preview.0.9 62 1/27/2025
9.0.1-preview.0.2 119 1/27/2025
3.0.5-preview.0.2 132 4/1/2025
3.0.5-preview.0.1 83 2/11/2025
3.0.4 507 1/25/2025
3.0.4-preview.0.38 71 1/25/2025
3.0.4-preview.0.37 109 12/6/2024
3.0.4-preview.0.36 202 12/5/2024
3.0.4-preview.0.34 73 12/5/2024
3.0.4-preview.0.32 73 12/4/2024
3.0.4-preview.0.31 90 11/25/2024
3.0.4-preview.0.30 70 11/25/2024
3.0.4-preview.0.29 63 11/21/2024
3.0.4-preview.0.28 123 11/19/2024
3.0.4-preview.0.27 65 11/19/2024
3.0.4-preview.0.23 66 11/19/2024
3.0.4-preview.0.21 57 11/19/2024
3.0.4-preview.0.20 62 11/18/2024
3.0.4-preview.0.19 72 11/18/2024
3.0.4-preview.0.18 58 11/18/2024
3.0.4-preview.0.17 60 11/18/2024
3.0.4-preview.0.16 66 11/15/2024
3.0.4-preview.0.15 60 11/15/2024
3.0.4-preview.0.14 79 11/2/2024
3.0.4-preview.0.13 74 10/29/2024
3.0.4-preview.0.12 66 10/29/2024
3.0.4-preview.0.8 72 10/29/2024
3.0.4-preview.0.7 73 10/29/2024
3.0.4-preview.0.6 64 10/24/2024
3.0.4-preview.0.5 72 10/23/2024
3.0.4-preview.0.4 63 10/23/2024
3.0.4-preview.0.3 64 10/23/2024
3.0.4-preview.0.2 69 10/23/2024
3.0.4-preview.0.1 207 10/16/2024
3.0.3 392 10/11/2024
3.0.3-preview.0.56 79 10/10/2024
3.0.3-preview.0.55 72 10/10/2024
3.0.3-preview.0.54 77 10/10/2024
3.0.3-preview.0.50 73 10/10/2024
3.0.3-preview.0.49 89 10/9/2024
3.0.3-preview.0.44 94 10/8/2024
3.0.3-preview.0.43 70 10/8/2024
3.0.3-preview.0.42 71 10/7/2024
3.0.3-preview.0.41 73 10/7/2024
3.0.3-preview.0.40 106 10/1/2024
3.0.3-preview.0.39 74 10/1/2024
3.0.3-preview.0.38 70 10/1/2024
3.0.3-preview.0.36 75 9/30/2024
3.0.3-preview.0.35 90 9/26/2024
3.0.3-preview.0.34 83 9/26/2024
3.0.3-preview.0.33 71 9/26/2024
3.0.3-preview.0.32 101 9/24/2024
3.0.3-preview.0.31 770 9/10/2024
3.0.3-preview.0.30 69 9/9/2024
3.0.3-preview.0.29 65 9/9/2024
3.0.3-preview.0.28 56 9/8/2024
3.0.3-preview.0.27 78 9/5/2024
3.0.3-preview.0.26 76 9/3/2024
3.0.3-preview.0.25 67 9/3/2024
3.0.3-preview.0.24 80 9/3/2024
3.0.3-preview.0.23 90 8/21/2024
3.0.3-preview.0.22 60 7/29/2024
3.0.3-preview.0.21 78 7/25/2024
3.0.3-preview.0.18 79 7/12/2024
3.0.3-preview.0.17 74 7/12/2024
3.0.3-preview.0.16 62 7/12/2024
3.0.3-preview.0.15 66 7/5/2024
3.0.3-preview.0.14 133 6/24/2024
3.0.3-preview.0.13 95 6/23/2024
3.0.3-preview.0.12 86 6/21/2024
3.0.3-preview.0.11 85 6/20/2024
3.0.3-preview.0.9 367 5/27/2024
3.0.3-preview.0.8 77 5/27/2024
3.0.3-preview.0.7 106 5/17/2024
3.0.3-preview.0.6 81 5/14/2024
3.0.3-preview.0.5 320 5/8/2024
3.0.3-preview.0.3 103 5/6/2024
3.0.3-preview.0.1 92 4/25/2024
3.0.2 1,348 4/25/2024
3.0.2-preview.0.4 100 4/25/2024
3.0.2-preview.0.3 154 4/25/2024
3.0.2-preview.0.2 103 4/25/2024
3.0.2-preview.0.1 79 4/25/2024
3.0.1 442 4/25/2024
3.0.1-preview.0.10 88 4/24/2024
3.0.1-preview.0.9 192 4/19/2024
3.0.1-preview.0.8 73 4/24/2024
3.0.1-preview.0.7 141 4/24/2024

## Release 3.0.1 [25.04.24]

- [N] Initial release

-----

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