AdaskoTheBeAsT.Identity.Dapper.SqlServer 3.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package AdaskoTheBeAsT.Identity.Dapper.SqlServer --version 3.0.2
                    
NuGet\Install-Package AdaskoTheBeAsT.Identity.Dapper.SqlServer -Version 3.0.2
                    
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="AdaskoTheBeAsT.Identity.Dapper.SqlServer" Version="3.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AdaskoTheBeAsT.Identity.Dapper.SqlServer" Version="3.0.2" />
                    
Directory.Packages.props
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.SqlServer" />
                    
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 AdaskoTheBeAsT.Identity.Dapper.SqlServer --version 3.0.2
                    
#r "nuget: AdaskoTheBeAsT.Identity.Dapper.SqlServer, 3.0.2"
                    
#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 AdaskoTheBeAsT.Identity.Dapper.SqlServer@3.0.2
                    
#: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=AdaskoTheBeAsT.Identity.Dapper.SqlServer&version=3.0.2
                    
Install as a Cake Addin
#tool nuget:?package=AdaskoTheBeAsT.Identity.Dapper.SqlServer&version=3.0.2
                    
Install as a Cake Tool

๐Ÿš€ AdaskoTheBeAsT.Identity.Dapper

License .NET NuGet

High-performance, lightweight ASP.NET Core Identity implementation using Dapper and Source Generators ๐Ÿ”ฅ

Tired of Entity Framework overhead for Identity? This library provides a blazing-fast Dapper-based alternative with zero runtime reflection thanks to C# Source Generators!

โœจ Why Choose This Library?

  • ๐Ÿš„ Performance First: Dapper's speed + source-generated queries = maximum performance
  • ๐ŸŽฏ Type-Safe: Full compile-time safety with C# Source Generators
  • ๐Ÿ”ง Flexible: Support for custom ID types (string, int, long, Guid) and custom properties
  • ๐Ÿ—„๏ธ Multi-Database: SQL Server, PostgreSQL, MySQL, Oracle, and SQLite
  • โšก Zero Configuration: Sensible defaults, works out of the box
  • ๐ŸŽจ Customizable: Skip normalized columns, insert your own IDs, extend entities
  • ๐Ÿ“ฆ Lightweight: No heavy ORM dependencies
  • ๐Ÿงช Battle-Tested: Comprehensive unit and integration tests

๐ŸŽฏ Key Features

โœ… Source Code Generation - All queries generated at compile-time
โœ… Custom Identity Classes - Extend base classes with your own properties
โœ… Flexible ID Types - Use string, int, long, or Guid as primary keys
โœ… Optional Normalized Fields - Skip unnecessary normalized columns
โœ… Insert Own IDs - Perfect for syncing with external identity providers (Azure AD, Auth0, etc.)
โœ… Multiple Databases - One codebase, many database options
โœ… Modern C# - Uses latest C# 12 features with nullable reference types

๐Ÿ“š Quick Start

See our Sample Project for a complete working example!

Breaking changes in version 2.x.x

  1. Changed main classes and interfaces due to Oracle integration. Now Oracle uses Dapper.Oracle package.
  • base interface IIdentityDbConnectionProvider to IIdentityDbConnectionProvider<out TDbConnection>.
  • base class DapperRoleStoreBase<TRole, TKey, TRoleClaim> to DapperRoleStoreBase<TRole, TKey, TRoleClaim, TDbConnection>.
  • base class DapperUserOnlyStoreBase<TUser, TKey, TUserClaim, TUserLogin, TUserToken> to DapperUserOnlyStoreBase<TUser, TKey, TUserClaim, TUserLogin, TUserToken, TDbConnection>.
  • base class DapperUserStoreBase<TUser, TRole, TKey, TUserClaim, TUserRole, TUserLogin, TUserToken> to DapperUserStoreBase<TUser, TRole, TKey, TUserClaim, TUserRole, TUserLogin, TUserToken, TDbConnection>.

