Serilog 4.3.1-dev-02387

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
194
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
283
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
337
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
381
Serilog.AspNetCore.Plus
Serilog support for ASP.NET Core logging with some plus features
171
Serilog.Enrichers.WithCaller
Log message Enrichter, adding caller and code line infos
183
Serilog.Enrichers.WithCaller
Log message Enrichter, adding caller and code line infos
220
Serilog.Extensions.Hosting
Serilog support for .NET Core logging in hosted services
168
Serilog.Extensions.Logging
Low-level Serilog provider for Microsoft.Extensions.Logging
161
Serilog.Formatting.Compact
A simple, compact JSON-based event format for Serilog.
164
Serilog.Formatting.Compact
A simple, compact JSON-based event format for Serilog.
193
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
172
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
181
Serilog.Sinks.Console
A Serilog sink that writes log events to the console/terminal.
159
Serilog.Sinks.Console
A Serilog sink that writes log events to the console/terminal.
204
Serilog.Sinks.Debug
A Serilog sink that writes log events to the debug output window.
300
Serilog.Sinks.File
Write Serilog events to text files in plain or JSON format.
288
Serilog.Sinks.PeriodicBatching
The periodic batching sink for Serilog
175
Serilog.Sinks.PostgreSQL
Serilog sink for writing to PostgreSQL table
597

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