Serilog 4.3.1-dev-02373

Serilog Build status NuGet Version NuGet Downloads Stack Overflow

Serilog is a diagnostic logging library for .NET applications. It is easy to set up, has a clean API, and runs on all recent .NET platforms. While it's useful even in the simplest applications, Serilog's support for structured logging shines when instrumenting complex, distributed, and asynchronous applications and systems.

Serilog

Like many other libraries for .NET, Serilog provides diagnostic logging to files, the console, and many other outputs.

using var log = new LoggerConfiguration()
    .WriteTo.Console()
    .WriteTo.File("log.txt")
    .CreateLogger();

log.Information("Hello, Serilog!");

Unlike other logging libraries, Serilog is built from the ground up to record structured event data.

var position = new { Latitude = 25, Longitude = 134 };
var elapsedMs = 34;

log.Information("Processed {@Position} in {Elapsed} ms", position, elapsedMs);

Serilog uses message templates, a simple DSL that extends .NET format strings with named as well as positional parameters. Instead of formatting events immediately into text, Serilog captures the values associated with each named parameter.

The example above records two properties, Position and Elapsed, in the log event. The @ operator in front of Position tells Serilog to serialize the object passed in, rather than convert it using ToString(). Serilog's deep and rich support for structured event data opens up a huge range of diagnostic possibilities not available when using traditional loggers.

Rendered into JSON format for example, these properties appear alongside the timestamp, level, and message like:

{"Position": {"Latitude": 25, "Longitude": 134}, "Elapsed": 34}

Back-ends that are capable of recording structured event data make log searches and analysis possible without log parsing or regular expressions.

Supporting structured data doesn't mean giving up text: when Serilog writes events to files or the console, the template and properties are rendered into friendly human-readable text just like a traditional logging library would produce:

09:14:22 [INF] Processed {"Latitude": 25, "Longitude": 134} in 34 ms.

Upgrading from an earlier Serilog version? Find release notes here.

Features

  • Community-backed and actively developed
  • Format-based logging API with familiar levels like Debug, Information, Warning, Error, and so-on
  • Discoverable C# configuration syntax and optional XML or JSON configuration support
  • Efficient when enabled, extremely low overhead when a logging level is switched off
  • Best-in-class .NET Core support, including rich integration with ASP.NET Core
  • Support for a comprehensive range of sinks, including files, the console, on-premises and cloud-based log servers, databases, and message queues
  • Sophisticated enrichment of log events with contextual information, including scoped (LogContext) properties, thread and process identifiers, and domain-specific correlation ids such as HttpRequestId
  • Zero-shared-state Logger objects, with an optional global static Log class
  • Format-agnostic logging pipeline that can emit events in plain text, JSON, in-memory LogEvent objects (including Rx pipelines) and other formats

Getting started

Serilog is installed from NuGet. To view log events, one or more sinks need to be installed as well, here we'll use the pretty-printing console sink, and a rolling file set:

dotnet add package Serilog
dotnet add package Serilog.Sinks.Console
dotnet add package Serilog.Sinks.File

The simplest way to set up Serilog is using the static Log class. A LoggerConfiguration is used to create and assign the default logger, normally in Program.cs:

using Serilog;

Log.Logger = new LoggerConfiguration()
    .WriteTo.Console()
    .WriteTo.File("log.txt",
        rollingInterval: RollingInterval.Day,
        rollOnFileSizeLimit: true)
    .CreateLogger();

try
{
    // Your program here...
    const string name = "Serilog";
    Log.Information("Hello, {Name}!", name);
    throw new InvalidOperationException("Oops...");
}
catch (Exception ex)
{
    Log.Error(ex, "Unhandled exception");
}
finally
{
    await Log.CloseAndFlushAsync(); // ensure all logs written before app exits
}

Find more, including a runnable example application, under the Getting Started topic in the documentation.

Getting help

To learn more about Serilog, check out the documentation - you'll find information there on the most common scenarios. If Serilog isn't working the way you expect, you may find the troubleshooting guide useful.

Serilog has an active and helpful community who are happy to help point you in the right direction or work through any issues you might encounter. You can get in touch via:

We welcome reproducible bug reports and detailed feature requests through our GitHub issue tracker; note the other resource are much better for quick questions or seeking usage help.

Contributing

