Serilog 4.0.0-dev-02174

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.

Detailed build status

Branch AppVeyor
dev Build status
main Build status

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
10,055
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
12,982
Serilog.Enrichers.Environment
Enrich Serilog log events with properties from System.Environment.
23,455
Serilog.Extensions.Hosting
Serilog support for .NET Core logging in hosted services
10,037
Serilog.Extensions.Hosting
Serilog support for .NET Core logging in hosted services
13,650
Serilog.Extensions.Logging
Low-level Serilog provider for Microsoft.Extensions.Logging
10,089
Serilog.Extensions.Logging
Low-level Serilog provider for Microsoft.Extensions.Logging
13,803
Serilog.Formatting.Compact
A simple, compact JSON-based event format for Serilog.
23,126
Serilog.Formatting.Compact
A simple, compact JSON-based event format for Serilog.
23,764
Serilog.Formatting.Elasticsearch
Package Description
23,099
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
10,094
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
13,913
Serilog.Sinks.Console
A Serilog sink that writes log events to the console/terminal.
10,103
Serilog.Sinks.Console
A Serilog sink that writes log events to the console/terminal.
13,987
Serilog.Sinks.Debug
A Serilog sink that writes log events to the debug output window.
24,203
Serilog.Sinks.Elasticsearch
Package Description
23,223
Serilog.Sinks.File
Write Serilog events to text files in plain or JSON format.
10,035
Serilog.Sinks.File
Write Serilog events to text files in plain or JSON format.
21,402
Serilog.Sinks.File
Write Serilog events to text files in plain or JSON format.
22,987
Serilog.Sinks.PeriodicBatching
The periodic batching sink for Serilog
23,724

.NET Framework 4.6.2

.NET Framework 4.7.1

.NET 6.0

  • No dependencies.

.NET 8.0

  • No dependencies.

.NET Standard 2.0

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