Additional features in version 2.x.x

  1. Added InsertOwnIdAttribute attribute. Now you can can insert own User Id and own Role Id when creating users and roles. It can help in scenarios when for example you want to have same Id for user in your database and in Azure Active Directory.
  2. All settings have their default values and are distributed in packages.

๐Ÿ“ฆ Installation

Choose the package that matches your database:

# SQL Server
dotnet add package AdaskoTheBeAsT.Identity.Dapper.SqlServer

# PostgreSQL
dotnet add package AdaskoTheBeAsT.Identity.Dapper.PostgreSql

# MySQL
dotnet add package AdaskoTheBeAsT.Identity.Dapper.MySql

# Oracle
dotnet add package AdaskoTheBeAsT.Identity.Dapper.Oracle

# SQLite
dotnet add package AdaskoTheBeAsT.Identity.Dapper.Sqlite

๐ŸŽ“ Usage (version 2.x.x)

Step 1: Define Your Identity Classes

Create classes that inherit from Microsoft Identity base classes:

using Microsoft.AspNetCore.Identity;

namespace Sample.SqlServer;

public class ApplicationRole
    : IdentityRole<Guid>
{
}

public class ApplicationRoleClaim
    : IdentityRoleClaim<Guid>
{
}

// attribute is optional
// if you want to use your own Id type you can use this attribute
// it is helpful when for example you want to store MSAL user id
// as your id
[InsertOwnIdAttribute]
public class ApplicationUser
    : IdentityUser<Guid>
{
    // you can add your own properties with own column name 
    // (please manually add them to database or by script)
    [Column("IsActive")]
    public bool Active { get; set; }
}

public class ApplicationUserClaim
    : IdentityUserClaim<Guid>
{
}

public class ApplicationUserLogin
    : IdentityUserLogin<Guid>
{
}

public class ApplicationUserRole
    : IdentityUserRole<Guid>
{
}

public class ApplicationUserToken
    : IdentityUserToken<Guid>
{
}

๐Ÿ’ก Pro Tip: Use [InsertOwnIdAttribute] to provide your own IDs when creating users/roles - perfect for syncing with external identity providers!

Step 2: Register Identity Stores

builder.Services.AddIdentity<ApplicationUser, ApplicationRole>()
    .AddRoleStore<ApplicationRoleStore>()
    .AddUserStore<ApplicationUserStore>()
    .AddDefaultTokenProviders();

Step 3: Implement Connection Provider

Implement the connection provider interface for your database:

public class IdentityDbConnectionProvider
    : IIdentityDbConnectionProvider<SqlConnection>
{
    private readonly IConfiguration _configuration;

    public IdentityDbConnectionProvider(IConfiguration configuration)
    {
        _configuration = configuration;
    }

    public SqlConnection Provide()
    {
        return new SqlConnection(_configuration.GetConnectionString("DefaultIdentityConnection"));
    }
}

...

builder.Services.AddSingleton<IIdentityDbConnectionProvider<SqlConnection>, IdentityDbConnectionProvider>();

Step 4: Configure Database-Specific Settings

Choose your database provider and configure accordingly:

SqlServer

  1. In your project add nuget packages
  <ItemGroup>
    <PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="2.0.0" />
    <PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.SqlServer" Version="2.0.0" />
    <PackageReference Include="Dapper" Version="2.1.35" />
    <PackageReference Include="Dapper.SqlBuilder" Version="2.0.78" />
    <PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.1" />
    <PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.8" />
    <PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.8" />
  </ItemGroup>
  1. Optional settings which you can add to project file - below are default values
    • it is safe to skip - add only if you want to modify them
  <PropertyGroup>
    
    <EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>

    
    <CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>

    
    <AdaskoTheBeAsTIdentityDapper_DbSchema>dbo</AdaskoTheBeAsTIdentityDapper_DbSchema>

    
    <AdaskoTheBeAsTIdentityDapper_SkipNormalized>false</AdaskoTheBeAsTIdentityDapper_SkipNormalized>
  </PropertyGroup>

