Stripe.net 47.3.0-beta.1

Prefix Reserved
This is a prerelease version of Stripe.net.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Stripe.net --version 47.3.0-beta.1                
NuGet\Install-Package Stripe.net -Version 47.3.0-beta.1                
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="Stripe.net" Version="47.3.0-beta.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Stripe.net --version 47.3.0-beta.1                
#r "nuget: Stripe.net, 47.3.0-beta.1"                
#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.
// Install Stripe.net as a Cake Addin
#addin nuget:?package=Stripe.net&version=47.3.0-beta.1&prerelease

// Install Stripe.net as a Cake Tool
#tool nuget:?package=Stripe.net&version=47.3.0-beta.1&prerelease                

Stripe.net

NuGet Build Status Coverage Status

The official Stripe .NET library, supporting .NET Standard 2.0+, .NET Core 3.1+, and .NET Framework 4.6.1+.

Installation

Using the .NET Core command-line interface (CLI) tools:

dotnet add package Stripe.net

Using the NuGet Command Line Interface (CLI):

nuget install Stripe.net

Using the Package Manager Console:

Install-Package Stripe.net

From within Visual Studio:

  1. Open the Solution Explorer.
  2. Right-click on a project within your solution.
  3. Click on Manage NuGet Packages...
  4. Click on the Browse tab and search for "Stripe.net".
  5. Click on the Stripe.net package, select the appropriate version in the right-tab and click Install.

Documentation

For a comprehensive list of examples, check out the API documentation. See video demonstrations covering how to use the library.

Usage

Authentication

Stripe authenticates API requests using your account’s secret key, which you can find in the Stripe Dashboard. By default, secret keys can be used to perform any API request without restriction.

Use StripeConfiguration.ApiKey property to set the secret key.

StripeConfiguration.ApiKey = "sk_test_...";

Creating a resource

The Create method of the service class can be used to create a new resource:

var options = new CustomerCreateOptions
{
    Email = "customer@example.com"
};

var service = new CustomerService();
Customer customer = service.Create(options);

// Newly created customer is returned
Console.WriteLine(customer.Email);

Retrieve a resource

The Retrieve method of the service class can be used to retrieve a resource:

var service = new CustomerService();
Customer customer = service.Get("cus_1234");

Console.WriteLine(customer.Email);

Updating a resource

The Update method of the service class can be used to update a resource:

var options = new CustomerUpdateOptions
{
    Email = "updated-email@example.com"
};

var service = new CustomerService();
Customer customer = service.Update("cus_123", options);

// The updated customer is returned
Console.WriteLine(customer.Email);

Deleting a resource

The Delete method of the service class can be used to delete a resource:

var service = new CustomerService();
Customer customer = service.Delete("cus_123", options);

Listing a resource

The List method on the service class can be used to list resources page-by-page.

NOTE The List method returns only a single page, you have to manually continue the iteration using the StartingAfter parameter.

var service = new CustomerService();
var customers = service.List();

string lastId = null;

// Enumerate the first page of the list
foreach (Customer customer in customers)
{
   lastId = customer.Id;
   Console.WriteLine(customer.Email);
}

customers = service.List(new CustomerListOptions()
{
    StartingAfter = lastId,
});

// Enumerate the subsequent page
foreach (Customer customer in customers)
{
   lastId = customer.Id;
   Console.WriteLine(customer.Email);
}

Listing a resource with auto-pagination

The ListAutoPaging method on the service class can be used to automatically iterate over all pages.

var service = new CustomerService();
var customers = service.ListAutoPaging();

// Enumerate all pages of the list
foreach (Customer customer in customers)
{
   Console.WriteLine(customer.Email);
}

Per-request configuration

All of the service methods accept an optional RequestOptions object. This is used if you want to set an idempotency key, if you are using Stripe Connect, or if you want to pass the secret API key on each method.

var requestOptions = new RequestOptions();
requestOptions.ApiKey = "SECRET API KEY";
requestOptions.IdempotencyKey = "SOME STRING";
requestOptions.StripeAccount = "CONNECTED ACCOUNT ID";

Using a custom HttpClient

You can configure the library with your own custom HttpClient:

StripeConfiguration.StripeClient = new StripeClient(
    apiKey,
    httpClient: new SystemNetHttpClient(httpClient));

Please refer to the Advanced client usage wiki page to see more examples of using custom clients, e.g. for using a proxy server, a custom message handler, etc.

Automatic retries

The library automatically retries requests on intermittent failures like on a connection error, timeout, or on certain API responses like a status 409 Conflict. Idempotency keys are always added to requests to make any such subsequent retries safe.

By default, it will perform up to two retries. That number can be configured with StripeConfiguration.MaxNetworkRetries:

StripeConfiguration.MaxNetworkRetries = 0; // Zero retries

How to use undocumented parameters and properties

stripe-dotnet is a typed library and it supports all public properties or parameters.

Stripe sometimes has beta features which introduce new properties or parameters that are not immediately public. The library does not support these properties or parameters until they are public but there is still an approach that allows you to use them.

Parameters

To pass undocumented parameters to Stripe using stripe-dotnet you need to use the AddExtraParam() method, as shown below:

var options = new CustomerCreateOptions
{
    Email = "jenny.rosen@example.com"
}
options.AddExtraParam("secret_feature_enabled", "true");
options.AddExtraParam("secret_parameter[primary]", "primary value");
options.AddExtraParam("secret_parameter[secondary]", "secondary value");

var service = new CustomerService();
var customer = service.Create(options);
Properties

To retrieve undocumented properties from Stripe using C# you can use an option in the library to return the raw JSON object and return the property. An example of this is shown below:

var service = new CustomerService();
var customer = service.Get("cus_1234");

customer.RawJObject["secret_feature_enabled"];
customer.RawJObject["secret_parameter"]["primary"];
customer.RawJObject["secret_parameter"]["secondary"];

This is only supported on objects returned directly from the Stripe.net SDK. If you are serializing Stripe objects to JSON you will need to handle undocumented properties separately.

Writing a plugin