Would you like to help make Serilog even better? We keep a list of issues that are approachable for newcomers under the up-for-grabs label (accessible only when logged into GitHub). Before starting work on a pull request, we suggest commenting on, or raising, an issue on the issue tracker so that we can help and coordinate efforts. For more details check out our contributing guide.

When contributing please keep in mind our Code of Conduct.

Serilog is copyright © Serilog Contributors - Provided under the Apache License, Version 2.0. Needle and thread logo a derivative of work by Kenneth Appiah.

Showing the top 20 packages that depend on Serilog.

Packages Downloads
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
156
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
227
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
261
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
313
Serilog.AspNetCore.Plus
Serilog support for ASP.NET Core logging with some plus features
146
Serilog.Enrichers.WithCaller
Log message Enrichter, adding caller and code line infos
144
Serilog.Enrichers.WithCaller
Log message Enrichter, adding caller and code line infos
162
Serilog.Extensions.Hosting
Serilog support for .NET Core logging in hosted services
143
Serilog.Extensions.Logging
Low-level Serilog provider for Microsoft.Extensions.Logging
134
Serilog.Extensions.Logging
Low-level Serilog provider for Microsoft.Extensions.Logging
144
Serilog.Formatting.Compact
A simple, compact JSON-based event format for Serilog.
146
Serilog.Formatting.Compact
A simple, compact JSON-based event format for Serilog.
172
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
152
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
162
Serilog.Sinks.Console
A Serilog sink that writes log events to the console/terminal.
135
Serilog.Sinks.Console
A Serilog sink that writes log events to the console/terminal.
180
Serilog.Sinks.Debug
A Serilog sink that writes log events to the debug output window.
274
Serilog.Sinks.File
Write Serilog events to text files in plain or JSON format.
263
Serilog.Sinks.PeriodicBatching
The periodic batching sink for Serilog
147
Serilog.Sinks.PostgreSQL
Serilog sink for writing to PostgreSQL table
489

.NET Framework 4.6.2

.NET Standard 2.0

.NET 9.0

  • No dependencies.

.NET 8.0

  • No dependencies.

.NET 6.0

  • No dependencies.

.NET Framework 4.7.1