PostgreSql

  1. In your project add nuget packages
  <ItemGroup>
    <PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="2.0.0" />
    <PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.PostgreSql" Version="2.0.0" />
    <PackageReference Include="Dapper" Version="2.1.35" />
    <PackageReference Include="Dapper.SqlBuilder" Version="2.0.78" />
    <PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.8" />
    <PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.8" />
    <PackageReference Include="Npgsql" Version="6.0.0" />
  </ItemGroup>
  1. Optional settings which you can add to project file - below are default values
    • it is safe to skip - add only if you want to modify them
  <PropertyGroup>
    
    <EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>

    
    <CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>

    
    <AdaskoTheBeAsTIdentityDapper_DbSchema>public</AdaskoTheBeAsTIdentityDapper_DbSchema>

    
    <AdaskoTheBeAsTIdentityDapper_SkipNormalized>false</AdaskoTheBeAsTIdentityDapper_SkipNormalized>
  </PropertyGroup>

MySql

  1. In your project add nuget packages
  <ItemGroup>
    <PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="2.0.0" />
    <PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.MySql" Version="2.0.0" />
    <PackageReference Include="Dapper" Version="2.1.35" />
    <PackageReference Include="Dapper.SqlBuilder" Version="2.0.78" />
    <PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.8" />
    <PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.8" />
    <PackageReference Include="MySql.Data" Version="9.0.0" />
  </ItemGroup>
  1. Optional settings which you can add to project file - below are default values
    • it is safe to skip - add only if you want to modify them (MySql does not have schema)
  <PropertyGroup>
    
    <EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>

    
    <CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>

    
    <AdaskoTheBeAsTIdentityDapper_SkipNormalized>false</AdaskoTheBeAsTIdentityDapper_SkipNormalized>
  </PropertyGroup>
  1. In case of choosing Guid as type of user please add this to your startup file
MySqlDapperConfig.ConfigureTypeHandlers();

Oracle

  1. In your project add nuget packages
  <ItemGroup>
    <PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="2.0.0" />
    <PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.Oracle" Version="2.0.0" />
    <PackageReference Include="Dapper" Version="2.1.35" />
    <PackageReference Include="Dapper.Oracle" Version="2.0.3" />
    <PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.8" />
    <PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.8" />
    <PackageReference Include="Oracle.ManagedDataAccess.Core" Version="23.5.1" />
  </ItemGroup>
  1. Optional settings which you can add to project file - below are default values
    • it is safe to skip - add only if you want to modify them
  <PropertyGroup>
    
    <EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>

    
    <CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>

    
    <AdaskoTheBeAsTIdentityDapper_DbSchema>public</AdaskoTheBeAsTIdentityDapper_DbSchema>

    
    <AdaskoTheBeAsTIdentityDapper_SkipNormalized>false</AdaskoTheBeAsTIdentityDapper_SkipNormalized>

    
    
    
    
    <AdaskoTheBeAsTIdentityDapper_StoreBooleanAs>char</AdaskoTheBeAsTIdentityDapper_StoreBooleanAs>
  </PropertyGroup>
  1. Please add this to your startup file
OracleDapperConfig.ConfigureTypeHandlers();

Sqlite

  1. In your project add nuget packages
  <ItemGroup>
    <PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="2.0.0" />
    <PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.Sqlite" Version="2.0.0" />
    <PackageReference Include="Dapper" Version="2.1.35" />
    <PackageReference Include="Dapper.SqlBuilder" Version="2.0.78" />
    <PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.8" />
    <PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.8" />
    <PackageReference Include="Microsoft.Data.Sqlite.Core" Version="8.0.8" />
    <PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.10" />
  </ItemGroup>
  1. Optional settings which you can add to project file - below are default values
    • it is safe to skip - add only if you want to modify them (SQLite does not have schema)
  <PropertyGroup>
    
    <EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>

    
    <CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>

    
    <AdaskoTheBeAsTIdentityDapper_SkipNormalized>false</AdaskoTheBeAsTIdentityDapper_SkipNormalized>
  </PropertyGroup>
  1. Please add this to your startup file
