FastEndpoints 1.0.0-beta4

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

FastEndpoints

An easy to use Web-Api framework (which encourages CQRS and Vertical Slice Architecture) built as an extension to the Asp.Net pipeline. Performance is on par with .net 6 minimal apis and is 2X faster; uses only half the memory; and outperforms a traditional MVC controller by about 73k requests per second on a Ryzen 3700X desktop.

Try it out...

install from nuget: Install-Package FastEndpoints (currently beta)

note: the minimum required sdk version is .net 6.0 (preview atm)

Code Sample:

Program.cs

using FastEndpoints;

var builder = WebApplication.CreateBuilder();
builder.Services.AddFastEndpoints();
builder.Services.AddAuthenticationJWTBearer("SecretKey");

var app = builder.Build();
app.UseAuthentication();
app.UseAuthorization();
app.UseFastEndpoints();
app.Run();

Request DTO

public class MyRequest
{
    [From(Claim.UserName)]
    public string UserName { get; set; }  //this value will be auto populated from the user claim

    public int Id { get; set; }
    public string Name { get; set; }
    public int Price { get; set; }
}

Request Validator

public class MyValidator : FluentValidator<MyRequest>
{
    public Validator()
    {
        RuleFor(x => x.Id).NotEmpty().WithMessage("Id is required!");
        RuleFor(x => x.Name).NotEmpty().WithMessage("Name is required!");
        RuleFor(x => x.Price).GreaterThan(0).WithMessage("Price is required!");
    }
}

Response DTO

public class MyResponse
{
    public string Name { get; internal set; }
    public int Price { get; set; }
    public string? Message { get; set; }
}

Endpoint Definition

public class MyEndpoint : Endpoint<MyRequest>
{
    public ILogger<MyEndpoint>? Logger { get; set; } //automatically injected from services

    public MyEndpoint()
    {
        //no longer hindered by attribute limitations
        Routes("/api/test/{id}");
        Verbs(Http.POST, Http.PATCH);
        Roles("Admin", "Manager");
        Policies("ManagementTeamCanAccess", "AuditorsCanAccess");
        Permissions(
            Allow.Inventory_Create_Item,
            Allow.Inventory_Retrieve_Item,
            Allow.Inventory_Update_Item); //declarative permission based authorization
    }

    protected override async Task HandleAsync(MyRequest req, CancellationToken ct)
    {
        //can do further validation here in addition to FluentValidation rules
        if (req.Price < 100)
            AddError(r => r.Price, "Price is too low!");

        AddError("This is a general error!");

        ThrowIfAnyErrors(); //breaks the flow and sends a 400 error response containing error details.

        Logger.LogInformation("this is your first endpoint!"); //dependency injected logger

        var isProduction = Env.IsProduction(); //read environment
        var smtpServer = Config["SMTP:HostName"]; //read configuration

        var res = new MyResponse //typed response to make integration tests convenient
        {
            Message = $"the route parameter value is: {req.Id}",
            Name = req.Name,
            Price = req.Price
        };

        await SendAsync(res);
    }
}

that's mostly it. all of your Endpoint definitions are automatically discovered on app startup and routes automatically mapped.

Documentation

proper documentation will be available within a few weeks once v1.0 is released. in the meantime have a browse through the Web, Test and Benchmark projects to see more examples.

Benchmark results

Bombardier load test

FastEndpoints (72,920 more requests per second than mvc controller)

Statistics        Avg      Stdev        Max
  Reqs/sec    144989.43   13594.10  199851.96
  Latency        3.41ms   378.95us    65.00ms
  HTTP codes:
    1xx - 0, 2xx - 1462226, 3xx - 0, 4xx - 0, 5xx - 0
    others - 0
  Throughput:    73.34MB/s

AspNet Minimal Api

Statistics        Avg      Stdev        Max
  Reqs/sec    144416.77   14313.21  171576.65
  Latency        3.43ms     1.37ms   347.00ms
  HTTP codes:
    1xx - 0, 2xx - 1456040, 3xx - 0, 4xx - 0, 5xx - 0
    others - 0
  Throughput:    73.02MB/s

AspNet MapControllers

Statistics        Avg      Stdev        Max
  Reqs/sec     74056.92   19197.47  372446.94
  Latency        6.71ms     1.89ms   416.00ms
  HTTP codes:
    1xx - 0, 2xx - 745069, 3xx - 0, 4xx - 0, 5xx - 0
    others - 0
  Throughput:    37.37MB/s

AspNet MVC Controller

Statistics        Avg      Stdev        Max
  Reqs/sec     72069.51   14094.86   96234.73
  Latency        6.83ms   712.49us    89.01ms
  HTTP codes:
    1xx - 0, 2xx - 731659, 3xx - 0, 4xx - 0, 5xx - 0
    others - 0
  Throughput:    36.56MB/s

parameters used: -c 500 -m POST -f "body.json" -H "Content-Type:application/json" -d 10s http://localhost:5000/

BenchmarkDotNet head-to-head results

Method Mean Error StdDev Ratio RatioSD Gen 0 Allocated
FastEndpointsEndpoint 78.47 μs 1.522 μs 1.753 μs 1.00 0.00 2.4414 21 KB
MinimalApiEndpoint 77.05 μs 1.519 μs 2.496 μs 0.97 0.04 2.4414 21 KB
AspNetMapControllers 148.36 μs 2.922 μs 5.270 μs 1.88 0.07 5.3711 44 KB
AspNetCoreMVC 150.66 μs 2.984 μs 6.550 μs 1.90 0.09 5.3711 45 KB
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (162)

Showing the top 5 NuGet packages that depend on FastEndpoints:

Package Downloads
FastEndpoints.Swagger

Swagger support for FastEndpoints.

Elsa

Bundles the most commonly-used packages when building an Elsa workflows application.

FastEndpoints.Security

Security library for FastEndpoints.

Elsa.Workflows.Management

Provides workflow management functionality.

Elsa.Api.Common

Provides common features to modules that expose API endpoints.

GitHub repositories (19)

Showing the top 19 popular GitHub repositories that depend on FastEndpoints:

Repository Stars
ardalis/CleanArchitecture
Clean Architecture Solution Template: A proven Clean Architecture Template for ASP.NET Core 9
elsa-workflows/elsa-core
A .NET workflows library
RRQM/TouchSocket
TouchSocket is an integrated .NET networking framework that includes modules for socket, TCP, UDP, SSL, named pipes, HTTP, WebSocket, RPC, and more. It offers a one-stop solution for TCP packet issues and enables quick implementation of custom data message parsing using protocol templates.
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
Elfocrash/clean-minimal-api
A project showcasing how you can build a clean Minimal API using FastEndpoints
Reaparr/Reaparr
Plex downloader that brings content from any server to yours!
CircumSpector/DS4Windows
A reimagination of DS4Windows.
NimblePros/eShopOnWeb
Sample ASP.NET Core 9.0 reference application, powered by Microsoft, demonstrating a domain-centric application architecture with monolithic deployment model.
netcorepal/netcorepal-cloud-framework
一个基于ASP.NET Core实现的整洁领域驱动设计落地战术框架。 A tactical framework for Clean Domain-Driven Design based on ASP.NET Core.
ikyriak/IdempotentAPI
A .NET library that handles the HTTP write operations (POST and PATCH) that can affect only once for the given request data and idempotency-key by using an ASP.NET Core attribute (filter).
Elfocrash/aws-videos
dj-nitehawk/MongoWebApiStarter
A full-featured starter template for `dotnet new` to quickly scaffold an Asp.Net 8 Web-Api project with MongoDB as the data store.
ardalis/WebApiBestPractices
Resources related to my Pluralsight course on this topic.
ardalis/modulith
Modulith is a dotnet new template for Modular Monoliths. It streamlines the creation of new .Net solutions and the addition of modules to existing ones.
leosperry/ha-kafka-net
Integration that uses Home Assistant Kafka integration for creating home automations in .NET and C#
bingbing-gui/aspnetcore-developer
.NET 9 打造的 ASP.NET Core 学习仓库,涵盖常用技术点 + 实战示例,配套优质开源库,欢迎 star! Learn ASP.NET Core with .NET 9 — real-world samples, essential features, and awesome libraries. Star it if you like!
dj-nitehawk/MiniDevTo
Source code of the Dev.To article "Building REST APIs In .Net 8 The Easy Way!"
dr-marek-jaskula/DomainDrivenDesignUniversity
This project was made for tutorial purpose - to clearly present the domain driven design concept.
Hona/VerticalSliceArchitecture
Spend less time over-engineering, and more time coding. The template has a focus on convenience, and developer confidence. Vertical Slice Architecture 🎈
Version Downloads Last Updated
7.1.0 3,452 10/24/2025
7.1.0-beta.26 191 10/22/2025
7.1.0-beta.25 188 10/18/2025
7.1.0-beta.24 481 10/10/2025
7.1.0-beta.23 177 10/7/2025
7.1.0-beta.22 424 10/3/2025
7.1.0-beta.21 145 10/2/2025
7.1.0-beta.20 134 10/2/2025
7.1.0-beta.19 130 10/2/2025
7.1.0-beta.18 142 10/1/2025
7.1.0-beta.17 137 10/1/2025
7.1.0-beta.16 172 9/29/2025
7.1.0-beta.15 131 9/29/2025
7.1.0-beta.14 148 9/26/2025
7.1.0-beta.13 970 9/17/2025
7.1.0-beta.12 183 9/12/2025
7.1.0-beta.11 290 9/9/2025
7.1.0-beta.10 1,592 9/5/2025
7.1.0-beta.9 149 9/4/2025
7.1.0-beta.8 158 9/2/2025
7.1.0-beta.7 211 8/30/2025
7.1.0-beta.6 989 8/19/2025
7.1.0-beta.5 435 8/14/2025
7.1.0-beta.4 1,200 8/5/2025
7.1.0-beta.3 411 7/29/2025
7.1.0-beta.2 483 7/25/2025
7.1.0-beta.1 1,193 7/24/2025
7.0.1 337,972 7/24/2025
7.0.0 10,889 7/23/2025
7.0.0-beta.2 552 7/22/2025
7.0.0-beta.1 480 7/21/2025
6.3.0-beta.16 218 7/18/2025
6.3.0-beta.15 108 7/18/2025
6.3.0-beta.14 164 7/17/2025
6.3.0-beta.13 220 7/15/2025
6.3.0-beta.12 473 7/14/2025
6.3.0-beta.11 229 7/13/2025
6.3.0-beta.10 104 7/13/2025
6.3.0-beta.9 353 7/9/2025
6.3.0-beta.8 149 7/9/2025
6.3.0-beta.7 265 7/7/2025
6.3.0-beta.6 121 7/5/2025
6.3.0-beta.5 117 7/4/2025
6.3.0-beta.4 274 7/1/2025
6.3.0-beta.3 1,442 6/27/2025
6.3.0-beta.2 542 6/24/2025
6.3.0-beta.1 113 6/22/2025
6.2.0 187,620 6/20/2025
6.2.0-beta.9 643 6/18/2025
6.2.0-beta.8 2,484 6/11/2025
6.2.0-beta.7 486 6/9/2025
6.2.0-beta.6 428 6/6/2025
6.2.0-beta.5 170 6/5/2025
6.2.0-beta.4 286 6/1/2025
6.2.0-beta.3 4,549 5/16/2025
6.2.0-beta.2 324 5/13/2025
6.2.0-beta.1 244 5/12/2025
6.1.0 266,346 5/11/2025
6.1.0-beta.13 126 5/10/2025
6.1.0-beta.12 580 5/5/2025
6.1.0-beta.11 101 5/3/2025
6.1.0-beta.10 1,635 5/1/2025
6.1.0-beta.8 227 4/26/2025
6.1.0-beta.7 253 4/24/2025
6.1.0-beta.6 328 4/22/2025
6.1.0-beta.5 282 4/19/2025
6.1.0-beta.4 563 4/16/2025
6.1.0-beta.3 260 4/15/2025
6.1.0-beta.2 221 4/15/2025
6.1.0-beta.1 283 4/14/2025
6.0.0 185,579 4/13/2025
6.0.0-beta.12 434 4/11/2025
6.0.0-beta.11 243 4/9/2025
6.0.0-beta.10 578 4/6/2025
6.0.0-beta.9 181 4/5/2025
6.0.0-beta.8 468 4/2/2025
6.0.0-beta.7 864 3/30/2025
6.0.0-beta.6 131 3/29/2025
6.0.0-beta.5 771 3/27/2025
6.0.0-beta.4 363 3/27/2025
6.0.0-beta.3 619 3/25/2025
6.0.0-beta.2 3,325 3/17/2025
6.0.0-beta.1 256 3/14/2025
5.35.0.603-beta 598 3/12/2025
5.35.0.602-beta 363 3/11/2025
5.35.0.601-beta 273 3/11/2025
5.35.0.600-beta 357 3/10/2025
5.35.0.3-beta 3,594 3/8/2025
5.35.0.2-beta 340 3/8/2025
5.35.0.1-beta 391 3/6/2025
5.35.0 547,050 3/5/2025
5.34.0.19-beta 530 3/4/2025
5.34.0.18-beta 331 3/2/2025
5.34.0.17-beta 251 3/1/2025
5.34.0.16-beta 252 3/1/2025
5.34.0.15-beta 263 2/28/2025
5.34.0.14-beta 238 2/27/2025
5.34.0.13-beta 275 2/26/2025
5.34.0.12-beta 277 2/25/2025
5.34.0.11-beta 231 2/25/2025
5.34.0.10-beta 294 2/24/2025
5.34.0.9-beta 229 2/24/2025
5.34.0.8-beta 240 2/23/2025
5.34.0.7-beta 451 2/22/2025
5.34.0.6-beta 316 2/21/2025
5.34.0.5-beta 237 2/21/2025
5.34.0.4-beta 211 2/21/2025
5.34.0.3-beta 2,150 2/14/2025
5.34.0.2-beta 384 2/13/2025
5.34.0.1-beta 257 2/13/2025
5.34.0 334,658 1/31/2025
5.33.0.13-beta 1,442 1/30/2025
5.33.0.12-beta 1,167 1/27/2025
5.33.0.11-beta 485 1/24/2025
5.33.0.10-beta 248 1/23/2025
5.33.0.9-beta 1,329 1/18/2025
5.33.0.8-beta 932 1/14/2025
5.33.0.7-beta 219 1/12/2025
5.33.0.6-beta 1,170 1/7/2025
5.33.0.5-beta 857 1/5/2025
5.33.0.3-beta 249 1/4/2025
5.33.0.2-beta 330 1/1/2025
5.33.0.1-beta 409 12/31/2024
5.33.0 437,711 12/30/2024
5.32.0.16-beta 374 12/28/2024
5.32.0.15-beta 301 12/26/2024
5.32.0.14-beta 310 12/25/2024
5.32.0.13-beta 447 12/24/2024
5.32.0.12-beta 337 12/22/2024
5.32.0.11-beta 311 12/21/2024
5.32.0.10-beta 382 12/20/2024
5.32.0.9-beta 264 12/19/2024
5.32.0.8-beta 238 12/19/2024
5.32.0.7-beta 1,443 12/17/2024
5.32.0.6-beta 348 12/13/2024
5.32.0.5-beta 369 12/11/2024
5.32.0.4-beta 249 12/10/2024
5.32.0.3-beta 702 12/6/2024
5.32.0.2-beta 268 12/5/2024
5.32.0.1-beta 640 12/2/2024
5.32.0 280,468 12/1/2024
5.31.0.18-beta 869 11/26/2024
5.31.0.17-beta 3,189 11/23/2024
5.31.0.16-beta 231 11/23/2024
5.31.0.15-beta 1,118 11/22/2024
5.31.0.14-beta 364 11/22/2024
5.31.0.13-beta 268 11/21/2024
5.31.0.12-beta 305 11/20/2024
5.31.0.11-beta 242 11/20/2024
5.31.0.10-beta 304 11/19/2024
5.31.0.9-beta 840 11/16/2024
5.31.0.8-beta 443 11/15/2024
5.31.0.7-beta 340 11/14/2024
5.31.0.6-beta 828 11/12/2024
5.31.0.5-beta 789 11/9/2024
5.31.0.4-beta 275 11/7/2024
5.31.0.3-beta 759 11/5/2024
5.31.0.2-beta 253 11/5/2024
5.31.0.1-beta 363 11/5/2024
5.31.0 437,546 11/3/2024
5.30.0.23-beta 339 11/2/2024
5.30.0.22-beta 239 11/1/2024
5.30.0.21-beta 277 10/31/2024
5.30.0.20-beta 210 10/30/2024
5.30.0.19-beta 852 10/29/2024
5.30.0.18-beta 303 10/28/2024
5.30.0.17-beta 218 10/28/2024
5.30.0.16-beta 272 10/26/2024
5.30.0.15-beta 511 10/24/2024
5.30.0.14-beta 756 10/23/2024
5.30.0.13-beta 901 10/18/2024
5.30.0.12-beta 225 10/17/2024
5.30.0.11-beta 400 10/17/2024
5.30.0.10-beta 2,853 10/16/2024
5.30.0.9-beta 329 10/15/2024
5.30.0.8-beta 241 10/14/2024
5.30.0.7-beta 204 10/13/2024
5.30.0.6-beta 934 10/9/2024
5.30.0.5-beta 238 10/9/2024
5.30.0.4-beta 241 10/8/2024
5.30.0.3-beta 246 10/6/2024
5.30.0.2-beta 212 10/5/2024
5.30.0.1-beta 222 10/4/2024
5.30.0 310,602 10/1/2024
5.29.0.13-beta 212 10/1/2024
5.29.0.12-beta 811 9/27/2024
5.29.0.11-beta 1,060 9/26/2024
5.29.0.10-beta 226 9/25/2024
5.29.0.8-beta 346 9/20/2024
5.29.0.7-beta 279 9/20/2024
5.29.0.6-beta 274 9/19/2024
5.29.0.5-beta 246 9/19/2024
5.29.0.4-beta 270 9/18/2024
5.29.0.3-beta 339 9/17/2024
5.29.0.2-beta 272 9/17/2024
5.29.0.1-beta 1,225 9/11/2024
5.29.0 220,177 8/31/2024
5.28.0.7-beta 268 8/30/2024
5.28.0.6-beta 3,605 8/16/2024
5.28.0.5-beta 657 8/11/2024
5.28.0.4-beta 281 8/9/2024
5.28.0.3-beta 578 8/6/2024
5.28.0.2-beta 1,184 8/1/2024
5.28.0.1-beta 256 7/31/2024
5.28.0 260,000 7/31/2024
5.27.0.14-beta 255 7/30/2024
5.27.0.13-beta 749 7/25/2024
5.27.0.12-beta 519 7/18/2024
5.27.0.11-beta 328 7/16/2024
5.27.0.10-beta 294 7/13/2024
5.27.0.9-beta 272 7/12/2024
5.27.0.8-beta 283 7/12/2024
5.27.0.7-beta 267 7/11/2024
5.27.0.6-beta 571 7/10/2024
5.27.0.5-beta 515 7/8/2024
5.27.0.4-beta 288 7/8/2024
5.27.0.3-beta 2,789 7/6/2024
5.27.0.2-beta 281 7/6/2024
5.27.0.1-beta 729 7/4/2024
5.27.0 396,521 7/4/2024
5.26.0.27-beta 271 7/1/2024
5.26.0.26-beta 288 7/1/2024
5.26.0.25-beta 274 6/29/2024
5.26.0.24-beta 2,296 6/26/2024
5.26.0.23-beta 258 6/26/2024
5.26.0.22-beta 319 6/26/2024
5.26.0.21-beta 265 6/26/2024
5.26.0.20-beta 363 6/24/2024
5.26.0.19-beta 274 6/23/2024
5.26.0.18-beta 280 6/23/2024
5.26.0.17-beta 283 6/23/2024
5.26.0.16-beta 280 6/23/2024
5.26.0.15-beta 339 6/21/2024
5.26.0.14-beta 429 6/20/2024
5.26.0.13-beta 261 6/20/2024
5.26.0.12-beta 315 6/20/2024
5.26.0.11-beta 347 6/19/2024
5.26.0.10-beta 318 6/19/2024
5.26.0.9-beta 434 6/12/2024
5.26.0.8-beta 267 6/12/2024
5.26.0.7-beta 791 6/9/2024
5.26.0.6-beta 288 6/8/2024
5.26.0.5-beta 310 6/8/2024
5.26.0.4-beta 266 6/7/2024
5.26.0.3-beta 485 6/6/2024
5.26.0.2-beta 289 6/4/2024
5.26.0.1-beta 304 6/1/2024
5.26.0 267,407 5/31/2024
5.25.0.15-beta 1,268 5/29/2024
5.25.0.14-beta 377 5/27/2024
5.25.0.13-beta 319 5/24/2024
5.25.0.12-beta 462 5/22/2024
5.25.0.11-beta 285 5/22/2024
5.25.0.10-beta 3,578 5/18/2024
5.25.0.9-beta 672 5/17/2024
5.25.0.8-beta 273 5/17/2024
5.25.0.7-beta 431 5/15/2024
5.25.0.6-beta 236 5/15/2024
5.25.0.5-beta 473 5/11/2024
5.25.0.4-beta 491 5/7/2024
5.25.0.3-beta 1,170 5/6/2024
5.25.0.2-beta 302 5/5/2024
5.25.0.1-beta 295 5/3/2024
5.25.0 224,402 5/2/2024
5.24.0.12-beta 280 5/2/2024
5.24.0.11-beta 306 5/1/2024
5.24.0.9-beta 329 4/28/2024
5.24.0.8-beta 1,223 4/25/2024
5.24.0.7-beta 274 4/24/2024
5.24.0.6-beta 271 4/24/2024
5.24.0.5-beta 292 4/23/2024
5.24.0.4-beta 1,232 4/21/2024
5.24.0.3-beta 296 4/18/2024
5.24.0.2-beta 283 4/18/2024
5.24.0.1-beta 500 4/9/2024
5.24.0 330,439 4/1/2024
5.23.0.15-beta 425 3/28/2024
5.23.0.14-beta 400 3/26/2024
5.23.0.13-beta 496 3/24/2024
5.23.0.12-beta 721 3/22/2024
5.23.0.11-beta 390 3/21/2024
5.23.0.10-beta 532 3/19/2024
5.23.0.9-beta 437 3/15/2024
5.23.0.8-beta 494 3/14/2024
5.23.0.7-beta 369 3/14/2024
5.23.0.6-beta 387 3/13/2024
5.23.0.5-beta 1,031 3/11/2024
5.23.0.4-beta 1,798 3/8/2024
5.23.0.3-beta 668 3/5/2024
5.23.0.2-beta 551 3/3/2024
5.23.0.1-beta 827 2/29/2024
5.23.0 316,793 2/29/2024
5.22.0.18-beta 468 2/28/2024
5.22.0.17-beta 487 2/27/2024
5.22.0.16-beta 486 2/27/2024
5.22.0.15-beta 542 2/26/2024
5.22.0.14-beta 512 2/26/2024
5.22.0.13-beta 505 2/23/2024
5.22.0.12-beta 1,294 2/21/2024
5.22.0.11-beta 507 2/21/2024
5.22.0.10-beta 523 2/21/2024
5.22.0.9-beta 545 2/20/2024
5.22.0.8-beta 618 2/18/2024
5.22.0.7-beta 702 2/15/2024
5.22.0.6-beta 559 2/14/2024
5.22.0.5-beta 612 2/12/2024
5.22.0.4-beta 564 2/12/2024
5.22.0.3-beta 528 2/12/2024
5.22.0.2-beta 599 2/8/2024
5.22.0.1-beta 611 2/8/2024
5.22.0 211,089 2/1/2024
5.21.2.20-beta 532 1/31/2024
5.21.2.19-beta 574 1/30/2024
5.21.2.18-beta 641 1/27/2024
5.21.2.17-beta 620 1/26/2024
5.21.2.16-beta 2,423 1/21/2024
5.21.2.15-beta 632 1/18/2024
5.21.2.14-beta 704 1/17/2024
5.21.2.13-beta 611 1/16/2024
5.21.2.12-beta 627 1/15/2024
5.21.2.11-beta 594 1/13/2024
5.21.2.10-beta 650 1/12/2024
5.21.2.9-beta 656 1/11/2024
5.21.2.8-beta 640 1/10/2024
5.21.2.7-beta 627 1/10/2024
5.21.2.6-beta 660 1/9/2024
5.21.2.5-beta 717 1/9/2024
5.21.2.4-beta 708 1/7/2024
5.21.2.3-beta 644 1/6/2024
5.21.2.2-beta 668 1/4/2024
5.21.2.1-beta 625 1/4/2024
5.21.2 240,014 1/2/2024
5.21.1.1-beta 623 1/2/2024
5.21.1 1,282 1/2/2024
5.21.0 10,168 1/2/2024
5.20.1.12-beta 712 12/30/2023
5.20.1.11-beta 606 12/30/2023
5.20.1.10-beta 624 12/29/2023
5.20.1.9-beta 650 12/29/2023
5.20.1.8-beta 723 12/27/2023
5.20.1.7-beta 5,708 12/18/2023
5.20.1.6-beta 739 12/15/2023
5.20.1.5-beta 812 12/13/2023
5.20.1.4-beta 597 12/12/2023
5.20.1.3-beta 698 12/9/2023
5.20.1.2-beta 673 12/8/2023
5.20.1.1-beta 929 12/7/2023
5.20.1 108,397 12/1/2023
5.20.0.2-beta 691 11/30/2023
5.20.0.1-beta 638 11/30/2023
5.20.0 88,309 11/28/2023
5.20.0-rc2 3,286 11/26/2023
5.20.0-rc1 2,207 11/18/2023
5.19.2 81,662 11/7/2023
5.19.1 19,636 11/4/2023
5.19.0.13-beta 707 11/15/2023
5.19.0.12-beta 636 11/15/2023
5.19.0.11-beta 646 11/15/2023
5.19.0.10-beta 660 11/9/2023
5.19.0.9-beta 611 11/7/2023
5.19.0.8-beta 576 11/6/2023
5.19.0.7-beta 649 11/4/2023
5.19.0.6-beta 614 11/3/2023
5.19.0.5-beta 641 11/2/2023
5.19.0.4-beta 626 11/2/2023
5.19.0.3-beta 654 11/1/2023
5.19.0.2-beta 619 10/31/2023
5.19.0.1-beta 621 10/29/2023
5.19.0 17,791 10/29/2023
5.18.0.9-beta 632 10/27/2023
5.18.0.8-beta 746 10/25/2023
5.18.0.7-beta 691 10/24/2023
5.18.0.6-beta 706 10/19/2023
5.18.0.5-beta 1,210 10/14/2023
5.18.0.4-beta 658 10/12/2023
5.18.0.3-beta 611 10/12/2023
5.18.0.2-beta 698 10/11/2023
5.18.0.1-beta 737 10/5/2023
5.18.0 121,193 10/1/2023
5.17.1.32-beta 646 10/1/2023
5.17.1.31-beta 665 9/29/2023
5.17.1.30-beta 609 9/29/2023
5.17.1.29-beta 1,096 9/28/2023
5.17.1.28-beta 642 9/27/2023
5.17.1.27-beta 650 9/27/2023
5.17.1.26-beta 621 9/27/2023
5.17.1.25-beta 655 9/26/2023
5.17.1.24-beta 644 9/24/2023
5.17.1.23-beta 608 9/23/2023
5.17.1.22-beta 619 9/23/2023
5.17.1.21-beta 618 9/22/2023
5.17.1.20-beta 628 9/21/2023
5.17.1.19-beta 1,175 9/13/2023
5.17.1.18-beta 658 9/12/2023
5.17.1.17-beta 675 9/12/2023
5.17.1.16-beta 630 9/11/2023
5.17.1.15-beta 665 9/10/2023
5.17.1.14-beta 662 9/9/2023
5.17.1.13-beta 663 9/8/2023
5.17.1.12-beta 614 9/8/2023
5.17.1.11-beta 721 9/8/2023
5.17.1.10-beta 607 9/8/2023
5.17.1.9-beta 635 9/8/2023
5.17.1.8-beta 693 9/7/2023
5.17.1.7-beta 664 9/7/2023
5.17.1.6-beta 1,175 9/7/2023
5.17.1.5-beta 709 9/6/2023
5.17.1.4-beta 604 9/6/2023
5.17.1.3-beta 696 9/6/2023
5.17.1.2-beta 670 9/5/2023
5.17.1.1 43,657 9/5/2023
5.17.1 4,096 9/4/2023
5.17.0.2-beta 621 9/4/2023
5.17.0.1-beta 643 9/4/2023
5.17.0 1,834 9/3/2023
5.16.0.4-beta 661 9/3/2023
5.16.0.3-beta 670 9/2/2023
5.16.0.2-beta 636 8/31/2023
5.16.0.1-beta 680 8/30/2023
5.16.0 27,509 8/30/2023
5.15.0.22-beta 821 8/26/2023
5.15.0.21-beta 722 8/24/2023
5.15.0.20-beta 1,668 8/23/2023
5.15.0.19-beta 661 8/23/2023
5.15.0.18-beta 673 8/18/2023
5.15.0.17-beta 1,467 8/16/2023
5.15.0.16-beta 711 8/14/2023
5.15.0.15-beta 635 8/14/2023
5.15.0.14-beta 672 8/13/2023
5.15.0.12-beta 635 8/11/2023
5.15.0.11-beta 765 8/10/2023
5.15.0.9-beta 654 8/10/2023
5.15.0.8-beta 635 8/10/2023
5.15.0.7-beta 639 8/10/2023
5.15.0.6-beta 675 8/10/2023
5.15.0.5-beta 626 8/9/2023
5.15.0.4-beta 691 8/9/2023
5.15.0.3-beta 666 8/8/2023
5.15.0.2-beta 4,340 8/4/2023
5.15.0.1-beta 810 8/4/2023
5.15.0 109,309 8/1/2023
5.14.0.7-beta 715 7/31/2023
5.14.0.6-beta 677 7/30/2023
5.14.0.5-beta 703 7/29/2023
5.14.0.4-beta 649 7/28/2023
5.14.0.3-beta 704 7/28/2023
5.14.0.2-beta 719 7/26/2023
5.14.0.1-beta 981 7/20/2023
5.14.0 49,987 7/16/2023
5.13.0.9-beta 659 7/14/2023
5.13.0.8-beta 690 7/12/2023
5.13.0.7-beta 685 7/11/2023
5.13.0.6-beta 629 7/11/2023
5.13.0.5-beta 662 7/10/2023
5.13.0.4-beta 680 7/8/2023
5.13.0.3-beta 693 7/7/2023
5.13.0.2-beta 681 7/6/2023
5.13.0.1-beta 695 6/27/2023
5.13.0 62,389 6/24/2023
5.12.0.4-beta 686 6/23/2023
5.12.0.3-beta 778 6/19/2023
5.12.0.2-beta 683 6/18/2023
5.12.0.1-beta 925 6/14/2023
5.12.0 30,712 6/11/2023
5.11.0.6-beta 677 6/10/2023
5.11.0.5-beta 677 6/9/2023
5.11.0.4-beta 739 6/8/2023
5.11.0.3-beta 820 6/6/2023
5.11.0.2-beta 787 5/31/2023
5.11.0.1-beta 682 5/30/2023
5.11.0 40,233 5/27/2023
5.10.0.5-beta 720 5/24/2023
5.10.0.4-beta 715 5/22/2023
5.10.0.3-beta 1,027 5/7/2023
5.10.0.2-beta 692 5/6/2023
5.10.0.1-beta 767 5/3/2023
5.10.0 106,473 4/30/2023
5.9.0.4-beta 742 4/29/2023
5.9.0.3-beta 710 4/29/2023
5.9.0.2-beta 1,563 4/25/2023
5.9.0.1-beta 730 4/24/2023
5.9.0 64,672 4/22/2023
5.8.1.15-beta 672 4/21/2023
5.8.1.14-beta 731 4/21/2023
5.8.1.13-beta 735 4/20/2023
5.8.1.12-beta 658 4/20/2023
5.8.1.11-beta 673 4/20/2023
5.8.1.10-beta 676 4/19/2023
5.8.1.9-beta 720 4/18/2023
5.8.1.8-beta 920 4/16/2023
5.8.1.7-beta 782 4/10/2023
5.8.1.6-beta 675 4/8/2023
5.8.1.5-beta 686 4/8/2023
5.8.1.4-beta 677 4/7/2023
5.8.1.3-beta 800 3/30/2023
5.8.1.2-beta 841 3/30/2023
5.8.1.1-beta 844 3/29/2023
5.8.1 71,450 3/24/2023
5.8.0.8-beta 680 3/23/2023
5.8.0.7-beta 700 3/23/2023
5.8.0.6-beta 711 3/20/2023
5.8.0.5-beta 692 3/17/2023
5.8.0.4-beta 707 3/17/2023
5.8.0.3-beta 771 3/13/2023
5.8.0.2-beta 877 3/8/2023
5.8.0.1-beta 688 3/6/2023
5.8.0 41,911 3/5/2023
5.7.2.14-beta 723 3/4/2023
5.7.2.13-beta 773 3/2/2023
5.7.2.12-beta 1,662 3/2/2023
5.7.2.11-beta 659 3/2/2023
5.7.2.10-beta 758 3/1/2023
5.7.2.9-beta 757 2/28/2023
5.7.2.8-beta 713 2/28/2023
5.7.2.7-beta 677 2/28/2023
5.7.2.6-beta 666 2/27/2023
5.7.2.5-beta 699 2/26/2023
5.7.2.4-beta 794 2/24/2023
5.7.2.3-beta 708 2/23/2023
5.7.2.2-beta 710 2/22/2023
5.7.2.1-beta 759 2/19/2023
5.7.2 97,069 2/14/2023
5.7.1.1-beta 691 2/13/2023
5.7.1 15,874 2/9/2023
5.7.0.4-beta 990 2/6/2023
5.7.0.3-beta 698 2/6/2023
5.7.0.2-beta 911 2/3/2023
5.7.0.1-beta 750 1/31/2023
5.7.0 29,846 1/29/2023
5.6.0.6-beta 742 1/28/2023
5.6.0.5-beta 834 1/26/2023
5.6.0.4-beta 753 1/25/2023
5.6.0.3-beta 978 1/18/2023
5.6.0.2-beta 684 1/18/2023
5.6.0.1-beta 764 1/17/2023
5.6.0 105,026 1/2/2023
5.5.0.5-beta 1,444 12/19/2022
5.5.0.4-beta 712 12/17/2022
5.5.0.3-beta 1,043 12/12/2022
5.5.0.2-beta 687 12/12/2022
5.5.0.1-beta 699 12/10/2022
5.5.0 60,829 12/9/2022
5.4.1.7-beta 708 12/7/2022
5.4.1.6-beta 1,181 11/26/2022
5.4.1.5-beta 711 11/25/2022
5.4.1.4-beta 797 11/21/2022
5.4.1.3-beta 699 11/19/2022
5.4.1.2-beta 707 11/19/2022
5.4.1.1-beta 740 11/18/2022
5.4.1 66,586 11/18/2022
5.4.0.2-beta 662 11/17/2022
5.4.0.1-beta 1,214 11/10/2022
5.4.0 13,865 11/9/2022
5.3.2.13-beta 692 11/9/2022
5.3.2.12-beta 683 11/8/2022
5.3.2.11-beta 776 11/8/2022
5.3.2.10-beta 671 11/8/2022
5.3.2.9-beta 677 11/7/2022
5.3.2.8-beta 658 11/7/2022
5.3.2.7-beta 675 11/7/2022
5.3.2.6-beta 650 11/7/2022
5.3.2.5-beta 685 11/7/2022
5.3.2.4-beta 698 11/6/2022
5.3.2.3-beta 657 11/6/2022
5.3.2.2-beta 669 11/5/2022
5.3.2.1-beta 673 11/4/2022
5.3.2 39,533 11/4/2022
5.3.1.5-beta 651 11/3/2022
5.3.1.4-beta 676 11/3/2022
5.3.1.3-beta 714 11/2/2022
5.3.1.2-beta 687 11/2/2022
5.3.1.1-beta 629 11/2/2022
5.3.1 11,896 10/31/2022
5.3.0.1-beta 688 10/30/2022
5.3.0 1,466 10/29/2022
5.3.0-beta 702 10/28/2022
5.2.1.17-beta 674 10/28/2022
5.2.1.16-beta 786 10/26/2022
5.2.1.15-beta 638 10/26/2022
5.2.1.14-beta 692 10/26/2022
5.2.1.13-beta 723 10/25/2022
5.2.1.12-beta 706 10/25/2022
5.2.1.11-beta 666 10/25/2022
5.2.1.10-beta 701 10/24/2022
5.2.1.9-beta 767 10/21/2022
5.2.1.8-beta 700 10/20/2022
5.2.1.7-beta 1,689 10/19/2022
5.2.1.6-beta 755 10/19/2022
5.2.1.5-beta 1,307 10/18/2022
5.2.1.4-beta 667 10/17/2022
5.2.1.3-beta 672 10/17/2022
5.2.1.2-beta 683 10/16/2022
5.2.1.1-beta 728 10/15/2022
5.2.1 23,327 10/15/2022
5.2.0.2-beta 638 10/15/2022
5.2.0.1-beta 703 10/14/2022
5.2.0 2,774 10/13/2022
5.2.0-beta9 1,159 9/16/2022
5.2.0-beta8 753 9/16/2022
5.2.0-beta7 786 9/14/2022
5.2.0-beta6 769 9/14/2022
5.2.0-beta5 736 9/14/2022
5.2.0-beta4 726 9/13/2022
5.2.0-beta3 694 9/12/2022
5.2.0-beta28 749 10/13/2022
5.2.0-beta27 733 10/12/2022
5.2.0-beta26 660 10/9/2022
5.2.0-beta25 662 10/6/2022
5.2.0-beta24 698 10/6/2022
5.2.0-beta23 672 10/5/2022
5.2.0-beta22 654 9/30/2022
5.2.0-beta21 716 9/27/2022
5.2.0-beta20 707 9/26/2022
5.2.0-beta2 810 9/10/2022
5.2.0-beta19 714 9/25/2022
5.2.0-beta18 734 9/25/2022
5.2.0-beta17 689 9/23/2022
5.2.0-beta16 664 9/22/2022
5.2.0-beta15 794 9/20/2022
5.2.0-beta14 682 9/20/2022
5.2.0-beta13 729 9/19/2022
5.2.0-beta12 752 9/19/2022
5.2.0-beta11 723 9/17/2022
5.2.0-beta10 709 9/16/2022
5.2.0-beta1 680 9/10/2022
5.1.1-beta5 768 9/10/2022
5.1.1-beta4 715 9/9/2022
5.1.1-beta3 672 9/9/2022
5.1.1-beta2 667 9/9/2022
5.1.1-beta1 674 9/8/2022
5.1.0 36,260 9/8/2022
5.1.0-beta9 885 8/31/2022
5.1.0-beta8 682 8/29/2022
5.1.0-beta7 685 8/29/2022
5.1.0-beta6 729 8/28/2022
5.1.0-beta5 652 8/27/2022
5.1.0-beta4 672 8/27/2022
5.1.0-beta3 753 8/26/2022
5.1.0-beta2 685 8/25/2022
5.1.0-beta17 687 9/7/2022
5.1.0-beta16 677 9/7/2022
5.1.0-beta15 1,238 9/5/2022
5.1.0-beta14 686 9/4/2022
5.1.0-beta13 704 9/2/2022
5.1.0-beta12 657 9/1/2022
5.1.0-beta11 713 9/1/2022
5.1.0-beta10 643 8/31/2022
5.1.0-beta1 660 8/25/2022
5.0.0 23,657 8/24/2022
5.0.0-beta9 783 8/21/2022
5.0.0-beta8 686 8/20/2022
5.0.0-beta7 689 8/20/2022
5.0.0-beta6 771 8/18/2022
5.0.0-beta5 862 8/17/2022
5.0.0-beta4 667 8/17/2022
5.0.0-beta3 701 8/16/2022
5.0.0-beta2 725 8/15/2022
5.0.0-beta13 637 8/23/2022
5.0.0-beta12 742 8/23/2022
5.0.0-beta11 762 8/22/2022
5.0.0-beta10 663 8/22/2022
5.0.0-beta1 693 8/15/2022
4.5.0-beta9 1,199 8/13/2022
4.5.0-beta8 754 8/12/2022
4.5.0-beta7 824 8/11/2022
4.5.0-beta6 868 8/9/2022
4.5.0-beta5 661 8/8/2022
4.5.0-beta4 766 8/8/2022
4.5.0-beta3 681 8/8/2022
4.5.0-beta2 696 8/8/2022
4.5.0-beta15 710 8/15/2022
4.5.0-beta14 713 8/14/2022
4.5.0-beta13 715 8/14/2022
4.5.0-beta12 676 8/14/2022
4.5.0-beta11 702 8/14/2022
4.5.0-beta10 664 8/13/2022
4.5.0-beta1 728 8/4/2022
4.4.0 32,040 8/3/2022
4.4.0-beta9 692 8/2/2022
4.4.0-beta8 707 7/31/2022
4.4.0-beta7 686 7/28/2022
4.4.0-beta6 763 7/24/2022
4.4.0-beta5 721 7/24/2022
4.4.0-beta4 716 7/23/2022
4.4.0-beta3 711 7/22/2022
4.4.0-beta2 699 7/22/2022
4.4.0-beta1 706 7/20/2022
4.3.2-beta1 810 7/13/2022
4.3.1 25,641 7/13/2022
4.3.1-beta5 917 7/10/2022
4.3.1-beta4 865 7/3/2022
4.3.1-beta3 706 7/2/2022
4.3.1-beta2 1,622 7/2/2022
4.3.1-beta1 763 6/30/2022
4.3.0 74,612 6/17/2022
4.3.0-beta9 1,266 5/30/2022
4.3.0-beta8 694 5/29/2022
4.3.0-beta7 822 5/27/2022
4.3.0-beta6 798 5/25/2022
4.3.0-beta5 758 5/24/2022
4.3.0-beta4 696 5/24/2022
4.3.0-beta3 683 5/23/2022
4.3.0-beta2 754 5/21/2022
4.3.0-beta11 684 6/3/2022
4.3.0-beta10 646 5/31/2022
4.3.0-beta1 727 5/20/2022
4.2.1-beta2 680 5/19/2022
4.2.1-beta1 675 5/19/2022
4.2.0 14,335 5/19/2022
4.2.0-beta9 904 5/13/2022
4.2.0-beta8 703 5/13/2022
4.2.0-beta7 746 5/11/2022
4.2.0-beta6 725 5/11/2022
4.2.0-beta5 712 5/10/2022
4.2.0-beta4 718 5/9/2022
4.2.0-beta3 754 5/7/2022
4.2.0-beta2 700 5/6/2022
4.2.0-beta10 702 5/18/2022
4.2.0-beta1 844 4/28/2022
4.1.0 16,622 4/26/2022
4.1.0-beta8 8,738 4/26/2022
4.1.0-beta7 732 4/26/2022
4.1.0-beta6 691 4/24/2022
4.1.0-beta5 682 4/23/2022
4.1.0-beta4 803 4/10/2022
4.1.0-beta3 726 4/6/2022
4.1.0-beta2 987 4/2/2022
4.1.0-beta1 766 3/31/2022
4.0.0 44,277 3/30/2022
4.0.0-beta6 782 3/26/2022
4.0.0-beta5 760 3/24/2022
4.0.0-beta4 716 3/23/2022
4.0.0-beta3 752 3/22/2022
4.0.0-beta2 724 3/22/2022
4.0.0-beta1 691 3/22/2022
3.12.1-beta2 730 3/22/2022
3.12.1-beta1 678 3/21/2022
3.11.0 8,150 3/21/2022
3.11.0-beta9 753 3/17/2022
3.11.0-beta8 684 3/16/2022
3.11.0-beta7 714 3/15/2022
3.11.0-beta6 735 3/14/2022
3.11.0-beta5 690 3/14/2022
3.11.0-beta4 725 3/14/2022
3.11.0-beta3 709 3/13/2022
3.11.0-beta2 702 3/13/2022
3.11.0-beta12 738 3/18/2022
3.11.0-beta11 881 3/17/2022
3.11.0-beta10 662 3/17/2022
3.11.0-beta1 715 3/10/2022
3.10.0 6,055 3/10/2022
3.10.0-beta7 726 3/9/2022
3.10.0-beta6 726 3/9/2022
3.10.0-beta5 751 3/8/2022
3.10.0-beta4 720 3/8/2022
3.10.0-beta3 692 3/8/2022
3.10.0-beta2 786 3/5/2022
3.10.0-beta1 704 3/5/2022
3.9.1 1,926 3/4/2022
3.9.0-beta9 731 3/2/2022
3.9.0-beta8 711 3/1/2022
3.9.0-beta7 694 3/1/2022
3.9.0-beta6 721 3/1/2022
3.9.0-beta5 707 3/1/2022
3.9.0-beta4 699 3/1/2022
3.9.0-beta3 715 2/28/2022
3.9.0-beta2 694 2/28/2022
3.9.0-beta13 710 3/4/2022
3.9.0-beta12 736 3/4/2022
3.9.0-beta11 737 3/3/2022
3.9.0-beta10 703 3/2/2022
3.9.0-beta1 712 2/27/2022
3.8.1 3,473 2/27/2022
3.8.0 1,599 2/26/2022
3.7.1-beta2 733 2/25/2022
3.7.1-beta1 657 2/25/2022
3.7.0 1,510 2/25/2022
3.6.0 1,651 2/23/2022
3.6.0-beta8 728 2/23/2022
3.6.0-beta7 707 2/23/2022
3.6.0-beta6 704 2/23/2022
3.6.0-beta5 710 2/22/2022
3.6.0-beta4 731 2/22/2022
3.6.0-beta3 721 2/21/2022
3.6.0-beta2 689 2/21/2022
3.6.0-beta1 710 2/19/2022
3.5.1 1,469 2/19/2022
3.5.1-beta4 723 2/18/2022
3.5.1-beta3 696 2/18/2022
3.5.1-beta2 740 2/18/2022
3.5.1-beta1 737 2/18/2022
3.5.0 1,543 2/16/2022
3.5.0-beta9 701 2/15/2022
3.5.0-beta8 739 2/15/2022
3.5.0-beta7 674 2/14/2022
3.5.0-beta6 764 2/14/2022
3.5.0-beta5 738 2/14/2022
3.5.0-beta4 724 2/14/2022
3.5.0-beta3 724 2/10/2022
3.5.0-beta2 751 2/9/2022
3.5.0-beta10 708 2/16/2022
3.5.0-beta1 717 2/9/2022
3.4.1 1,493 2/13/2022
3.4.0 1,919 2/7/2022
3.4.0-beta2 719 2/6/2022
3.4.0-beta1 725 2/6/2022
3.3.0 1,389 2/5/2022
3.3.0-beta4 776 2/4/2022
3.3.0-beta3 844 2/3/2022
3.3.0-beta2 704 2/3/2022
3.3.0-beta1 743 2/3/2022
3.2.2 1,473 2/2/2022
3.2.1 1,490 2/1/2022
3.2.1-beta1 693 1/30/2022
3.2.0 2,726 1/30/2022
3.2.0-beta6 714 1/30/2022
3.2.0-beta5 673 1/29/2022
3.2.0-beta4 728 1/29/2022
3.2.0-beta3 721 1/28/2022
3.2.0-beta2 731 1/28/2022
3.2.0-beta1 734 1/25/2022
3.1.4 3,075 1/27/2022
3.1.3 1,592 1/26/2022
3.1.3-beta1 753 1/26/2022
3.1.2 1,461 1/25/2022
3.1.1 1,419 1/24/2022
3.1.0 1,363 1/24/2022
3.0.0 1,384 1/22/2022
3.0.0-beta1 700 1/22/2022
2.21.0-beta9 1,597 1/19/2022
2.21.0-beta8 691 1/19/2022
2.21.0-beta7 671 1/18/2022
2.21.0-beta6 669 1/18/2022
2.21.0-beta5 705 1/18/2022
2.21.0-beta4 663 1/18/2022
2.21.0-beta3 707 1/18/2022
2.21.0-beta2 672 1/17/2022
2.21.0-beta15 689 1/21/2022
2.21.0-beta14 693 1/21/2022
2.21.0-beta13 670 1/20/2022
2.21.0-beta12 718 1/20/2022
2.21.0-beta11 647 1/19/2022
2.21.0-beta10 729 1/19/2022
2.21.0-beta1 694 1/16/2022
2.20.0 1,141 1/16/2022
2.20.0-beta3 669 1/16/2022
2.20.0-beta2 700 1/15/2022
2.20.0-beta1 718 1/15/2022
2.19.2 1,334 1/14/2022
2.19.1 1,239 1/10/2022
2.19.0 1,152 1/10/2022
2.19.0-beta2 717 1/9/2022
2.19.0-beta1 746 1/6/2022
2.18.1 1,250 1/2/2022
2.18.0 1,182 12/31/2021
2.18.0-beta2 747 12/30/2021
2.18.0-beta1 689 12/30/2021
2.17.0 1,198 12/29/2021
2.17.0-beta2 706 12/28/2021
2.17.0-beta1 736 12/27/2021
2.16.0 1,207 12/25/2021
2.15.0 1,181 12/23/2021
2.15.0-beta2 717 12/22/2021
2.15.0-beta1 707 12/22/2021
2.14.0 1,153 12/21/2021
2.14.0-beta1 737 12/20/2021
2.13.1 1,186 12/20/2021
2.13.0 1,147 12/19/2021
2.12.0 962 12/17/2021
2.12.0-beta2 640 12/16/2021
2.12.0-beta1 718 12/16/2021
2.11.0 1,003 12/15/2021
2.10.1-beta1 712 12/15/2021
2.10.0 6,540 11/24/2021
2.10.0-beta2 5,619 11/24/2021
2.10.0-beta1 739 11/18/2021
2.9.1 1,042 11/9/2021
2.9.0 1,038 11/4/2021
2.9.0-beta3 771 11/1/2021
2.9.0-beta2 803 10/25/2021
2.9.0-beta1 855 10/24/2021
2.8.1 1,151 10/24/2021
2.8.0 1,013 10/24/2021
2.8.0-beta1 737 10/23/2021
2.7.1 1,098 10/23/2021
2.7.0 1,009 10/23/2021
2.6.0 1,120 10/21/2021
2.5.1 976 10/20/2021
2.5.0 1,010 10/20/2021
2.5.0-beta1 797 10/19/2021
2.4.0 997 10/19/2021
2.3.0 989 10/18/2021
2.3.0-beta2 761 10/18/2021
2.2.1 1,006 10/17/2021
2.2.0 1,050 10/17/2021
2.1.1 1,054 10/16/2021
2.1.0 1,044 10/16/2021
2.1.0-beta5 776 10/16/2021
2.1.0-beta4 806 10/16/2021
2.1.0-beta3 808 10/16/2021
2.1.0-beta2 710 10/15/2021
2.1.0-beta1 747 10/15/2021
2.0.0 1,044 10/14/2021
1.9.0 1,046 10/13/2021
1.8.0 973 10/12/2021
1.8.0-beta1 730 10/11/2021
1.7.0 1,096 10/10/2021
1.6.0 1,087 10/7/2021
1.6.0-beta5 739 10/6/2021
1.6.0-beta4 745 10/6/2021
1.6.0-beta3 720 10/5/2021
1.6.0-beta2 716 10/5/2021
1.6.0-beta1 745 10/5/2021
1.5.0 997 10/4/2021
1.4.0 1,042 10/3/2021
1.3.0 1,013 10/1/2021
1.2.0 1,032 9/29/2021
1.1.0 1,031 9/29/2021
1.0.0 17,256 9/28/2021
1.0.0-rc6 735 9/28/2021
1.0.0-rc5 744 9/27/2021
1.0.0-rc4 741 9/27/2021
1.0.0-rc3 807 9/27/2021
1.0.0-rc2 756 9/27/2021
1.0.0-rc1 762 9/27/2021
1.0.0-beta6 753 9/26/2021
1.0.0-beta5 700 9/26/2021
1.0.0-beta4 794 9/26/2021
1.0.0-beta3 757 9/25/2021
1.0.0-beta2 792 9/25/2021

WARNING: this is a beta release. do not use in production!