If you're writing a plugin that uses the library, we'd appreciate it if you identified using StripeConfiguration.AppInfo:

StripeConfiguration.AppInfo = new AppInfo
{
    Name = "MyAwesomePlugin",
    Url = "https://myawesomeplugin.info",
    Version = "1.2.34",
};

This information is passed along when the library makes calls to the Stripe API. Note that while Name is always required, Url and Version are optional.

Telemetry

By default, the library sends telemetry to Stripe regarding request latency and feature usage. These numbers help Stripe improve the overall latency of its API for all users, and improve popular features.

You can disable this behavior if you prefer:

StripeConfiguration.EnableTelemetry = false;

Serializing Stripe resources to JSON

Stripe resources returned from a Stripe .NET library method can be serialized to a JSON string, which will contain all publicly documented fields for that object (see Serialization and RawJObject below):

Newtonsoft Json.NET
using Newtonsoft.Json;

...

var service = new CustomerService();
var customer = service.Get("cus_1234");

string output = JsonConvert.SerializeObject(customer);
// { "id": "cus_1234", "name": "Jenny Rosen", ... }

If you are using .NET 6 or above, you can also use System.Text.Json to serialize the same string value:

System.Text.Json
using System.Text.Json;
...
var service = new CustomerService();
var customer = service.Get("cus_1234");

string output = JsonSerializer.Serialize(customer);
// { "id": "cus_1234", "name": "Jenny Rosen", ... }
ASP.NET