Version Downloads Last updated
4.3.1-dev-02373 14 05/21/2025
4.3.0 17 05/20/2025
4.3.0-dev-02364 20 05/15/2025
4.3.0-dev-02363 19 05/15/2025
4.3.0-dev-02361 18 05/15/2025
4.3.0-dev-02360 18 05/15/2025
4.3.0-dev-02358 14 05/13/2025
4.3.0-dev-02357 18 05/13/2025
4.2.1-dev-02356 19 05/13/2025
4.2.1-dev-02355 16 05/13/2025
4.2.1-dev-02352 24 03/31/2025
4.2.1-dev-02340 20 04/02/2025
4.2.1-dev-02337 13 01/01/2025
4.2.0 24 12/07/2024
4.2.0-dev-02332 22 12/05/2024
4.2.0-dev-02331 21 12/04/2024
4.2.0-dev-02330 27 12/02/2024
4.2.0-dev-02328 25 11/20/2024
4.1.1-dev-02320 21 11/20/2024
4.1.1-dev-02318 23 11/03/2024
4.1.1-dev-02314 21 10/30/2024
4.1.0 24 10/23/2024
4.1.0-dev-02312 26 10/22/2024
4.1.0-dev-02311 25 10/22/2024
4.1.0-dev-02302 23 10/21/2024
4.1.0-dev-02301 25 10/21/2024
4.1.0-dev-02238 20 10/05/2024
4.1.0-dev-02235 28 10/04/2024
4.0.2 28 10/05/2024
4.0.2-dev-02232 20 10/05/2024
4.0.2-dev-02226 25 08/27/2024
4.0.2-dev-02224 28 08/23/2024
4.0.2-dev-02220 26 07/25/2024
4.0.1 24 08/25/2024
4.0.1-dev-02215 28 07/25/2024
4.0.1-dev-02212 29 08/25/2024
4.0.1-dev-02209 27 07/24/2024
4.0.1-dev-02205 25 07/24/2024
4.0.0 107 07/25/2024
4.0.0-dev-02201 29 07/24/2024
4.0.0-dev-02195 27 07/24/2024
4.0.0-dev-02191 25 07/24/2024
4.0.0-dev-02184 21 07/24/2024
4.0.0-dev-02183 26 07/24/2024
4.0.0-dev-02174 24 07/26/2024
4.0.0-dev-02167 29 07/24/2024
4.0.0-dev-02166 26 07/24/2024
4.0.0-dev-02163 23 08/25/2024
4.0.0-dev-02160 29 07/24/2024
4.0.0-dev-02159 24 07/24/2024
4.0.0-dev-02149 25 07/24/2024
4.0.0-dev-02122 30 07/24/2024
4.0.0-dev-02113 26 07/24/2024
4.0.0-dev-02108 26 07/24/2024
3.1.2-dev-02097 27 07/18/2024
3.1.1 120 02/04/2024
3.1.1-dev-02091 24 07/24/2024
3.1.0 31 07/24/2024
3.1.0-dev-02086 31 07/24/2024
3.1.0-dev-02083 25 07/24/2024
3.1.0-dev-02078 26 07/24/2024
3.1.0-dev-02077 23 08/26/2024
3.1.0-dev-02072 28 07/24/2024
3.1.0-dev-02071 26 08/25/2024
3.1.0-dev-02070 24 07/24/2024
3.1.0-dev-02064 22 10/01/2024
3.0.2-dev-02063 21 07/24/2024
3.0.2-dev-02056 23 07/24/2024
3.0.2-dev-02044 24 08/25/2024
3.0.2-dev-02042 23 08/25/2024
3.0.1 28 07/24/2024
3.0.1-dev-02033 23 07/24/2024
3.0.0 24 07/24/2024
3.0.0-dev-02028 27 07/24/2024
3.0.0-dev-02025 26 07/24/2024
3.0.0-dev-02022 23 07/24/2024
3.0.0-dev-02018 23 07/24/2024
3.0.0-dev-02012 26 08/25/2024
3.0.0-dev-02010 25 07/24/2024
3.0.0-dev-02008 26 08/25/2024
3.0.0-dev-01998 27 07/24/2024
3.0.0-dev-01993 28 07/24/2024
3.0.0-dev-01984 32 08/25/2024
3.0.0-dev-01982 26 07/24/2024
3.0.0-dev-01977 28 07/24/2024
3.0.0-dev-01974 24 10/01/2024
3.0.0-dev-01970 23 07/24/2024
3.0.0-dev-01969 24 07/24/2024
3.0.0-dev-01958 24 07/24/2024
3.0.0-dev-01957 26 07/24/2024
3.0.0-dev-01954 29 07/24/2024
3.0.0-dev-01950 29 07/24/2024
3.0.0-dev-01949 29 07/24/2024
3.0.0-dev-01948 33 07/24/2024
3.0.0-dev-01943 31 07/24/2024
3.0.0-dev-01942 26 07/24/2024
3.0.0-dev-01939 24 07/24/2024
3.0.0-dev-01927 29 08/24/2024
3.0.0-dev-01926 28 07/24/2024
3.0.0-dev-01924 28 08/25/2024
3.0.0-dev-01923 27 07/24/2024
3.0.0-dev-01921 25 07/24/2024
3.0.0-dev-01910 24 07/26/2024
3.0.0-dev-01909 23 07/24/2024
3.0.0-dev-01907 26 07/24/2024
3.0.0-dev-01901 26 07/24/2024
3.0.0-dev-01900 23 08/25/2024
3.0.0-dev-01899 28 07/24/2024
3.0.0-dev-01885 29 07/24/2024
3.0.0-dev-01884 22 07/24/2024
3.0.0-dev-01873 28 07/24/2024
3.0.0-dev-01870 26 07/24/2024
3.0.0-dev-01862 25 07/24/2024
3.0.0-dev-01860 28 07/24/2024
3.0.0-dev-01857 23 07/24/2024
3.0.0-dev-01856 26 07/24/2024
3.0.0-dev-01853 28 07/24/2024
3.0.0-dev-01850 27 08/25/2024
3.0.0-dev-01842 25 07/24/2024
3.0.0-dev-01840 23 07/24/2024
3.0.0-dev-01839 29 08/25/2024
3.0.0-dev-01838 29 07/24/2024
3.0.0-dev-01837 27 07/24/2024
3.0.0-dev-01836 25 08/25/2024
3.0.0-dev-01835 31 07/24/2024
3.0.0-dev-01828 30 07/24/2024
3.0.0-dev-01822 25 07/24/2024
3.0.0-dev-01817 27 10/10/2024
3.0.0-dev-01812 22 07/24/2024
3.0.0-dev-01811 25 07/24/2024
3.0.0-dev-01809 26 08/19/2024
3.0.0-dev-01801 27 07/24/2024
3.0.0-dev-01800 26 07/24/2024
3.0.0-dev-01794 25 07/24/2024
3.0.0-dev-01787 27 07/24/2024
3.0.0-dev-01774 27 07/24/2024
3.0.0-dev-01771 23 07/24/2024
3.0.0-dev-01768 25 07/24/2024
3.0.0-dev-01739 28 07/24/2024
3.0.0-dev-01728 26 08/25/2024
3.0.0-dev-01723 22 07/24/2024
3.0.0-dev-01722 27 07/24/2024
3.0.0-dev-01716 26 07/24/2024
3.0.0-dev-01703 27 07/24/2024
3.0.0-dev-01701 26 07/24/2024
3.0.0-dev-01691 24 07/24/2024
3.0.0-dev-01688 26 07/24/2024
3.0.0-dev-01685 18 08/25/2024
3.0.0-dev-01680 23 07/24/2024
3.0.0-dev-01675 24 07/24/2024
3.0.0-dev-01671 23 07/24/2024
3.0.0-dev-01670 25 07/24/2024
3.0.0-dev-01669 26 07/24/2024
3.0.0-dev-01668 22 08/25/2024
3.0.0-dev-01667 23 07/24/2024
3.0.0-dev-01666 27 07/25/2024
3.0.0-dev-01645 25 07/24/2024
2.12.1-dev-01635 30 07/24/2024
2.12.1-dev-01634 29 07/24/2024
2.12.1-dev-01629 24 07/24/2024
2.12.1-dev-01621 24 07/24/2024
2.12.1-dev-01620 24 07/24/2024
2.12.1-dev-01594 23 08/25/2024
2.12.1-dev-01587 24 07/24/2024
2.12.0 31 02/05/2024
2.12.0-dev-01571 25 07/24/2024
2.12.0-dev-01568 28 07/24/2024
2.12.0-dev-01564 23 07/24/2024
2.12.0-dev-01559 26 07/24/2024
2.12.0-dev-01555 28 08/07/2024
2.12.0-dev-01553 29 07/24/2024
2.12.0-dev-01551 24 07/24/2024
2.12.0-dev-01543 25 07/25/2024
2.12.0-dev-01538 25 07/24/2024
2.12.0-dev-01535 27 07/24/2024
2.12.0-dev-01533 25 08/25/2024
2.12.0-dev-01525 30 07/24/2024
2.12.0-dev-01520 25 07/24/2024
2.12.0-dev-01518 25 07/24/2024
2.12.0-dev-01516 27 07/24/2024
2.12.0-dev-01511 24 07/24/2024
2.12.0-dev-01504 26 07/24/2024
2.12.0-dev-01501 28 07/24/2024
2.12.0-dev-01499 26 08/25/2024
2.12.0-dev-01494 34 07/24/2024
2.12.0-dev-01492 26 07/24/2024
2.12.0-dev-01490 23 07/24/2024
2.12.0-dev-01489 28 07/24/2024
2.12.0-dev-01479 25 07/24/2024
2.12.0-dev-01477 26 07/24/2024
2.12.0-dev-01474 25 07/24/2024
2.12.0-dev-01471 20 07/26/2024
2.12.0-dev-01463 27 07/24/2024
2.12.0-dev-01458 23 07/24/2024
2.12.0-dev-01451 20 07/24/2024
2.12.0-dev-01449 29 07/25/2024
2.12.0-dev-01447 29 07/24/2024
2.12.0-dev-01445 29 07/26/2024
2.12.0-dev-01439 26 07/24/2024
2.12.0-dev-01435 26 07/24/2024
2.11.1-dev-01397 29 08/25/2024
2.11.0 28 07/24/2024
2.11.0-dev-01391 25 07/26/2024
2.11.0-dev-01387 23 07/24/2024
2.11.0-dev-01380 28 08/25/2024
2.11.0-dev-01377 24 07/24/2024
2.11.0-dev-01371 27 07/24/2024
2.11.0-dev-01367 25 08/25/2024
2.10.1-dev-01366 27 07/24/2024
2.10.1-dev-01365 24 07/24/2024
2.10.1-dev-01343 30 08/25/2024
2.10.1-dev-01338 23 07/24/2024
2.10.1-dev-01337 24 07/24/2024
2.10.1-dev-01334 29 07/24/2024
2.10.1-dev-01324 26 08/25/2024
2.10.1-dev-01321 24 07/24/2024
2.10.1-dev-01315 24 07/24/2024
2.10.1-dev-01314 31 07/24/2024
2.10.1-dev-01308 27 07/24/2024
2.10.1-dev-01306 22 07/24/2024
2.10.1-dev-01285 23 07/24/2024
2.10.1-dev-01265 22 07/24/2024
2.10.1-dev-01256 25 07/24/2024
2.10.1-dev-01249 30 07/24/2024
2.10.1-dev-01248 26 07/24/2024
2.10.0 346 02/04/2024
2.10.0-dev-01245 26 08/24/2024
2.10.0-dev-01240 28 07/24/2024
2.10.0-dev-01226 26 07/25/2024
2.10.0-dev-01221 28 07/24/2024
2.10.0-dev-01219 28 07/24/2024
2.10.0-dev-01213 23 08/25/2024
2.10.0-dev-01211 26 07/24/2024
2.10.0-dev-01191 25 07/24/2024
2.10.0-dev-01187 25 08/25/2024
2.9.1-dev-01177 28 07/24/2024
2.9.1-dev-01172 25 07/24/2024
2.9.1-dev-01169 26 07/24/2024
2.9.1-dev-01167 30 07/24/2024
2.9.1-dev-01166 24 07/24/2024
2.9.1-dev-01165 29 07/24/2024
2.9.1-dev-01154 22 09/04/2024
2.9.1-dev-01151 23 07/24/2024
2.9.1-dev-01149 25 07/24/2024
2.9.1-dev-01148 27 07/24/2024
2.9.1-dev-01141 24 07/24/2024
2.9.1-dev-01138 23 08/25/2024
2.9.0 33 07/24/2024
2.9.0-dev-01133 27 07/24/2024
2.9.0-dev-01124 28 07/24/2024
2.9.0-dev-01119 29 07/24/2024
2.9.0-dev-01116 25 07/26/2024
2.9.0-dev-01102 26 07/24/2024
2.9.0-dev-01099 23 07/25/2024
2.9.0-dev-01098 21 08/25/2024
2.9.0-dev-01091 29 07/24/2024
2.8.1-dev-01090 25 08/25/2024
2.8.1-dev-01086 26 07/24/2024
2.8.1-dev-01085 26 07/24/2024
2.8.1-dev-01063 28 07/25/2024
2.8.1-dev-01058 26 07/24/2024
2.8.1-dev-01054 23 07/24/2024
2.8.1-dev-01052 28 07/24/2024
2.8.1-dev-01049 21 07/26/2024
2.8.1-dev-01048 22 07/24/2024
2.8.1-dev-01047 24 07/24/2024
2.8.0 40 08/25/2024
2.8.0-dev-01042 26 07/24/2024
2.7.2-dev-01041 24 07/24/2024
2.7.2-dev-01033 24 08/25/2024
2.7.2-dev-01032 24 07/23/2024
2.7.2-dev-01030 23 07/24/2024
2.7.2-dev-01027 24 08/25/2024
2.7.2-dev-01024 24 07/24/2024
2.7.2-dev-01023 30 07/24/2024
2.7.2-dev-01017 23 07/24/2024
2.7.2-dev-01013 24 08/25/2024
2.7.2-dev-01010 21 08/06/2024
2.7.2-dev-01005 25 07/24/2024
2.7.1 146 02/04/2024
2.7.1-dev-01000 28 07/24/2024
2.7.1-dev-00993 27 08/25/2024
2.7.1-dev-00990 30 07/25/2024
2.7.1-dev-00985 26 07/24/2024
2.7.1-dev-00983 22 07/24/2024
2.7.1-dev-00980 26 08/25/2024
2.7.1-dev-00972 27 07/24/2024
2.7.1-dev-00967 24 07/24/2024
2.7.1-dev-00963 27 07/24/2024
2.7.1-dev-00960 22 07/24/2024
2.7.1-dev-00956 27 08/25/2024
2.7.1-dev-00950 23 07/24/2024
2.6.1-dev-00948 27 07/24/2024
2.6.1-dev-00938 26 07/24/2024
2.6.1-dev-00936 32 07/24/2024
2.6.0 26 07/24/2024
2.6.0-dev-00932 26 07/24/2024
2.6.0-dev-00929 30 07/24/2024
2.6.0-dev-00925 27 07/24/2024
2.6.0-dev-00923 25 08/25/2024
2.6.0-dev-00922 31 07/24/2024
2.6.0-dev-00919 25 07/24/2024
2.6.0-dev-00915 29 08/25/2024
2.6.0-dev-00911 31 07/24/2024
2.6.0-dev-00904 28 07/26/2024
2.6.0-dev-00902 26 07/24/2024
2.6.0-dev-00894 24 07/24/2024
2.6.0-dev-00892 29 08/25/2024
2.5.1-dev-00890 27 08/25/2024
2.5.1-dev-00886 27 08/25/2024
2.5.1-dev-00873 22 07/24/2024
2.5.1-dev-00869 25 07/24/2024
2.5.1-dev-00863 26 07/24/2024
2.5.1-dev-00862 27 07/24/2024
2.5.1-dev-00859 25 07/24/2024
2.5.0 97 02/04/2024
2.5.0-dev-00855 25 07/24/2024
2.5.0-dev-00853 24 08/25/2024
2.5.0-dev-00848 26 07/24/2024
2.5.0-dev-00842 24 07/24/2024
2.5.0-dev-00841 29 07/24/2024
2.5.0-dev-00839 27 07/24/2024
2.5.0-dev-00833 24 07/24/2024
2.5.0-dev-00822 24 07/24/2024
2.5.0-dev-00820 25 07/26/2024
2.5.0-dev-00817 27 07/24/2024
2.5.0-dev-00814 28 07/24/2024
2.5.0-dev-00812 25 08/25/2024
2.4.1-dev-00811 28 07/24/2024
2.4.1-dev-00805 27 07/24/2024
2.4.1-dev-00801 23 08/25/2024
2.4.1-dev-00799 23 07/24/2024
2.4.1-dev-00796 28 07/24/2024
2.4.0 22 07/24/2024
2.4.0-dev-00771 26 08/25/2024
2.4.0-dev-00769 28 07/24/2024
2.4.0-dev-00767 25 07/24/2024
2.4.0-dev-00766 23 07/24/2024
2.4.0-dev-00760 24 07/24/2024
2.4.0-dev-00757 25 08/25/2024
2.4.0-dev-00755 25 07/24/2024
2.4.0-dev-00750 25 08/25/2024
2.4.0-dev-00746 25 07/24/2024
2.4.0-dev-00739 32 07/24/2024
2.4.0-dev-00736 26 08/25/2024
2.4.0-dev-00733 27 07/24/2024
2.4.0-dev-00730 24 08/25/2024
2.4.0-dev-00728 27 08/25/2024
2.4.0-dev-00723 25 07/24/2024
2.3.0 41 07/24/2024
2.3.0-dev-00719 27 07/24/2024
2.3.0-dev-00711 26 07/24/2024
2.3.0-dev-00707 23 07/25/2024
2.3.0-dev-00705 27 07/24/2024
2.3.0-dev-00704 26 07/24/2024
2.2.1 25 08/25/2024
2.2.1-dev-00697 23 07/24/2024
2.2.0 30 07/24/2024
2.2.0-dev-00693 24 07/24/2024
2.2.0-dev-00690 28 07/24/2024
2.2.0-dev-00688 26 07/24/2024
2.1.1-dev-00686 28 07/24/2024
2.1.1-dev-00680 25 08/25/2024
2.1.0 25 07/24/2024
2.1.0-dev-00674 24 07/24/2024
2.1.0-dev-00670 24 07/24/2024
2.1.0-dev-00668 24 07/25/2024
2.1.0-dev-00666 28 07/24/2024
2.0.1-dev-00665 24 08/19/2024
2.0.0 80 02/04/2024
2.0.0-rc-640 23 07/24/2024
2.0.0-rc-634 29 07/24/2024
2.0.0-rc-633 24 08/25/2024
2.0.0-rc-628 23 07/24/2024
2.0.0-rc-622 27 07/24/2024
2.0.0-rc-621 25 07/24/2024
2.0.0-rc-619 25 08/25/2024
2.0.0-rc-618 25 07/24/2024
2.0.0-rc-606 25 07/24/2024
2.0.0-rc-602 28 07/24/2024
2.0.0-rc-600 30 07/24/2024
2.0.0-rc-598 27 07/24/2024
2.0.0-rc-596 25 07/25/2024
2.0.0-rc-594 26 09/19/2024
2.0.0-rc-587 26 07/24/2024
2.0.0-rc-577 26 07/24/2024
2.0.0-rc-576 25 07/24/2024
2.0.0-rc-573 27 07/24/2024
2.0.0-rc-563 26 07/24/2024
2.0.0-rc-556 25 09/17/2024
2.0.0-beta-541 28 08/25/2024
2.0.0-beta-537 26 07/24/2024
2.0.0-beta-533 26 07/24/2024
2.0.0-beta-531 26 07/26/2024
2.0.0-beta-530 27 07/24/2024
2.0.0-beta-523 28 07/24/2024
2.0.0-beta-521 20 07/26/2024
2.0.0-beta-519 25 08/25/2024
2.0.0-beta-516 24 07/24/2024
2.0.0-beta-513 27 07/24/2024
2.0.0-beta-511 27 07/24/2024
2.0.0-beta-509 31 07/24/2024
2.0.0-beta-507 29 08/25/2024
2.0.0-beta-505 26 07/24/2024
2.0.0-beta-502 27 07/24/2024
2.0.0-beta-499 26 07/24/2024
2.0.0-beta-495 23 07/26/2024
2.0.0-beta-494 29 08/25/2024
2.0.0-beta-493 26 08/25/2024
2.0.0-beta-487 28 07/24/2024
2.0.0-beta-486 26 07/25/2024
2.0.0-beta-479 28 07/24/2024
2.0.0-beta-478 24 07/24/2024
2.0.0-beta-465 26 07/24/2024
2.0.0-beta-456 23 07/24/2024
2.0.0-beta-450 27 07/24/2024
2.0.0-beta-449 24 07/24/2024
2.0.0-beta-432 28 07/24/2024
2.0.0-beta-423 24 07/24/2024
2.0.0-beta-418 24 08/25/2024
2.0.0-beta-416 25 07/24/2024
2.0.0-beta-403 26 07/24/2024
2.0.0-beta-395 23 08/25/2024
1.5.14 30 07/24/2024
1.5.13 26 07/24/2024
1.5.12 27 07/24/2024
1.5.11 23 07/24/2024
1.5.10 29 07/24/2024
1.5.9 24 08/25/2024
1.5.8 25 07/24/2024
1.5.7 22 08/25/2024
1.5.6 27 07/24/2024
1.5.5 27 07/24/2024
1.5.1 25 08/25/2024
1.4.214 27 07/24/2024
1.4.204 27 07/24/2024
1.4.196 24 07/24/2024
1.4.182 29 07/24/2024
1.4.168 26 07/24/2024
1.4.155 32 07/24/2024
1.4.154 29 07/24/2024
1.4.152 28 07/24/2024
1.4.139 24 07/24/2024
1.4.128 28 07/24/2024
1.4.126 26 07/24/2024
1.4.118 26 07/24/2024
1.4.113 31 07/24/2024
1.4.102 23 07/24/2024
1.4.99 23 07/24/2024
1.4.97 25 07/24/2024
1.4.95 27 07/24/2024
1.4.76 27 07/24/2024
1.4.75 24 07/24/2024
1.4.39 26 07/24/2024
1.4.34 25 07/24/2024
1.4.28 26 07/24/2024
1.4.27 28 07/24/2024
1.4.23 24 07/24/2024
1.4.22 29 07/24/2024
1.4.21 27 07/24/2024
1.4.18 28 07/24/2024
1.4.17 34 07/24/2024
1.4.16 27 07/24/2024
1.4.15 25 07/24/2024
1.4.14 29 07/24/2024
1.4.13 27 07/24/2024
1.4.12 32 07/24/2024
1.4.11 26 07/24/2024
1.4.10 28 07/24/2024
1.4.9 25 07/24/2024
1.4.8 28 07/21/2024
1.4.7 26 07/24/2024
1.4.6 27 07/24/2024
1.4.5 25 07/24/2024
1.4.4 21 08/25/2024
1.4.3 30 07/24/2024
1.4.2 27 07/24/2024
1.4.1 25 07/24/2024
1.3.43 25 07/24/2024
1.3.42 28 07/24/2024
1.3.41 30 07/24/2024
1.3.40 25 07/24/2024
1.3.39 30 07/24/2024
1.3.38 22 07/24/2024
1.3.37 22 07/24/2024
1.3.36 29 07/24/2024
1.3.35 23 07/24/2024
1.3.34 29 07/24/2024
1.3.33 25 07/24/2024
1.3.30 26 07/24/2024
1.3.29 22 07/24/2024
1.3.28 25 07/24/2024
1.3.27 31 07/24/2024
1.3.26 28 07/24/2024
1.3.25 28 07/24/2024
1.3.24 27 07/24/2024
1.3.23 27 07/24/2024
1.3.20 25 07/24/2024
1.3.19 23 07/24/2024
1.3.18 26 07/24/2024
1.3.17 27 07/24/2024
1.3.16 28 07/24/2024
1.3.15 29 07/24/2024
1.3.14 22 07/24/2024
1.3.13 24 07/24/2024
1.3.12 28 07/24/2024
1.3.7 26 07/24/2024
1.3.6 24 07/24/2024
1.3.5 22 08/25/2024
1.3.4 23 07/24/2024
1.3.3 29 07/24/2024
1.3.1 27 07/24/2024
1.2.53 30 07/24/2024
1.2.52 29 07/24/2024
1.2.51 26 07/24/2024
1.2.50 31 07/24/2024
1.2.49 27 07/24/2024
1.2.48 28 07/24/2024
1.2.47 30 07/24/2024
1.2.45 26 07/24/2024
1.2.44 27 07/24/2024
1.2.41 27 07/24/2024
1.2.40 28 07/24/2024
1.2.39 29 07/24/2024
1.2.38 25 07/24/2024
1.2.37 25 07/24/2024
1.2.29 28 07/24/2024
1.2.27 24 07/24/2024
1.2.26 27 07/24/2024
1.2.25 30 07/24/2024
1.2.8 26 07/24/2024
1.2.7 27 07/24/2024
1.2.6 27 07/24/2024
1.2.5 28 08/25/2024
1.2.4 24 07/24/2024
1.2.3 27 07/24/2024
1.1.2 33 08/25/2024
1.1.1 27 07/24/2024
1.0.3 26 07/24/2024
1.0.2 26 07/24/2024
1.0.1 22 07/24/2024
0.9.5 28 07/24/2024
0.9.4 24 07/24/2024
0.9.3 26 07/24/2024
0.9.2 23 08/25/2024
0.9.1 30 07/24/2024
0.8.5 26 07/24/2024
0.8.4 24 07/24/2024
0.8.3 26 07/24/2024
0.8.2 29 07/24/2024
0.8.1 26 07/24/2024
0.7.2 26 08/25/2024
0.6.5 25 07/24/2024
0.6.4 23 07/24/2024
0.6.3 27 07/24/2024
0.6.1 30 07/24/2024
0.5.5 22 07/24/2024
0.5.4 22 07/24/2024
0.5.3 26 07/24/2024
0.5.2 25 07/25/2024
0.5.1 23 08/25/2024
0.4.3 22 07/24/2024
0.3.2 26 07/24/2024
0.3.1 21 08/25/2024
0.2.11 26 07/24/2024
0.2.10 27 07/24/2024
0.2.9 23 07/24/2024
0.2.8 24 07/24/2024
0.2.4 24 07/24/2024
0.2.3 26 07/24/2024
0.2.2 25 08/25/2024
0.2.1 30 07/24/2024
0.1.18 27 07/24/2024
0.1.17 25 07/24/2024
0.1.16 28 07/24/2024
0.1.12 34 07/24/2024
0.1.11 26 07/24/2024
0.1.10 22 07/24/2024
0.1.9 22 07/24/2024
0.1.8 28 07/24/2024
0.1.7 28 07/24/2024
0.1.6 21 07/24/2024