SQLitePCL.Batteries.Init();

Recompile your project

  1. You should see generated files in Generated folder (if you set EmitCompilerGeneratedFiles to true)

Sample output

Usage (version 1.x.x)

  1. In your project add nuget packages
  <ItemGroup>
    <PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="1.3.0" />
    <PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.SqlServer" Version="1.3.0" />
    <PackageReference Include="Dapper" Version="2.1.35" />
    <PackageReference Include="Dapper.SqlBuilder" Version="2.0.78" />
    <PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.7" />
  </ItemGroup>
  1. Add following property groups to your project file
  <PropertyGroup>
    
    <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
    
    <CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
    
    <AdaskoTheBeAsTIdentityDapper_DbSchema>id</AdaskoTheBeAsTIdentityDapper_DbSchema>
    
    <AdaskoTheBeAsTIdentityDapper_SkipNormalized>true</AdaskoTheBeAsTIdentityDapper_SkipNormalized>
  </PropertyGroup>
  1. Add following item groups
  <ItemGroup>
    
    <Compile Remove="$(CompilerGeneratedFilesOutputPath)/**/*.cs" />
  </ItemGroup>

  <ItemGroup>
    <None Include="Generated/**/*" />
  </ItemGroup>
  1. To your project add following classes which inherits from Microsoft Identity classes
using Microsoft.AspNetCore.Identity;

namespace Sample.SqlServer;

public class ApplicationRole
    : IdentityRole<Guid>
{
}

public class ApplicationRoleClaim
    : IdentityRoleClaim<Guid>
{
}

// attribute is optional
// if you want to use your own Id type you can use this attribute
// it is helpful when for example you want to store MSAL user id
// as your id
[InsertOwnIdAttribute]
public class ApplicationUser
    : IdentityUser<Guid>
{
    [Column("IsActive")]
    public bool Active { get; set; }
}

public class ApplicationUserClaim
    : IdentityUserClaim<Guid>
{
}

public class ApplicationUserLogin
    : IdentityUserLogin<Guid>
{
}

public class ApplicationUserRole
    : IdentityUserRole<Guid>
{
}

public class ApplicationUserToken
    : IdentityUserToken<Guid>
{
}

Step 5: Build Your Project

Recompile your project and watch the magic happen! โœจ

dotnet build

You should see generated files in the Generated folder (if you set EmitCompilerGeneratedFiles to true):

Sample output

๐Ÿ—„๏ธ Database Setup

Important: You need to create the database schema manually. The library generates the queries but not the schema.

Database scripts are provided in the db/ folder for:

  • SQL Server (db/SqlServer/)
  • PostgreSQL (db/PostgreSQL/)
  • MySQL (db/MySQL/)
  • Oracle (db/Oracle/)
  • SQLite (db/SQLite/)

Each folder contains scripts for different ID types (string, int, long, Guid) and with/without normalized columns.

โšก Performance

This library is designed for maximum performance:

  • Compile-time code generation - Zero runtime reflection or dynamic SQL building
  • Dapper micro-ORM - Minimal overhead, close to raw ADO.NET performance
  • Efficient queries - Hand-optimized SQL generated for each database provider
  • Connection pooling - Properly managed database connections
  • Async all the way - Fully asynchronous operations with ConfigureAwait(false)

Benchmark comparison (vs Entity Framework Core):

  • ~2-3x faster for simple queries
  • ~5-10x faster for complex queries with joins
  • 50-70% less memory allocations

๐Ÿ”ง Advanced Configuration

Custom Properties

Add your own properties to Identity classes with custom column names:

public class ApplicationUser : IdentityUser<Guid>
{
    [Column("IsActive")]  // Map to custom column name
    public bool Active { get; set; }
    
    [Column("CreatedDate")]
    public DateTime CreatedAt { get; set; }
    
    public string? Department { get; set; }
}

Skip Normalized Columns