If you are using .NET 6 or have installed the [Microsoft.AspNetCore.Mvc.NewtonsoftJson][https://www.nuget.org/packages/microsoft.aspnetcore.mvc.newtonsoftjson] package, you can return Stripe objects from ASP.NET controller methods:

using System.Text.Json;

public class HomeController : Controller
{
...
    public IActionResult Index()
    {
        return Json(_client.V1.Customers.List());
      // { "data": [{"id": "cus_1234", "name": "Jenny Rosen"}, ...], "has_more": false }
    }
}
Serialization and RawJObject

The RawJObject property is ignored on serialization in both Json.NET and System.Text.Json, which means that if you serialize a SDK response to a JSON string and the deserialize it back into a Stripe object, this property may be null or empty. If you rely on RawJObject you will need to serialize those values separately.

Beta SDKs

Stripe has features in the beta phase that can be accessed via the beta version of this package. We would love for you to try these and share feedback with us before these features reach the stable phase. To install a beta version of Stripe.net use the version parameter with dotnet add package command:

dotnet add package Stripe.net --version <beta version>

Beta versions are appended with -beta.X such as 45.0.0-beta.1. Make sure to choose the version that includes support for the beta you are interested in!

Note There can be breaking changes between beta versions. Therefore we recommend pinning the package version to a specific beta version in your project file. This way you can install the same version each time without breaking changes unless you are intentionally looking for the latest beta version.

We highly recommend keeping an eye on when the beta feature you are interested in goes from beta to stable so that you can move from using a beta version of the SDK to the stable version.

If your beta feature requires a Stripe-Version header to be sent, set the StripeConfiguration.ApiVersion property with the StripeConfiguration.AddBetaVersion function:

Note The ApiVersion can only be set in beta versions of the library.

StripeConfiguration.AddBetaVersion("feature_beta", "v3");

Custom requests

If you would like to send a request to an undocumented API (for example you are in a private beta), or if you prefer to bypass the method definitions in the library and specify your request details directly, you can use the RawRequestAsync method on StripeClient.

StripeClient client = new StripeClient();
StripeResponse response = await client.RawRequestAsync(HttpMethod.Get, "/v1/accounts/acc_123");

// Optionally use Deserialize to convert the response to strongly-typed object.
Account account = client.Deserialize<Account>(response.Content)

Support

New features and bug fixes are released on the latest major version of the Stripe .NET client library. If you are on an older major version, we recommend that you upgrade to the latest in order to use the new features and bug fixes including those for security vulnerabilities. Older major versions of the package will continue to be available for use, but will not be receiving any updates.

Development

.NET 8 is required to build and test Stripe.net SDK, you can install it from get.dot.net.

The test suite depends on stripe-mock, so make sure to fetch and run it from a background terminal (stripe-mock's README also contains instructions for installing via Homebrew and other methods):

go install github.com/stripe/stripe-mock@latest
stripe-mock

Lastly, we use just for running common development tasks. You can also read the justfile and run those commands directly.

Run all tests from the src/StripeTests directory:

just test
# or: dotnet test src

Run some tests, filtering by name:

dotnet test src --filter FullyQualifiedName~InvoiceServiceTest

Run tests for a single target framework:

dotnet test src --framework net8.0

The library uses dotnet-format for code formatting. Code must be formatted before PRs are submitted, otherwise CI will fail. Run the formatter with:

just format
# or: dotnet format src/Stripe.net.sln

For any requests, bug or comments, please open an issue or submit a pull request.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  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 is compatible.  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 is compatible.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (110)

Showing the top 5 NuGet packages that depend on Stripe.net:

Package Downloads
OElite.Common

Package Description

ImmediaC.SimpleCms

ASP.NET Core based CMS

N3O.Umbraco.Payments.Stripe

TODO

Soenneker.Stripe.Client

A .NET typesafe implementation of Stripe's StripeClient

JTigerNova.Web.Lib.Service.ThirdParty

Third Party library of web service functions

GitHub repositories (24)

Showing the top 5 popular GitHub repositories that depend on Stripe.net:

Repository Stars
bitwarden/server
Bitwarden infrastructure/backend (API, database, Docker, etc).
simplcommerce/SimplCommerce
A simple, cross platform, modulith ecommerce system built on .NET
exceptionless/Exceptionless
Exceptionless application
smartstore/Smartstore
A modular, scalable and ultra-fast open-source all-in-one eCommerce platform built on ASP.NET Core 7
grandnode/grandnode2
Open Source eCommerce Platform on .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, LiteDB
Version Downloads Last updated
47.4.0 51,193 2/24/2025
47.4.0-beta.1 4,267 2/7/2025
47.3.0 172,710 1/27/2025
47.3.0-beta.3 1,750 1/23/2025
47.3.0-beta.2 491 1/18/2025
47.3.0-beta.1 3,181 1/9/2025
47.2.0 223,187 12/18/2024
47.2.0-beta.3 1,314 12/12/2024
47.2.0-beta.2 507 12/5/2024
47.2.0-beta.1 11,061 11/21/2024
47.1.0 280,323 11/20/2024
47.1.0-beta.3 1,505 11/15/2024
47.1.0-beta.2 735 11/7/2024
47.1.0-beta.1 3,069 10/29/2024
47.0.0 271,029 10/29/2024
46.3.0-beta.1 7,947 10/18/2024
46.2.2 14,235 10/29/2024
46.2.1 122,166 10/18/2024
46.2.0 155,155 10/9/2024
46.2.0-beta.3 1,355 10/8/2024
46.1.0 59,126 10/3/2024
46.0.0 23,824 10/1/2024
45.15.0-beta.1 10,901 9/18/2024
45.14.0 283,078 9/18/2024
45.13.0 57,144 9/13/2024
45.12.0 1,024 9/13/2024
45.12.0-beta.1 1,622 9/5/2024
45.11.0 95,047 9/5/2024
45.10.0 101,093 8/29/2024
45.10.0-beta.1 3,145 8/23/2024
45.9.0 63,878 8/23/2024
45.9.0-beta.2 157 8/22/2024
45.9.0-beta.1 4,258 8/15/2024
45.8.0 87,875 8/15/2024
45.8.0-beta.1 1,956 8/12/2024
45.7.0 74,969 8/9/2024
45.7.0-beta.1 3,313 8/1/2024
45.6.0 74,483 8/1/2024
45.6.0-beta.1 3,922 7/25/2024
45.5.0 86,676 7/25/2024
45.4.0 84,980 7/18/2024
45.3.0 122,333 7/11/2024
45.3.0-beta.1 40,665 7/5/2024
45.2.0 93,788 7/5/2024
45.2.0-beta.1 3,351 6/27/2024
45.1.0 106,765 6/27/2024
45.0.0 91,575 6/24/2024
44.13.0 213,282 6/17/2024
44.13.0-beta.1 3,277 6/13/2024
44.12.0 55,602 6/13/2024
44.12.0-beta.1 375 6/6/2024
44.11.0 96,621 6/6/2024
44.11.0-beta.1 1,951 5/30/2024
44.10.0 202,403 5/30/2024
44.10.0-beta.1 5,969 5/23/2024
44.9.0 97,564 5/23/2024
44.9.0-beta.1 2,066 5/16/2024
44.8.0 79,877 5/16/2024
44.7.0 98,147 5/9/2024
44.7.0-beta.1 157 5/9/2024
44.6.0 5,566 5/9/2024
44.6.0-beta.1 1,608 5/2/2024
44.5.0 87,936 5/2/2024
44.5.0-beta.1 5,240 4/25/2024
44.4.0 103,890 4/25/2024
44.4.0-beta.1 1,013 4/18/2024
44.3.0 142,810 4/18/2024
44.2.0 39,285 4/16/2024
44.2.0-beta.1 714 4/12/2024
44.1.0 125,170 4/11/2024
44.0.0 69,238 4/10/2024
43.23.0 65,935 4/9/2024
43.23.0-beta.1 2,284 4/4/2024
43.22.0 69,392 4/4/2024
43.22.0-beta.1 33,518 3/28/2024
43.21.0 99,958 3/28/2024
43.21.0-beta.1 1,157 3/21/2024
43.20.0 202,083 3/21/2024
43.20.0-beta.1 540 3/14/2024
43.19.0 149,546 3/14/2024
43.19.0-beta.1 8,002 3/8/2024
43.18.0 98,520 3/7/2024
43.18.0-beta.1 685 2/29/2024
43.17.0 72,074 2/29/2024
43.17.0-beta.1 7,871 2/22/2024
43.16.0 77,961 2/22/2024
43.16.0-beta.1 4,817 2/16/2024
43.15.0 117,611 2/16/2024
43.15.0-beta.1 1,123 2/8/2024
43.14.0 103,435 2/8/2024
43.14.0-beta.1 1,273 2/2/2024
43.13.0 171,063 2/1/2024
43.13.0-beta.1 1,331 1/26/2024
43.12.0 115,928 1/25/2024
43.12.0-beta.1 3,502 1/18/2024
43.11.0 111,726 1/18/2024
43.11.0-beta.1 386 1/12/2024
43.10.0 71,733 1/12/2024
43.10.0-beta.1 1,429 1/4/2024
43.9.0 98,954 1/4/2024
43.9.0-beta.1 2,184 12/22/2023
43.8.0 87,636 12/22/2023
43.8.0-beta.1 965 12/15/2023
43.7.0 114,233 12/15/2023
43.7.0-beta.1 470 12/8/2023
43.6.0 160,497 12/7/2023
43.6.0-beta.1 565 11/30/2023
43.5.0 76,515 11/30/2023
43.5.0-beta.1 2,649 11/21/2023
43.4.0 229,696 11/21/2023
43.4.0-beta.1 2,239 11/17/2023
43.3.0 89,120 11/17/2023
43.3.0-beta.1 888 11/10/2023
43.2.0 118,189 11/9/2023
43.2.0-beta.1 437 11/2/2023
43.1.0 110,140 11/2/2023
43.1.0-beta.2 1,041 10/26/2023
43.1.0-beta.1 1,288 10/17/2023
43.0.0 300,076 10/16/2023
42.10.0 30,261 10/16/2023
42.10.0-beta.1 1,159 10/11/2023
42.9.0 67,009 10/11/2023
42.9.0-beta.1 2,105 10/5/2023
42.8.0 91,744 10/5/2023
42.8.0-beta.1 985 9/29/2023
42.7.0 91,788 9/28/2023
42.7.0-beta.1 6,264 9/22/2023
42.6.0 113,073 9/21/2023
42.6.0-beta.1 4,007 9/15/2023
42.5.0 86,335 9/15/2023
42.5.0-beta.1 2,117 9/7/2023
42.4.0 82,564 9/7/2023
42.4.0-beta.1 1,141 9/1/2023
42.3.0 66,280 8/31/2023
42.2.0 101,536 8/24/2023
42.1.0 62,950 8/17/2023
42.0.0 14,900 8/16/2023
42.0.0-beta.1 162 8/24/2023
41.29.0-beta.1 4,480 8/11/2023
41.28.0 212,122 8/11/2023
41.28.0-beta.1 2,040 8/3/2023
41.27.0 93,198 8/3/2023
41.27.0-beta.1 1,594 7/28/2023
41.26.0 92,897 7/27/2023
41.25.0 113,365 7/20/2023
41.25.0-beta.1 836 7/13/2023
41.24.0 97,800 7/13/2023
41.23.0 114,456 7/6/2023
41.23.0-beta.1 5,654 6/30/2023
41.22.0 85,537 6/29/2023
41.22.0-beta.1 378 6/22/2023
41.21.0 80,572 6/22/2023
41.21.0-beta.2 2,762 6/15/2023
41.21.0-beta.1 416 6/8/2023
41.20.0 189,161 6/8/2023
41.20.0-beta.1 507 6/1/2023
41.19.0 121,780 6/1/2023
41.19.0-beta.1 2,495 5/25/2023
41.18.0 265,547 5/25/2023
41.18.0-beta.1 541 5/19/2023
41.17.0 99,699 5/19/2023
41.17.0-beta.1 1,719 5/11/2023
41.16.0 1,845,711 5/11/2023
41.16.0-beta.1 782 5/5/2023
41.15.0 116,623 5/4/2023
41.15.0-beta.1 701 4/27/2023
41.14.0 143,983 4/27/2023
41.14.0-beta.3 609 4/20/2023
41.14.0-beta.2 1,198 4/13/2023
41.14.0-beta.1 1,295 4/6/2023
41.13.0 389,372 4/6/2023
41.13.0-beta.1 2,343 3/30/2023
41.12.0 131,304 3/30/2023
41.12.0-beta.1 809 3/24/2023
41.11.0 99,929 3/23/2023
41.11.0-beta.1 3,359 3/17/2023
41.10.0 93,190 3/17/2023
41.10.0-beta.1 2,236 3/9/2023
41.9.0 300,201 3/9/2023
41.9.0-beta.1 8,377 3/3/2023
41.8.0 76,992 3/2/2023
41.8.0-beta.2 919 2/24/2023
41.8.0-beta.1 1,836 2/17/2023
41.7.0 200,621 2/16/2023
41.7.0-beta.1 5,719 2/2/2023
41.6.0 260,776 2/2/2023
41.6.0-beta.2 576 1/27/2023
41.6.0-beta.1 1,209 1/19/2023
41.5.0 216,249 1/19/2023
41.5.0-beta.2 411 1/12/2023
41.5.0-beta.1 4,751 1/5/2023
41.4.0 214,589 1/5/2023
41.4.0-beta.1 1,370 12/22/2022
41.3.0 124,845 12/22/2022
41.3.0-beta.2 3,200 12/16/2022
41.3.0-beta.1 4,176 12/8/2022
41.2.0 197,490 12/6/2022
41.1.0 328,242 11/17/2022
41.0.0 31,162 11/16/2022
40.17.0-beta.1 792 11/10/2022
40.16.0 282,060 11/8/2022
40.15.0 239,958 11/3/2022
40.15.0-beta.2 567 11/2/2022
40.15.0-beta.1 4,503 10/22/2022
40.14.0 179,569 10/20/2022
40.14.0-beta.1 938 10/14/2022
40.13.0 201,653 10/13/2022
40.13.0-beta.1 2,242 10/7/2022
40.12.0 75,953 10/6/2022
40.12.0-beta.2 257 10/4/2022
40.12.0-beta.1 227 10/4/2022
40.11.0 97,926 9/29/2022
40.11.0-beta.1 930 9/26/2022
40.10.0 105,666 9/22/2022
40.9.0 124,836 9/15/2022
40.8.0 124,591 9/9/2022
40.7.0 82,434 9/6/2022
40.6.0 131,885 8/31/2022
40.5.0 75,819 8/26/2022
40.5.0-beta.1 620 8/26/2022
40.4.0 195,137 8/23/2022
40.4.0-beta.1 728 8/23/2022
40.3.0 150,899 8/19/2022
40.3.0-beta.1 437 8/11/2022
40.2.0 119,938 8/11/2022
40.1.0 63,976 8/9/2022
40.1.0-beta.1 285 8/3/2022
40.0.0 274,250 8/2/2022
39.126.0 500,431 7/26/2022
39.125.0 100,018 7/25/2022
39.125.0-beta.1 342 7/22/2022
39.124.0 145,814 7/18/2022
39.123.0 242,463 7/12/2022
39.123.0-beta.1 1,710 7/7/2022
39.122.0 111,156 7/7/2022
39.121.0 266,157 6/29/2022
39.120.0 90,931 6/23/2022
39.119.0 121,187 6/17/2022
39.119.0-beta.1 393 6/15/2022
39.118.0 131,485 6/9/2022
39.117.0 44,290 6/8/2022
39.116.0 99,587 6/1/2022
39.115.0 91,909 5/26/2022
39.114.0 118,500 5/23/2022
39.113.0 10,955 5/23/2022
39.112.0 36,057 5/20/2022
39.111.0 287,980 5/11/2022
39.110.0 209,734 5/5/2022
39.109.0 8,278 5/5/2022
39.108.0 28,852 5/3/2022
39.107.0 128,787 4/21/2022
39.106.0 312,136 4/20/2022
39.105.0 233,926 4/13/2022
39.104.0 179,889 4/8/2022
39.103.0 182,571 4/1/2022
39.102.0 29,621 3/30/2022
39.101.0 16,915 3/29/2022
39.100.0 63,799 3/25/2022
39.99.0 59,161 3/23/2022
39.98.0 69,702 3/18/2022
39.97.0 189,902 3/11/2022
39.96.0 89,998 3/9/2022
39.95.0 117,833 3/2/2022
39.94.0 7,321 3/2/2022
39.93.0 58,188 2/26/2022
39.92.0 35,740 2/23/2022
39.91.0 447,630 2/16/2022
39.90.0 132,809 2/6/2022
39.89.0 323,119 1/25/2022
39.88.0 89,529 1/20/2022
39.87.0 12,321 1/19/2022
39.86.0 56,667 1/13/2022
39.85.0 31,969 1/12/2022
39.84.0 260,287 12/22/2021
39.83.0 94,651 12/15/2021
39.82.0 64,163 12/9/2021
39.81.0 9,831 12/9/2021
39.80.0 520,285 11/20/2021
39.79.0 19,833 11/17/2021
39.78.1 10,923 11/16/2021
39.78.0 3,268 11/16/2021
39.77.0 44,576 11/11/2021
39.76.0 123,079 11/4/2021
39.75.1 5,500 11/4/2021
39.75.0 141,780 11/1/2021
39.74.0 251,171 10/20/2021
39.73.0 119,596 10/11/2021
39.72.0 7,405 10/11/2021
39.71.0 25,606 10/7/2021
39.70.0 72,452 9/29/2021
39.69.0 63,618 9/24/2021
39.68.0 196,169 9/16/2021
39.67.0 6,691 9/15/2021
39.66.0 127,307 9/2/2021
39.65.0 4,503 9/1/2021
39.64.0 173,371 8/27/2021
39.63.0 231,888 8/11/2021
39.62.0 160,100 7/28/2021
39.61.0 118,622 7/22/2021
39.60.0 18,920 7/21/2021
39.59.0 229,199 7/14/2021
39.58.0 59,770 7/9/2021
39.57.0 92,178 6/30/2021
39.56.1 5,115 6/30/2021
39.56.0 8,657 6/29/2021 39.56.0 is deprecated because it has critical bugs.
39.55.0 41,745 6/25/2021
39.54.0 68,018 6/16/2021
39.53.0 330,783 6/7/2021
39.52.0 31,181 6/4/2021
39.51.0 62,270 6/4/2021
39.50.0 220,559 5/26/2021
39.49.0 86,465 5/20/2021
39.48.0 162,111 5/7/2021
39.47.0 49,369 5/6/2021
39.46.0 3,859 5/5/2021
39.45.0 135,441 4/16/2021
39.44.0 143,386 4/12/2021
39.43.0 135,131 4/3/2021
39.42.0 151,742 3/31/2021
39.41.0 120,066 3/26/2021
39.40.0 162,833 3/22/2021
39.39.0 212,660 3/1/2021
39.38.0 290,972 2/23/2021
39.37.0 85,387 2/18/2021
39.36.0 14,355 2/17/2021
39.35.0 101,839 2/9/2021
39.34.0 133,137 2/3/2021
39.33.0 229,595 1/21/2021
39.32.0 132,887 1/7/2021
39.31.0 265,171 12/16/2020
39.30.0 66,818 12/11/2020
39.29.0 177,932 12/4/2020
39.28.0 203,195 11/24/2020
39.27.0 52,518 11/20/2020
39.26.0 14,765 11/19/2020
39.25.0 25,902 11/18/2020
39.24.0 9,001 11/18/2020
39.23.0 201,711 11/9/2020
39.22.0 44,673 11/4/2020
39.21.0 74,580 10/29/2020
39.20.0 24,091 10/27/2020
39.19.0 37,375 10/26/2020
39.18.0 15,288 10/23/2020
39.17.0 13,451 10/23/2020
39.16.0 120,306 10/14/2020
39.15.0 20,555 10/13/2020
39.14.0 4,902 10/12/2020
39.13.0 22,563 10/9/2020
39.12.0 23,986 10/9/2020
39.11.0 118,060 10/3/2020
39.10.0 38,731 9/30/2020
39.9.0 17,319 9/30/2020
39.8.0 17,024 9/29/2020
39.7.0 44,395 9/25/2020
39.6.0 26,999 9/23/2020
39.5.0 53,764 9/22/2020
39.4.0 110,252 9/13/2020
39.3.0 82,270 9/8/2020
39.2.0 49,487 9/3/2020
39.1.2 48,594 9/1/2020
37.35.0 413,349 8/27/2020
37.34.0 119,313 8/19/2020
37.33.0 39,665 8/18/2020
37.32.0 7,818 8/17/2020
37.31.0 24,676 8/13/2020
37.30.0 73,942 8/7/2020
37.29.0 34,026 8/6/2020
37.28.0 14,211 8/4/2020
37.27.0 76,679 7/29/2020
37.26.0 131,997 7/25/2020
37.25.0 5,964 7/25/2020
37.24.0 21,840 7/22/2020
37.23.0 9,002 7/21/2020
37.22.0 5,226 7/21/2020
37.21.0 10,433 7/21/2020
37.20.0 14,499 7/18/2020
37.19.0 6,753 7/17/2020
37.18.0 82,975 7/15/2020
37.17.0 39,276 7/13/2020
37.16.0 103,248 7/6/2020
37.15.1 36,725 7/3/2020
37.15.0 31,894 7/1/2020
37.14.0 192,616 6/25/2020
37.13.0 40,017 6/23/2020
37.12.0 35,547 6/22/2020
37.11.0 15,265 6/18/2020
37.10.0 85,984 6/11/2020
37.9.0 10,028 6/11/2020
37.8.0 198,093 6/3/2020
37.7.0 4,208 6/3/2020
37.6.0 56,110 5/29/2020
37.5.0 30,932 5/28/2020
37.4.0 141,339 5/22/2020
37.3.0 73,190 5/21/2020
37.2.0 4,205 5/20/2020
37.1.0 64,310 5/19/2020
37.0.0 68,175 5/18/2020
36.12.2 74,871 5/14/2020
36.12.1 3,899 5/14/2020
36.12.0 4,068 5/13/2020
36.11.0 72,610 5/12/2020
36.10.0 17,520 5/11/2020
36.9.0 27,360 5/8/2020
36.8.1 38,789 5/5/2020
36.8.0 29,432 5/1/2020
36.7.0 17,470 4/29/2020
36.6.0 29,362 4/24/2020
36.5.0 22,204 4/22/2020
36.4.0 4,379 4/22/2020
36.3.0 8,688 4/21/2020
36.2.0 20,744 4/18/2020
36.1.0 17,234 4/17/2020
36.0.0 11,681 4/16/2020
35.17.0 29,564 4/14/2020
35.16.0 20,727 4/13/2020
35.15.0 6,256 4/13/2020
35.14.0 15,543 4/10/2020
35.13.0 5,180 4/9/2020
35.12.1 188,022 4/8/2020
35.12.0 50,906 4/3/2020
35.11.1 219,120 3/31/2020
35.11.0 36,425 3/31/2020
35.10.0 51,009 3/26/2020
35.9.0 40,942 3/25/2020
35.8.0 7,613 3/24/2020
35.7.1 6,135 3/23/2020
35.7.0 35,160 3/20/2020
35.6.0 298,931 3/13/2020
35.5.0 7,036 3/12/2020
35.4.0 5,210 3/12/2020
35.3.0 87,942 3/5/2020
35.2.0 4,397 3/4/2020
35.1.0 6,980 3/4/2020
35.0.0 26,328 3/4/2020
34.26.0 105,001 2/24/2020
34.25.0 21,218 2/21/2020
34.24.0 8,878 2/21/2020
34.23.0 121,910 2/17/2020
34.22.0 35,989 2/13/2020
34.21.0 5,364 2/12/2020
34.20.1 10,252 2/12/2020
34.20.0 77,622 2/6/2020
34.19.0 49,224 2/3/2020
34.18.0 55,681 1/31/2020
34.17.0 56,240 1/25/2020
34.16.1 12,285 1/22/2020
34.16.0 41,373 1/17/2020
34.15.0 280,424 1/15/2020
34.14.0 6,964 1/14/2020
34.13.0 59,342 1/10/2020
34.12.0 24,261 1/6/2020
34.11.0 15,490 1/4/2020
34.10.1 8,979 1/3/2020
34.10.0 29,984 12/31/2019
34.9.0 101,047 12/24/2019
34.8.0 33,432 12/21/2019
34.7.0 9,953 12/19/2019
34.6.0 28,702 12/17/2019
34.5.0 57,703 12/13/2019
34.4.0 7,316 12/12/2019
34.3.0 30,259 12/9/2019
34.2.0 4,063 12/9/2019
34.1.0 101,272 12/4/2019
34.0.0 20,677 12/4/2019
33.9.0 45,797 12/2/2019
33.8.0 35,113 11/26/2019
33.7.0 20,099 11/25/2019
33.6.0 19,124 11/22/2019
33.5.0 8,855 11/21/2019
33.4.0 14,244 11/19/2019
33.3.0 73,752 11/8/2019
33.2.0 9,231 11/7/2019
33.1.0 13,683 11/6/2019
33.0.0 26,493 11/6/2019
32.2.0 33,448 11/4/2019
32.1.3 38,554 10/28/2019
32.1.2 8,126 10/25/2019
32.1.1 3,522 10/24/2019
32.1.0 14,642 10/24/2019
32.0.0 21,967 10/19/2019
31.2.0 5,247 10/18/2019
31.1.0 104,065 10/11/2019
31.0.0 5,306 10/10/2019
30.1.0 47,542 10/10/2019
30.0.1 5,544 10/9/2019
30.0.0 34,840 10/9/2019
29.6.0 53,650 10/3/2019
29.5.0 63,139 9/27/2019
29.4.0 21,771 9/26/2019
29.3.0 9,889 9/26/2019
29.2.1 25,982 9/23/2019
29.2.0 38,070 9/19/2019
29.1.0 160,128 9/13/2019
29.0.1 12,444 9/12/2019
29.0.0 90,759 9/10/2019
28.11.0 48,550 9/9/2019
28.10.0 91,507 9/4/2019
28.9.0 21,317 9/3/2019
28.8.0 270,894 8/30/2019
28.7.0 4,782 8/29/2019
28.6.0 168,589 8/27/2019
28.5.0 56,635 8/23/2019
28.4.0 21,429 8/21/2019
28.3.0 17,068 8/20/2019
28.2.0 158,813 8/16/2019
28.1.0 47,457 8/15/2019
28.0.0 56,718 8/14/2019
27.25.1 10,315 8/14/2019
27.24.0 57,426 8/9/2019
27.23.0 9,744 8/8/2019
27.22.0 4,028 8/8/2019
27.21.0 127,632 8/2/2019
27.20.0 29,070 8/1/2019
27.19.0 33,067 7/31/2019
27.18.0 30,284 7/26/2019
27.17.0 8,973 7/25/2019
27.16.1 115,127 7/23/2019
27.16.0 59,011 7/22/2019
27.15.0 93,517 7/19/2019
27.14.0 34,926 7/18/2019
27.13.0 40,970 7/16/2019
27.12.0 5,592 7/15/2019
27.11.0 28,433 7/11/2019
27.10.0 20,467 7/10/2019
27.9.1 36,210 7/10/2019
27.9.0 35,297 7/5/2019
27.8.1 50,077 7/3/2019
27.8.0 8,714 7/2/2019
27.7.0 4,284 7/2/2019
27.6.0 6,097 7/1/2019
27.5.0 11,085 7/1/2019
27.4.0 23,360 6/26/2019
27.3.2 53,047 6/20/2019
27.3.1 23,519 6/18/2019
27.3.0 9,633 6/17/2019
27.2.0 28,820 6/14/2019
27.1.3 10,662 6/12/2019
27.1.2 11,488 6/11/2019
27.1.1 3,986 6/10/2019
27.1.0 4,553 6/10/2019
27.0.0 14,438 6/7/2019
26.1.0 21,359 6/6/2019
26.0.0 126,662 5/24/2019
25.19.1 19,603 5/22/2019
25.19.0 37,763 5/17/2019
25.18.0 18,278 5/14/2019
25.17.0 17,139 5/10/2019
25.16.1 18,734 5/8/2019
25.16.0 12,837 5/6/2019
25.15.0 52,242 5/4/2019
25.14.0 6,943 5/3/2019
25.13.0 25,427 4/30/2019
25.12.0 25,679 4/25/2019
25.11.0 3,819 4/24/2019
25.10.0 37,839 4/23/2019
25.9.0 18,625 4/18/2019
25.8.0 66,197 4/17/2019
25.7.1 4,425 4/16/2019
25.7.0 10,822 4/15/2019
25.6.0 34,722 4/10/2019
25.5.0 3,715 4/9/2019
25.4.0 14,085 4/5/2019
25.3.0 161,550 3/29/2019
25.2.0 28,424 3/25/2019
25.1.0 15,272 3/22/2019
25.0.0 28,385 3/19/2019
24.6.0 14,667 3/19/2019
24.5.0 39,417 3/14/2019
24.4.1 26,474 3/11/2019
24.3.0 39,905 3/7/2019
24.2.0 4,882 3/6/2019
24.1.0 37,461 2/28/2019
24.0.2 163,711 2/20/2019
24.0.1 4,507 2/20/2019
23.2.0 4,200 2/19/2019
23.1.0 6,855 2/18/2019
23.0.0 16,100 2/14/2019
22.9.0 10,717 2/12/2019
22.8.1 42,440 2/4/2019
22.8.0 85,583 1/25/2019
22.7.0 34,213 1/20/2019
22.6.0 7,067 1/18/2019
22.5.0 4,608 1/17/2019
22.4.0 30,484 1/10/2019
22.3.0 40,147 1/9/2019
22.2.0 4,245 1/9/2019
22.1.0 7,049 1/8/2019
22.0.0 11,379 1/7/2019
21.9.0 29,710 1/3/2019
21.8.1 5,152 1/3/2019
21.8.0 42,360 12/27/2018
21.7.1 14,109 12/21/2018
21.7.0 242,485 11/28/2018
21.6.0 13,370 11/27/2018
21.5.0 33,668 11/26/2018
21.4.1 29,342 11/16/2018
21.4.0 9,358 11/14/2018
21.3.0 4,251 11/14/2018
21.2.0 10,643 11/12/2018
21.1.0 11,740 11/9/2018
21.0.0 8,693 11/9/2018
20.4.1 10,444 11/8/2018
20.4.0 21,293 11/5/2018
20.3.0 10,092 10/31/2018
20.2.0 18,640 10/25/2018
20.1.0 20,049 10/23/2018
20.0.0 6,597 10/22/2018
19.10.0 268,870 10/9/2018
19.9.2 40,031 9/28/2018
19.9.1 10,169 9/27/2018
19.9.0 127,768 9/26/2018
19.8.0 16,777 9/24/2018
19.7.0 98,641 9/20/2018
19.6.0 46,432 9/11/2018
19.5.0 21,725 9/6/2018
19.4.0 6,228 9/6/2018
19.3.0 18,439 9/4/2018
19.2.0 26,997 8/29/2018
19.1.0 9,282 8/28/2018
19.0.1 5,563 8/27/2018
18.0.0 26,710 8/23/2018
17.11.0 27,399 8/23/2018
17.10.0 15,411 8/21/2018
17.9.0 15,014 8/16/2018
17.8.0 303,330 8/3/2018
17.7.0 43,444 7/31/2018
17.6.0 30,247 7/27/2018
17.5.0 7,905 7/26/2018
17.4.0 17,333 7/23/2018
17.3.1 84,008 7/16/2018
17.3.0 16,312 7/13/2018
17.2.0 4,449 7/13/2018
17.1.0 6,082 7/12/2018
17.0.0 5,202 7/11/2018
16.16.1 34,768 7/11/2018
16.16.0 16,849 7/6/2018
16.14.0 30,953 6/29/2018
16.13.0 5,270 6/28/2018
16.12.0 44,745 6/20/2018
16.11.0 4,289 6/20/2018
16.10.0 87,997 6/13/2018
16.9.0 16,823 6/12/2018
16.8.0 5,212 6/12/2018
16.7.0 15,816 6/6/2018
16.6.0 4,631 6/6/2018
16.5.0 7,490 6/6/2018
16.4.0 26,220 6/1/2018
16.3.0 48,399 5/23/2018
16.1.0 110,874 5/10/2018
16.0.0 5,725 5/10/2018
15.8.0 13,099 5/8/2018
15.7.0 11,180 5/3/2018
15.6.2 30,478 4/25/2018
15.6.1 80,815 4/19/2018
15.6.0 35,912 4/18/2018
15.5.0 14,692 4/16/2018
15.3.2 182,448 4/9/2018
15.3.1 14,612 4/6/2018
15.3.0 42,151 4/4/2018
15.2.1 57,800 3/27/2018
15.2.0 5,084 3/26/2018
15.1.0 8,755 3/23/2018
15.0.0 26,887 3/21/2018
14.0.0 14,449 3/16/2018
13.5.0 28,333 3/15/2018
13.4.0 8,981 3/13/2018
13.3.1 27,165 3/5/2018
13.3.0 17,960 3/1/2018
13.2.0 9,075 2/27/2018
13.1.0 477,183 2/22/2018
13.0.1 11,263 2/19/2018
13.0.0 32,085 2/13/2018
12.1.0 229,897 1/19/2018
12.0.0 11,921 1/16/2018
11.10.0 67,336 12/26/2017
11.9.0 72,882 11/29/2017
11.8.2 16,714 11/23/2017
11.8.1 14,452 11/23/2017
11.7.1 84,678 10/31/2017
11.7.0 4,520 10/31/2017
11.6.1 22,240 10/24/2017
11.6.0 36,167 10/19/2017
11.5.0 41,753 10/17/2017
11.4.0 7,429 10/13/2017
11.3.0 5,971 10/11/2017
11.2.0 9,210 10/10/2017
11.1.0 4,340 10/10/2017
11.0.0 17,216 10/10/2017
10.4.0 245,939 8/8/2017
10.3.0 58,926 7/14/2017
10.2.0 66,584 6/28/2017
10.1.0 5,388 6/27/2017
10.0.0 55,838 6/6/2017
9.1.0 21,114 6/1/2017
9.0.0 52,034 5/13/2017
8.4.0 17,913 5/5/2017
8.3.0 7,570 5/2/2017
8.2.0 29,262 4/27/2017
8.1.1 14,940 4/19/2017
8.1.0 4,683 4/19/2017
8.0.0 11,954 4/13/2017
7.63.0 3,636 11/17/2020 7.63.0 is deprecated.
7.8.0 46,750 4/6/2017
7.7.0 10,079 4/1/2017
7.6.1 11,603 3/28/2017
7.6.0 22,803 3/17/2017
7.5.0 5,192 3/16/2017
7.4.0 13,526 3/7/2017
7.3.0 31,349 3/3/2017
7.2.0 16,257 2/28/2017
7.1.2 11,108 2/24/2017
7.1.1 6,779 2/23/2017
7.1.0 10,920 2/21/2017
7.0.5 66,312 2/21/2017
7.0.4 45,580 2/11/2017
7.0.3 44,755 1/19/2017
7.0.2 36,007 1/10/2017
7.0.1 20,832 12/25/2016
7.0.0 32,172 12/19/2016
6.13.0 14,775 12/17/2016
6.12.1 4,981 12/16/2016
6.12.0 81,978 11/29/2016
6.11.1 18,695 11/21/2016
6.11.0 10,755 11/8/2016
6.10.0 13,423 10/29/2016
6.9.0 70,954 10/18/2016
6.8.0 30,503 10/4/2016
6.7.0 16,477 9/26/2016
6.6.0 18,445 9/11/2016
6.5.0 28,791 9/1/2016
6.4.0 66,702 8/6/2016
6.3.6 22,958 7/29/2016
6.3.5 18,101 7/6/2016
6.3.4 34,997 6/25/2016
6.3.3 79,425 5/14/2016
6.3.2 40,917 4/25/2016
6.3.1 28,371 4/17/2016
6.3.0 4,587 4/17/2016
6.2.2 13,361 4/12/2016
6.2.1 7,243 4/4/2016
6.2.0 4,600 4/3/2016
6.1.1 4,491 4/1/2016
6.1.0 36,426 3/25/2016
6.0.1 37,017 3/15/2016
6.0.0 14,521 3/10/2016
5.3.0 51,752 2/14/2016
5.2.0 18,601 1/25/2016
5.1.3 11,570 1/8/2016
5.1.2 58,962 12/2/2015
5.1.1 8,762 11/29/2015
5.1.0 7,045 11/28/2015
5.0.1 44,773 11/19/2015
5.0.0 12,570 10/23/2015
4.2.1 17,918 9/13/2015
4.2.0 54,526 7/26/2015
4.1.0 11,072 7/11/2015
4.0.2 9,340 7/3/2015
4.0.1 14,421 7/2/2015
4.0.0 4,556 7/2/2015
3.0.2 11,290 6/17/2015
3.0.1 4,717 6/17/2015
3.0.0 7,070 5/28/2015
2.9.0 87,288 4/12/2015
2.8.0 30,226 3/14/2015
2.7.2 15,541 2/17/2015
2.7.1 5,169 2/17/2015
2.7.0 5,005 2/16/2015
2.6.0 5,399 2/14/2015
2.5.1 11,398 2/7/2015
2.5.0 5,248 1/31/2015
2.4.1 4,665 1/31/2015
2.4.0 5,119 1/25/2015
2.3.5 7,569 1/21/2015
2.3.4 23,399 12/4/2014
2.3.3 26,193 11/3/2014
2.3.2 5,350 10/26/2014
2.3.1 4,753 10/26/2014
2.3.0 12,238 9/4/2014
2.2.6 40,454 7/15/2014
2.2.5 9,251 6/22/2014
2.2.4 5,345 6/17/2014
2.2.3 5,205 6/13/2014
2.2.2 7,640 5/29/2014
2.2.1 4,785 5/28/2014
2.2.0 4,507 5/27/2014
2.1.2 5,252 5/14/2014
2.1.1 5,151 5/13/2014
2.1.0 7,116 4/20/2014
2.0.1 5,494 4/13/2014
2.0.0 5,521 4/5/2014
1.7.7 6,852 3/17/2014
1.7.6 19,578 1/18/2014
1.7.5 4,862 1/12/2014
1.7.4 6,307 12/25/2013
1.7.3 4,473 12/25/2013
1.7.2 4,498 12/24/2013
1.7.1 5,452 12/1/2013
1.7.0 7,215 11/3/2013
1.6.3 6,219 10/19/2013
1.6.2 8,729 8/30/2013
1.6.1 7,757 8/15/2013
1.6.0 4,488 8/10/2013
1.5.7 6,931 7/18/2013
1.5.6 5,211 6/30/2013
1.5.5 19,034 5/27/2013
1.5.4 5,381 5/7/2013
1.5.3 6,007 3/30/2013
1.5.2 4,641 3/26/2013
1.5.1 4,708 3/13/2013
1.5.0 4,712 3/4/2013
1.4.3 4,369 3/4/2013
1.4.2 4,654 3/4/2013
1.4.1 4,703 2/24/2013
1.4.0 4,726 2/12/2013
1.3.1 4,518 2/11/2013
1.3.0 4,491 2/11/2013
1.2.1 4,608 1/24/2013
1.2.0 5,323 12/2/2012
1.1.18 14,022 11/4/2012
1.1.17 5,364 9/7/2012
1.1.16 4,619 9/5/2012
1.1.15 4,424 8/27/2012
1.1.14 4,858 8/4/2012
1.1.13 10,222 6/10/2012
1.1.12 4,883 4/21/2012
1.1.11 4,870 4/8/2012
1.1.10 13,910 3/25/2012
1.1.9 4,494 3/5/2012
1.1.8 4,565 2/26/2012
1.1.7 4,515 2/26/2012
1.1.6 4,722 2/26/2012
0.5.2 21,650 11/28/2015