OpenTelemetry.Exporter.OpenTelemetryProtocol 1.14.0-rc.1
OTLP Exporter for OpenTelemetry .NET
The OTLP (OpenTelemetry Protocol) exporter implementation.
Table of Contents
Prerequisite
- An endpoint capable of accepting OTLP, like OpenTelemetry Collector or similar.
Installation
dotnet add package OpenTelemetry.Exporter.OpenTelemetryProtocol
Enable Log Exporter
var loggerFactory = LoggerFactory.Create(builder =>
{
builder.AddOpenTelemetry(options =>
{
options.AddOtlpExporter();
});
});
By default, AddOtlpExporter() pairs the OTLP Log Exporter with a batching
processor.
See TestLogs.cs for example on how to
customize the LogRecordExportProcessorOptions or see the Environment
Variables section below on how to customize using
environment variables.
Note
For details on how to configure logging with OpenTelemetry check the Console or ASP.NET Core tutorial.
ILogger Scopes: OTLP Log Exporter supports exporting ILogger scopes as
Attributes. Scopes must be enabled at the SDK level using
IncludeScopes
setting on OpenTelemetryLoggerOptions.
Note
Scope attributes with key set as empty string or {OriginalFormat}
are ignored by exporter. Duplicate keys are exported as is.
Enable Metric Exporter
This exporter provides AddOtlpExporter() extension method on MeterProviderBuilder
to enable exporting of metrics. The following snippet adds the Exporter with default
configuration.
var meterProvider = Sdk.CreateMeterProviderBuilder()
// rest of config not shown here.
.AddOtlpExporter()
.Build();
By default, AddOtlpExporter() pairs the OTLP MetricExporter with a
PeriodicExportingMetricReader
with metric export interval of 60 secs and
Temporality
set as Cumulative. See
TestMetrics.cs for example on how to
customize the MetricReaderOptions or see the Environment
Variables section below on how to customize using
environment variables.
Enable Trace Exporter
This exporter provides AddOtlpExporter() extension method on TracerProviderBuilder
to enable exporting of traces. The following snippet adds the Exporter with default
configuration.
var tracerProvider = Sdk.CreateTracerProviderBuilder()
// rest of config not shown here.
.AddOtlpExporter()
.Build();
See the TestOtlpExporter.cs for
runnable example.
Enable OTLP Exporter for all signals
Starting with the 1.8.0-beta.1 version you can use the cross-cutting
UseOtlpExporter extension to simplify registration of the OTLP exporter for
all signals (logs, metrics, and traces).
Note
The cross cutting extension is currently only available when using the
AddOpenTelemetry extension in the
OpenTelemetry.Extensions.Hosting
package.
appBuilder.Services.AddOpenTelemetry()
.UseOtlpExporter();
The UseOtlpExporter has the following behaviors:
Calling
UseOtlpExporterautomatically enables logging, metrics, and tracing however only telemetry which has been enabled will be exported.There are different mechanisms available to enable telemetry:
Logging
ILoggertelemetry is controlled by category filters typically set through configuration. For details see: Log Filtering and Logging in .NET.Metrics
Metrics telemetry is controlled by calling
MeterProviderBuilder.AddMeterto listen to Meters emitting metrics. Typically instrumentation packages will make this call automatically.Examples:
appBuilder.Services.AddOpenTelemetry() .UseOtlpExporter() .WithMetrics(metrics => metrics .AddMeter(MyMeter.Name) // Listen to custom telemetry .AddAspNetCoreInstrumentation() // Use instrumentation to listen to telemetry );appBuilder.Services.ConfigureOpenTelemetryMeterProvider(metrics => metrics .AddMeter(MyMeter.Name) // Listen to custom telemetry .AddAspNetCoreInstrumentation() // Use instrumentation to listen to telemetry ); appBuilder.Services.AddOpenTelemetry() .UseOtlpExporter();For details see: Meter.
When using
Microsoft.Extensions.Hostingv8.0.0 or greater (a standard part of ASP.NET Core)Meters andInstruments can also be enabled using configuration.appSettings.jsonmetrics configuration example:{ "Metrics": { "EnabledMetrics": { "Microsoft.AspNetCore.*": true, "System.*": true, "MyCompany.*": true, } } }For details about the built-in metrics exposed by .NET see: Built-in metrics in .NET.
Tracing
Trace telemetry is controlled by calling
TracerProviderBuilder.AddSourceto listen to ActivitySources emitting traces. Typically instrumentation packages will make this call automatically.Examples:
appBuilder.Services.AddOpenTelemetry() .UseOtlpExporter() .WithTracing(tracing => tracing .AddSource(MyActivitySource.Name) // Listen to custom telemetry .AddAspNetCoreInstrumentation() // Use instrumentation to listen to telemetry );appBuilder.Services.ConfigureOpenTelemetryTracerProvider(tracing => tracing .AddSource(MyActivitySource.Name) // Listen to custom telemetry .AddAspNetCoreInstrumentation() // Use instrumentation to listen to telemetry ); appBuilder.Services.AddOpenTelemetry() .UseOtlpExporter();For details see: Activity Source.
The exporter registered by
UseOtlpExporterwill be added as the last processor in the pipeline established for logging and tracing.UseOtlpExportercan only be called once. Subsequent calls will result in aNotSupportedExceptionbeing thrown.UseOtlpExportercannot be called in addition to signal-specificAddOtlpExportermethods. IfUseOtlpExporteris called signal-specificAddOtlpExportercalls will result in aNotSupportedExceptionbeing thrown.
Configuring signals when using UseOtlpExporter
UseOtlpExporter supports the full set of environment
variables listed below including the signal-specific
overrides and users are encouraged to use this mechanism to configure their
exporters.
A UseOtlpExporter overload is provided which may be used to set the protocol
and base URL:
appBuilder.Services.AddOpenTelemetry()
.UseOtlpExporter(OtlpExportProtocol.HttpProtobuf, new Uri("http://localhost:4318/"));
Note
When the protocol is set to OtlpExportProtocol.HttpProtobuf a
signal-specific path will be appended automatically to the base URL when
constructing exporters.
Configuration
You can configure the OtlpExporter through OtlpExporterOptions
and environment variables.
Note
The OtlpExporterOptions type setters take precedence over the environment variables.
This can be achieved by providing an Action<OtlpExporterOptions> delegate to
the AddOtlpExporter() method or using the Configure<OtlpExporterOptions>()
Options API extension:
// Set via delegate using code:
appBuilder.Services.AddOpenTelemetry()
.WithTracing(builder => builder.AddOtlpExporter(o => {
// ...
}));
// Set via Options API using code:
appBuilder.Services.Configure<OtlpExporterOptions>(o => {
// ...
});
// Set via Options API using configuration:
appBuilder.Services.Configure<OtlpExporterOptions>(
appBuilder.Configuration.GetSection("OpenTelemetry:otlp"));
If additional services from the dependency injection are required for configuration they can be accessed through the Options API like this:
// Step 1: Register user-created configuration service.
appBuilder.Services.AddSingleton<MyOtlpConfigurationService>();
// Step 2: Use Options API to configure OtlpExporterOptions with user-created service.
appBuilder.Services.AddOptions<OtlpExporterOptions>()
.Configure<MyOtlpConfigurationService>((o, configService) => {
o.Endpoint = configService.ResolveOtlpExporterEndpoint();
});
Note
The OtlpExporterOptions class is shared by logging, metrics, and tracing. To
bind configuration specific to each signal use the name parameter on the
AddOtlpExporter extensions:
// Step 1: Bind options to config using the name parameter.
appBuilder.Services.Configure<OtlpExporterOptions>("tracing", appBuilder.Configuration.GetSection("OpenTelemetry:tracing:otlp"));
appBuilder.Services.Configure<OtlpExporterOptions>("metrics", appBuilder.Configuration.GetSection("OpenTelemetry:metrics:otlp"));
appBuilder.Services.Configure<OtlpExporterOptions>("logging", appBuilder.Configuration.GetSection("OpenTelemetry:logging:otlp"));
// Step 2: Register OtlpExporter using the name parameter.
appBuilder.Services.AddOpenTelemetry()
.WithTracing(builder => builder.AddOtlpExporter("tracing", configure: null))
.WithMetrics(builder => builder.AddOtlpExporter("metrics", configure: null));
appBuilder.Logging.AddOpenTelemetry(builder => builder.AddOtlpExporter(
"logging",
options =>
{
// Note: Options can also be set via code but order is important. In the example here the code will apply after configuration.
options.Endpoint = new Uri("http://localhost/logs");
}));
OtlpExporterOptions
Protocol: OTLP transport protocol. Supported values:OtlpExportProtocol.GrpcandOtlpExportProtocol.HttpProtobuf. The default isOtlpExportProtocol.Grpc.Endpoint: Target to which the exporter is going to send traces or metrics. The endpoint must be a valid Uri with scheme (http or https) and host, and MAY contain a port and path. The default is "localhost:4317" forOtlpExportProtocol.Grpcand "localhost:4318" forOtlpExportProtocol.HttpProtobuf.
Note
When using OtlpExportProtocol.HttpProtobuf, the full URL MUST be
provided, including the signal-specific path v1/. For example, for
traces, the full URL will look like http://your-custom-endpoint/v1/traces.
Headers: Optional headers for the connection.HttpClientFactory: A factory function called to create theHttpClientinstance that will be used at runtime to transmit telemetry over HTTP when theHttpProtobufprotocol is configured. See Configure HttpClient for more details.TimeoutMilliseconds: Max waiting time for the backend to process a batch.
The following options are only applicable to OtlpTraceExporter:
ExportProcessorType: Whether the exporter should use Batch or Simple exporting processor. The default is Batch.BatchExportProcessorOptions: Configuration options for the batch exporter. Only used if ExportProcessorType is set to Batch.
See the TestOtlpExporter.cs for
an example of how to use the exporter.
LogRecordExportProcessorOptions
The LogRecordExportProcessorOptions class may be used to configure processor &
batch settings for logging:
// Set via delegate using code:
appBuilder.Logging.AddOpenTelemetry(options =>
{
options.AddOtlpExporter((exporterOptions, processorOptions) =>
{
processorOptions.BatchExportProcessorOptions.ScheduledDelayMilliseconds = 2000;
processorOptions.BatchExportProcessorOptions.MaxExportBatchSize = 5000;
});
});
// Set via Options API using code:
appBuilder.Services.Configure<LogRecordExportProcessorOptions>(o =>
{
o.BatchExportProcessorOptions.ScheduledDelayMilliseconds = 2000;
o.BatchExportProcessorOptions.MaxExportBatchSize = 5000;
});
// Set via Options API using configuration:
appBuilder.Services.Configure<LogRecordExportProcessorOptions>(
appBuilder.Configuration.GetSection("OpenTelemetry:Logging"));
MetricReaderOptions
The MetricReaderOptions class may be used to configure reader settings for
metrics:
// Set via delegate using code:
appBuilder.Services.AddOpenTelemetry()
.WithMetrics(builder => builder.AddOtlpExporter((exporterOptions, readerOptions) =>
{
readerOptions.PeriodicExportingMetricReaderOptions.ExportIntervalMilliseconds = 10_000;
}));
// Set via Options API using code:
appBuilder.Services.Configure<MetricReaderOptions>(o =>
{
o.PeriodicExportingMetricReaderOptions.ExportIntervalMilliseconds = 10_000;
});
// Set via Options API using configuration:
appBuilder.Services.Configure<MetricReaderOptions>(
appBuilder.Configuration.GetSection("OpenTelemetry:Metrics"));
Environment Variables
The following environment variables can be used to configure the OTLP Exporter for logs, traces, and metrics.
Note
In OpenTelemetry .NET environment variable keys are retrieved using
IConfiguration which means they may be set using other mechanisms such as
defined in appSettings.json or specified on the command-line.
Exporter configuration
The OpenTelemetry Specification defines environment variables which can be used to configure the OTLP exporter and its associated processor (logs & traces) or reader (metrics).
All signals
The following environment variables can be used to override the default values of the
OtlpExporterOptions:Environment variable OtlpExporterOptionspropertyOTEL_EXPORTER_OTLP_ENDPOINTEndpointOTEL_EXPORTER_OTLP_HEADERSHeadersOTEL_EXPORTER_OTLP_TIMEOUTTimeoutMillisecondsOTEL_EXPORTER_OTLP_PROTOCOLProtocol(grpcorhttp/protobuf)Logs:
The following environment variables can be used to override the default values for the batch processor configured for logging:
Environment variable BatchExportLogRecordProcessorOptionspropertyOTEL_BLRP_SCHEDULE_DELAYScheduledDelayMillisecondsOTEL_BLRP_EXPORT_TIMEOUTExporterTimeoutMillisecondsOTEL_BLRP_MAX_QUEUE_SIZEMaxQueueSizeOTEL_BLRP_MAX_EXPORT_BATCH_SIZEMaxExportBatchSizeThe following environment variables can be used to override the default values of the
OtlpExporterOptionsused for logging when using the UseOtlpExporter extension:Environment variable OtlpExporterOptionspropertyUseOtlpExporter AddOtlpExporter OTEL_EXPORTER_OTLP_LOGS_ENDPOINTEndpointSupported Not supported OTEL_EXPORTER_OTLP_LOGS_HEADERSHeadersSupported Not supported OTEL_EXPORTER_OTLP_LOGS_TIMEOUTTimeoutMillisecondsSupported Not supported OTEL_EXPORTER_OTLP_LOGS_PROTOCOLProtocol(grpcorhttp/protobuf)Supported Not supported Metrics:
The following environment variables can be used to override the default value of the
TemporalityPreferencesetting for the reader configured for metrics when using OTLP exporter:Environment variable MetricReaderOptionspropertyOTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCETemporalityPreferenceThe following environment variables can be used to override the default values of the periodic exporting metric reader configured for metrics:
Environment variable PeriodicExportingMetricReaderOptionspropertyOTEL_METRIC_EXPORT_INTERVALExportIntervalMillisecondsOTEL_METRIC_EXPORT_TIMEOUTExportTimeoutMillisecondsThe following environment variables can be used to override the default values of the
OtlpExporterOptionsused for metrics when using the UseOtlpExporter extension:Environment variable OtlpExporterOptionspropertyUseOtlpExporter AddOtlpExporter OTEL_EXPORTER_OTLP_METRICS_ENDPOINTEndpointSupported Not supported OTEL_EXPORTER_OTLP_METRICS_HEADERSHeadersSupported Not supported OTEL_EXPORTER_OTLP_METRICS_TIMEOUTTimeoutMillisecondsSupported Not supported OTEL_EXPORTER_OTLP_METRICS_PROTOCOLProtocol(grpcorhttp/protobuf)Supported Not supported Tracing:
The following environment variables can be used to override the default values for the batch processor configured for tracing:
Environment variable BatchExportActivityProcessorOptionspropertyOTEL_BSP_SCHEDULE_DELAYScheduledDelayMillisecondsOTEL_BSP_EXPORT_TIMEOUTExporterTimeoutMillisecondsOTEL_BSP_MAX_QUEUE_SIZEMaxQueueSizeOTEL_BSP_MAX_EXPORT_BATCH_SIZEMaxExportBatchSizeThe following environment variables can be used to override the default values of the
OtlpExporterOptionsused for tracing when using the UseOtlpExporter extension:Environment variable OtlpExporterOptionspropertyUseOtlpExporter AddOtlpExporter OTEL_EXPORTER_OTLP_TRACES_ENDPOINTEndpointSupported Not supported OTEL_EXPORTER_OTLP_TRACES_HEADERSHeadersSupported Not supported OTEL_EXPORTER_OTLP_TRACES_TIMEOUTTimeoutMillisecondsSupported Not supported OTEL_EXPORTER_OTLP_TRACES_PROTOCOLProtocol(grpcorhttp/protobuf)Supported Not supported
Attribute limits
The OpenTelemetry Specification defines environment variables which can be used to configure attribute limits.
The following environment variables can be used to configure default attribute limits:
OTEL_ATTRIBUTE_VALUE_LENGTH_LIMITOTEL_ATTRIBUTE_COUNT_LIMIT
The following environment variables can be used to configure span limits used for tracing:
OTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMITOTEL_SPAN_ATTRIBUTE_COUNT_LIMITOTEL_SPAN_EVENT_COUNT_LIMITOTEL_SPAN_LINK_COUNT_LIMITOTEL_EVENT_ATTRIBUTE_COUNT_LIMITOTEL_LINK_ATTRIBUTE_COUNT_LIMIT
The following environment variables can be used to configure log record limits used for logging:
OTEL_LOGRECORD_ATTRIBUTE_VALUE_LENGTH_LIMITOTEL_LOGRECORD_ATTRIBUTE_COUNT_LIMIT
Configure HttpClient
The HttpClientFactory option is provided on OtlpExporterOptions for users
who want to configure the HttpClient used by the OtlpTraceExporter,
OtlpMetricExporter, and/or OtlpLogExporter when HttpProtobuf protocol is
used. Simply replace the function with your own implementation if you want to
customize the generated HttpClient:
Note
The HttpClient instance returned by the HttpClientFactory function is used
for all export requests.
services.AddOpenTelemetry()
.WithTracing(builder => builder
.AddOtlpExporter(o =>
{
o.Protocol = OtlpExportProtocol.HttpProtobuf;
o.HttpClientFactory = () =>
{
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Add("X-MyCustomHeader", "value");
return client;
};
}));
Note
DefaultRequestHeaders can be used for HTTP Basic Access
Authentication.
For more complex authentication requirements,
System.Net.Http.DelegatingHandler
can be used to handle token refresh, as explained
here.
For users using
IHttpClientFactory
you may also customize the named "OtlpTraceExporter" and/or "OtlpMetricExporter"
HttpClient using the built-in AddHttpClient extension:
services.AddHttpClient(
"OtlpTraceExporter",
configureClient: (client) =>
client.DefaultRequestHeaders.Add("X-MyCustomHeader", "value"));
Note
IHttpClientFactory is NOT currently supported by OtlpLogExporter.
Experimental features
The following features are exposed experimentally in the OTLP Exporter. Features are exposed experimentally when either the OpenTelemetry Specification has explicitly marked something experimental or when the SIG members are still working through the design for a feature and want to solicit feedback from the community.
Environment variables
Note
In OpenTelemetry .NET environment variable keys are retrieved using
IConfiguration which means they may be set using other mechanisms such as
defined in appSettings.json or specified on the command-line.
All signals
OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRYWhen set to
in_memory, it enables in-memory retry for transient errors encountered while sending telemetry.Added in
1.8.0.When set to
disk, it enables retries by storing telemetry on disk during transient errors. The default path where the telemetry is stored is obtained by calling Path.GetTempPath() or can be customized by settingOTEL_DOTNET_EXPERIMENTAL_OTLP_DISK_RETRY_DIRECTORY_PATHenvironment variable.The OTLP exporter utilizes a forked version of the OpenTelemetry.PersistentStorage.FileSystem library to store telemetry data on disk. When a transient failure occurs, a file is created at the specified directory path on disk containing the serialized request data that was attempted to be sent to the OTLP ingestion. A background thread attempts to resend any offline stored telemetry every 60 seconds. For more details on how these files are managed on disk, refer to the File details.
Added in TBD (Unreleased).
Logs
OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTESWhen set to
true, it enables export ofLogRecord.EventId.Idaslogrecord.event.idandLogRecord.EventId.Nameaslogrecord.event.name.Added in
1.7.0-alpha.1.
Troubleshooting
This component uses an EventSource with the name "OpenTelemetry-Exporter-OpenTelemetryProtocol" for its internal logging. Please refer to SDK troubleshooting for instructions on seeing these internal logs.
References
No packages depend on OpenTelemetry.Exporter.OpenTelemetryProtocol.
For highlights and announcements see: https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.14.0-rc.1/RELEASENOTES.md.
For detailed changes see: https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.14.0-rc.1/src/OpenTelemetry.Exporter.OpenTelemetryProtocol/CHANGELOG.md.
.NET Framework 4.6.2
- OpenTelemetry (>= 1.14.0-rc.1)
.NET 8.0
- OpenTelemetry (>= 1.14.0-rc.1)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.2)
.NET 9.0
- OpenTelemetry (>= 1.14.0-rc.1)
.NET 10.0
- OpenTelemetry (>= 1.14.0-rc.1)
.NET Standard 2.0
- OpenTelemetry (>= 1.14.0-rc.1)
.NET Standard 2.1
- OpenTelemetry (>= 1.14.0-rc.1)
| Version | Downloads | Last updated |
|---|---|---|
| 1.14.0-rc.1 | 0 | 11/03/2025 |
| 1.13.1 | 0 | 10/09/2025 |
| 1.13.0 | 0 | 10/01/2025 |
| 1.12.0 | 0 | 04/30/2025 |
| 1.11.2 | 0 | 03/04/2025 |
| 1.11.1 | 0 | 01/23/2025 |
| 1.11.0 | 0 | 01/16/2025 |
| 1.11.0-rc.1 | 0 | 12/12/2024 |
| 1.10.0 | 0 | 11/12/2024 |
| 1.10.0-rc.1 | 0 | 11/01/2024 |
| 1.10.0-beta.1 | 0 | 09/30/2024 |
| 1.9.0 | 0 | 06/14/2024 |
| 1.9.0-rc.1 | 0 | 06/07/2024 |
| 1.9.0-alpha.1 | 0 | 05/20/2024 |
| 1.8.1 | 0 | 04/18/2024 |
| 1.8.0 | 0 | 04/03/2024 |
| 1.8.0-rc.1 | 0 | 03/27/2024 |
| 1.8.0-beta.1 | 0 | 03/14/2024 |
| 1.7.0 | 0 | 12/09/2023 |
| 1.7.0-rc.1 | 0 | 11/30/2023 |
| 1.7.0-alpha.1 | 0 | 10/17/2023 |
| 1.6.0 | 0 | 09/06/2023 |
| 1.6.0-rc.1 | 0 | 08/21/2023 |
| 1.6.0-alpha.1 | 0 | 07/12/2023 |
| 1.5.1 | 0 | 06/26/2023 |
| 1.5.0 | 0 | 06/06/2023 |
| 1.5.0-rc.1 | 0 | 05/26/2023 |
| 1.5.0-alpha.2 | 0 | 04/01/2023 |
| 1.5.0-alpha.1 | 0 | 03/08/2023 |
| 1.4.0 | 0 | 02/24/2023 |
| 1.4.0-rc.4 | 0 | 02/11/2023 |
| 1.4.0-rc.3 | 0 | 02/02/2023 |
| 1.4.0-rc.2 | 0 | 01/09/2023 |
| 1.4.0-rc.1 | 0 | 12/12/2022 |
| 1.4.0-beta.3 | 0 | 11/07/2022 |
| 1.4.0-beta.2 | 0 | 10/17/2022 |
| 1.4.0-beta.1 | 0 | 09/30/2022 |
| 1.4.0-alpha.2 | 0 | 08/18/2022 |
| 1.4.0-alpha.1 | 0 | 08/03/2022 |
| 1.3.2 | 0 | 12/20/2022 |
| 1.3.1 | 0 | 09/08/2022 |
| 1.3.0 | 0 | 06/03/2022 |
| 1.3.0-rc.2 | 0 | 06/01/2022 |
| 1.3.0-beta.2 | 0 | 05/17/2022 |
| 1.3.0-beta.1 | 0 | 04/20/2022 |
| 1.2.0 | 0 | 04/15/2022 |
| 1.2.0-rc5 | 0 | 04/13/2022 |
| 1.2.0-rc4 | 0 | 03/30/2022 |
| 1.2.0-rc3 | 0 | 03/05/2022 |
| 1.2.0-rc2 | 0 | 02/03/2022 |
| 1.2.0-rc1 | 0 | 11/30/2021 |
| 1.2.0-beta2.1 | 0 | 11/19/2021 |
| 1.2.0-beta1 | 0 | 10/08/2021 |
| 1.2.0-alpha4 | 0 | 09/23/2021 |
| 1.2.0-alpha3 | 0 | 09/14/2021 |
| 1.2.0-alpha2 | 0 | 08/25/2021 |
| 1.2.0-alpha1 | 0 | 07/23/2021 |
| 1.1.0 | 0 | 07/13/2021 |
| 1.1.0-rc1 | 0 | 06/26/2021 |
| 1.1.0-beta4 | 0 | 06/09/2021 |
| 1.1.0-beta3 | 0 | 05/12/2021 |
| 1.1.0-beta2 | 0 | 04/23/2021 |
| 1.1.0-beta1 | 0 | 03/19/2021 |
| 1.0.1 | 0 | 02/10/2021 |
| 1.0.0-rc4 | 0 | 02/09/2021 |
| 1.0.0-rc3 | 0 | 02/05/2021 |
| 1.0.0-rc2 | 0 | 01/30/2021 |
| 1.0.0-rc1.1 | 0 | 11/18/2020 |
| 0.8.0-beta.1 | 0 | 11/05/2020 |
| 0.7.0-beta.1 | 0 | 10/16/2020 |
| 0.6.0-beta.1 | 0 | 09/16/2020 |
| 0.5.0-beta.2 | 0 | 08/28/2020 |
| 0.4.0-beta.2 | 0 | 07/25/2020 |
| 0.3.0-beta.1 | 0 | 07/23/2020 |
| 0.2.0-alpha.275 | 0 | 05/19/2020 |
| 0.2.0-alpha.220 | 0 | 05/19/2020 |
| 0.2.0-alpha.179 | 0 | 01/28/2020 |