If you don't need normalized columns (for performance or simplicity):

<PropertyGroup>
    <AdaskoTheBeAsTIdentityDapper_SkipNormalized>true</AdaskoTheBeAsTIdentityDapper_SkipNormalized>
</PropertyGroup>

This removes NormalizedUserName, NormalizedEmail, and NormalizedName from queries and schema requirements.

Insert Your Own IDs

Perfect for syncing with external identity providers:

[InsertOwnIdAttribute]
public class ApplicationUser : IdentityUser<Guid>
{
    // Now you can set user.Id before creating
}

Use case: When integrating with Azure AD, Auth0, or other external identity providers, you can preserve their user IDs.

๐Ÿ› Troubleshooting

Source Generator Not Running

  1. Clean and rebuild: dotnet clean && dotnet build
  2. Check .csproj: Ensure the correct package is referenced
  3. Enable generation output:
    <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
    
  4. Restart IDE: Sometimes Visual Studio needs a restart

Connection Issues

Problem: "Cannot open database" errors

Solution: Verify:

  • Connection string is correct
  • Database exists and schema is created
  • User has proper permissions
  • Connection pooling settings

MySQL Guid Issues

For MySQL with Guid IDs, add this to your startup:

MySqlDapperConfig.ConfigureTypeHandlers();

Oracle Type Handlers

For Oracle, always call:

OracleDapperConfig.ConfigureTypeHandlers();

๐Ÿ”„ Migration Guide

From Entity Framework Core

  1. Remove EF Core packages
  2. Install Dapper Identity package
  3. Update service registration:
    // Before (EF Core)
    services.AddDbContext<ApplicationDbContext>(options =>
        options.UseSqlServer(connectionString));
    services.AddDefaultIdentity<ApplicationUser>()
        .AddEntityFrameworkStores<ApplicationDbContext>();
    
    // After (Dapper)
    services.AddSingleton<IIdentityDbConnectionProvider<SqlConnection>, IdentityDbConnectionProvider>();
    services.AddIdentity<ApplicationUser, ApplicationRole>()
        .AddUserStore<ApplicationUserStore>()
        .AddRoleStore<ApplicationRoleStore>()
        .AddDefaultTokenProviders();
    
  4. Recompile and test

From Version 1.x to 2.x

See Breaking changes in version 2.x.x section above.

๐Ÿค Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch
  3. Write tests for your changes
  4. Ensure all tests pass
  5. Submit a pull request

Building the Project

git clone https://github.com/AdaskoTheBeAsT/AdaskoTheBeAsT.Identity.Dapper.git
cd AdaskoTheBeAsT.Identity.Dapper
dotnet build
dotnet test

Code Quality

The project uses:

  • C# 12 with nullable reference types
  • StyleCop for code style
  • Comprehensive analyzers (Roslynator, SonarAnalyzer, etc.)
  • Unit and integration tests (xUnit + Verify snapshots)

๐Ÿ“ Code Review Findings

During recent code review, the following observations were made:

โœ… Strengths

  • Well-structured architecture with clear separation of concerns
  • Comprehensive test coverage (unit + integration tests)
  • Proper async/await patterns with ConfigureAwait(false)
  • Good null checking and validation
  • Modern C# features utilized effectively
  • Strong type safety with nullable reference types

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

๐Ÿ“ž Support


โญ If this library helped you, please give it a star! โญ

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.0 44 4/8/2026
3.0.2 211 11/23/2025
3.0.1 203 11/22/2025
3.0.0 215 11/22/2025
2.0.1 277 10/11/2024
2.0.0 224 8/27/2024
1.3.0 211 7/27/2024
1.2.0 194 7/27/2024
1.1.7 300 1/14/2024
1.1.5 284 5/14/2023
1.1.4 261 5/14/2023
1.1.3 266 5/14/2023
1.1.2 267 5/14/2023
1.1.1 272 5/7/2023
1.1.0 268 5/6/2023
1.0.0 292 4/16/2023

- first release