Microsoft.AspNetCore.Identity.EntityFrameworkCore 10.0.0-preview.2.25164.1

Prefix Reserved
This is a prerelease version of Microsoft.AspNetCore.Identity.EntityFrameworkCore.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Microsoft.AspNetCore.Identity.EntityFrameworkCore --version 10.0.0-preview.2.25164.1
                    
NuGet\Install-Package Microsoft.AspNetCore.Identity.EntityFrameworkCore -Version 10.0.0-preview.2.25164.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="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.0-preview.2.25164.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.0-preview.2.25164.1" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.AspNetCore.Identity.EntityFrameworkCore --version 10.0.0-preview.2.25164.1
                    
#r "nuget: Microsoft.AspNetCore.Identity.EntityFrameworkCore, 10.0.0-preview.2.25164.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.
#:package Microsoft.AspNetCore.Identity.EntityFrameworkCore@10.0.0-preview.2.25164.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Microsoft.AspNetCore.Identity.EntityFrameworkCore&version=10.0.0-preview.2.25164.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.Identity.EntityFrameworkCore&version=10.0.0-preview.2.25164.1&prerelease
                    
Install as a Cake Tool

About

Microsoft.AspNetCore.Identity.EntityFrameworkCore utilizes Entity Framework Core to provide functionality enabling the storage of user, role, and other identity-related data in a database.

Key Features

  • Provides user and role management
  • Enables secure authentication and authorization mechanisms
  • Allows storage and validatation of user passwords using hashing
  • Tracks email confirmation for user account validation
  • Tracks two-factor authentication to provide an extra layer of security
  • Tracks failed login attempts to help protect against brute-force attacks enabling locking out user accounts after multiple failed login attempts
  • Uses claims to define fine-grained access control policies
  • Seamlessly integrates with Entity Framework Core for data storage and retrieval

How to Use

To use Microsoft.AspNetCore.Identity.EntityFrameworkCore, follow these steps:

Installation

dotnet add package Microsoft.AspNetCore.Identity.EntityFrameworkCore

Configuration

Add the following code to the Program.cs of your ASP.NET Core app:

builder.Services.AddDbContext<ApplicationDbContext>(options =>
    options.UseSqlServer(builder.Configuration.GetConnectionString("DefaultConnection")));

builder.Services.AddDefaultIdentity<ApplicationUser>()
    .AddEntityFrameworkStores<ApplicationDbContext>();

You can replace ApplicationDbContext with your own database context class derived from IdentityDbContext and ApplicationUser with your own user class containing additional properties derived from IdentityUser.

Make sure to configure the connection string via "ConnectionStrings:DefaultConnection" (or whatever you rename it to) so it can connect to your database.

Main Types

The main types provided by Microsoft.AspNetCore.Identity.EntityFrameworkCore include:

  • IdentityDbContext: Provides the database context for storing and managing user, role, and other identity-related data
  • IdentityUserContext: Provides methods and properties for querying and manipulating user information
  • RoleStore: Provides methods for creating, updating, and deleting roles, as well as querying and managing role-related data
  • UserStore: Provides methods for creating, updating, and deleting users, as well as querying and managing user-related data
  • UserOnlyStore: Provides methods for creating, updating, and deleting users, as well as querying and managing user-related data for users without roles

Additional Documentation

For additional documentation and examples, refer to the official documentation on ASP.NET Core Identity.

Feedback & Contributing

Microsoft.AspNetCore.Identity.EntityFrameworkCore is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1.1K)

Showing the top 5 NuGet packages that depend on Microsoft.AspNetCore.Identity.EntityFrameworkCore:

Package Downloads
Microsoft.AspNetCore.App

Provides a default set of APIs for building an ASP.NET Core application. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

Microsoft.AspNetCore.All

Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

Microsoft.AspNetCore.ApiAuthorization.IdentityServer

ASP.NET Core API Authorization package powered by Identity Server. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/fb4b5a21ebd67b31fff4ddf5c039181da504c932

Microting.eFormApi.BasePn

Package Description

Finbuckle.MultiTenant.EntityFrameworkCore

Entity Framework Core support for Finbuckle.MultiTenant.

GitHub repositories (321)

Showing the top 20 popular GitHub repositories that depend on Microsoft.AspNetCore.Identity.EntityFrameworkCore:

Repository Stars
dotnet/maui
.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
dotnet/efcore
EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
dotnet-architecture/eShopOnWeb
Sample ASP.NET Core 8.0 reference application, now community supported: https://github.com/NimblePros/eShopOnWeb
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 10 RC 1, 9, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
dotnet/eShop
A reference .NET application implementing an eCommerce site
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
EduardoPires/EquinoxProject
Web Application ASP.NET 9 using Clean Architecture, DDD, CQRS, Event Sourcing and a lot of good practices
ant-design-blazor/ant-design-blazor
🌈A rich set of enterprise-class UI components based on Ant Design and Blazor.
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
jasontaylordev/NorthwindTraders
Northwind Traders is a sample application built using ASP.NET Core and Entity Framework Core.
openiddict/openiddict-core
Flexible and versatile OAuth 2.0/OpenID Connect stack for .NET
immense/Remotely
A remote control and remote scripting solution, built with .NET 8, Blazor, and SignalR.
microsoft/fluentui-blazor
Microsoft Fluent UI Blazor components library. For use with ASP.NET Core Blazor applications
cobbr/Covenant
Covenant is a collaborative .NET C2 framework for red teamers.
simplcommerce/SimplCommerce
A simple, cross platform, modulith ecommerce system built on .NET
Ombi-app/Ombi
Want a Movie or TV Show on Plex/Emby/Jellyfin? Use Ombi!
skoruba/IdentityServer4.Admin
The administration for the IdentityServer4 and Asp.Net Core Identity
fullstackhero/blazor-starter-kit
Clean Architecture Template for Blazor WebAssembly Built with MudBlazor Components.
Version Downloads Last Updated
10.0.0-rc.1.25451.107 19,518 9/9/2025
10.0.0-preview.7.25380.108 24,201 8/12/2025
10.0.0-preview.6.25358.103 3,660 7/15/2025
10.0.0-preview.5.25277.114 4,540 6/6/2025
10.0.0-preview.4.25258.110 3,042 5/12/2025
10.0.0-preview.3.25172.1 3,225 4/10/2025
10.0.0-preview.2.25164.1 51,011 3/18/2025
10.0.0-preview.1.25120.3 2,641 2/25/2025
9.0.9 215,082 9/9/2025
9.0.8 515,895 8/5/2025
9.0.7 388,161 7/8/2025
9.0.6 464,486 6/10/2025
9.0.5 642,205 5/13/2025
9.0.4 740,125 4/8/2025
9.0.3 838,407 3/11/2025
9.0.2 802,138 2/11/2025
9.0.1 677,729 1/14/2025
9.0.0 1,650,299 11/12/2024
9.0.0-rc.2.24474.3 29,097 10/8/2024
9.0.0-rc.1.24452.1 8,877 9/10/2024
9.0.0-preview.7.24406.2 38,118 8/13/2024
9.0.0-preview.6.24328.4 99,525 7/9/2024
9.0.0-preview.5.24306.11 3,581 6/11/2024
9.0.0-preview.4.24267.6 4,025 5/21/2024
9.0.0-preview.3.24172.13 73,689 4/11/2024
9.0.0-preview.2.24128.4 4,433 3/12/2024
9.0.0-preview.1.24081.5 27,377 2/13/2024
8.0.20 79,468 9/9/2025
8.0.19 202,694 8/4/2025
8.0.18 196,282 7/8/2025
8.0.17 340,877 6/10/2025
8.0.16 354,416 5/13/2025
8.0.15 580,309 4/8/2025
8.0.14 1,076,152 3/11/2025
8.0.13 596,145 2/11/2025
8.0.12 944,496 1/14/2025
8.0.11 2,495,638 11/12/2024
8.0.10 3,122,744 10/8/2024
8.0.8 3,506,566 8/13/2024
8.0.7 2,347,660 7/9/2024
8.0.6 2,660,687 5/28/2024
8.0.5 1,225,176 5/14/2024
8.0.4 2,558,812 4/9/2024
8.0.3 1,918,795 3/12/2024
8.0.2 2,321,927 2/13/2024
8.0.1 2,022,202 1/9/2024
8.0.0 4,298,897 11/14/2023
8.0.0-rc.2.23480.2 53,420 10/10/2023
8.0.0-rc.1.23421.29 25,500 9/12/2023
8.0.0-preview.7.23375.9 57,708 8/8/2023
8.0.0-preview.6.23329.11 80,608 7/11/2023
8.0.0-preview.5.23302.2 9,477 6/13/2023
8.0.0-preview.4.23260.4 7,483 5/16/2023
8.0.0-preview.3.23177.8 13,782 4/11/2023
8.0.0-preview.2.23153.2 95,107 3/14/2023
8.0.0-preview.1.23112.2 60,353 2/21/2023
7.0.20 569,188 5/28/2024
7.0.19 46,127 5/14/2024
7.0.18 103,113 4/9/2024
7.0.17 343,595 3/12/2024
7.0.16 215,594 2/13/2024
7.0.15 383,438 1/9/2024
7.0.14 524,892 11/14/2023
7.0.13 786,872 10/24/2023
7.0.12 496,825 10/10/2023
7.0.11 880,321 9/12/2023
7.0.10 977,123 8/8/2023
7.0.9 841,692 7/11/2023
7.0.8 492,685 6/22/2023
7.0.7 285,662 6/13/2023
7.0.5 2,789,333 4/11/2023
7.0.4 953,520 3/14/2023
7.0.3 1,078,583 2/14/2023
7.0.2 1,490,178 1/10/2023
7.0.1 568,485 12/13/2022
7.0.0 1,505,820 11/7/2022
7.0.0-rc.2.22476.2 43,299 10/11/2022
7.0.0-rc.1.22427.2 74,375 9/14/2022
7.0.0-preview.7.22376.6 9,796 8/9/2022
7.0.0-preview.6.22330.3 4,127 7/12/2022
7.0.0-preview.5.22303.8 7,907 6/14/2022
7.0.0-preview.4.22251.1 7,086 5/10/2022
7.0.0-preview.3.22178.4 4,261 4/13/2022
7.0.0-preview.2.22153.2 2,529 3/14/2022
7.0.0-preview.1.22109.13 2,511 2/17/2022
6.0.36 212,101 11/12/2024
6.0.35 96,393 10/8/2024
6.0.33 1,042,907 8/13/2024
6.0.32 100,345 7/9/2024
6.0.31 109,392 5/28/2024
6.0.30 79,882 5/14/2024
6.0.29 298,264 4/9/2024
6.0.28 298,209 3/12/2024
6.0.27 214,140 2/13/2024
6.0.26 415,471 1/9/2024
6.0.25 507,409 11/14/2023
6.0.24 277,379 10/24/2023
6.0.23 214,009 10/10/2023
6.0.22 428,750 9/12/2023
6.0.21 535,990 8/8/2023
6.0.20 450,334 7/11/2023
6.0.19 309,428 6/22/2023
6.0.18 312,056 6/13/2023
6.0.16 1,437,976 4/11/2023
6.0.15 620,865 3/14/2023
6.0.14 792,971 2/14/2023
6.0.13 1,164,923 1/10/2023
6.0.12 800,155 12/13/2022
6.0.11 1,431,475 11/7/2022
6.0.10 2,180,024 10/11/2022
6.0.9 2,127,604 9/13/2022
6.0.8 2,649,230 8/9/2022
6.0.7 2,613,119 7/12/2022
6.0.6 1,674,042 6/14/2022
6.0.5 2,862,903 5/10/2022
6.0.4 2,036,393 4/11/2022
6.0.3 2,245,613 3/8/2022
6.0.2 2,626,068 2/8/2022
6.0.1 3,188,317 12/14/2021
6.0.0 6,576,040 11/8/2021
6.0.0-rc.2.21480.10 37,709 10/12/2021
6.0.0-rc.1.21452.15 36,911 9/14/2021
6.0.0-preview.7.21378.6 23,990 8/10/2021
6.0.0-preview.6.21355.2 11,483 7/14/2021
6.0.0-preview.5.21301.17 13,447 6/15/2021
6.0.0-preview.4.21253.5 7,174 5/24/2021
6.0.0-preview.3.21201.13 20,640 4/8/2021
6.0.0-preview.2.21154.6 6,600 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21103.6 13,038 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 1,013,508 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 143,706 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 316,820 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 214,316 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 417,895 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 520,974 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 1,178,178 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 1,316,507 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 1,309,554 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 1,216,758 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 1,611,116 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 1,257,891 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 1,522,069 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 1,344,795 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 1,103,800 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 982,230 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 1,082,529 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 1,921,388 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 24,936 10/13/2020 5.0.0-rc.2.20475.17 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.17 21,028 9/14/2020 5.0.0-rc.1.20451.17 is deprecated because it is no longer maintained.
5.0.0-preview.8.20414.8 19,137 8/25/2020 5.0.0-preview.8.20414.8 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.19 11,409 7/21/2020 5.0.0-preview.7.20365.19 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.15 9,043 6/25/2020 5.0.0-preview.6.20312.15 is deprecated because it is no longer maintained.
5.0.0-preview.5.20279.2 2,880 6/10/2020 5.0.0-preview.5.20279.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20257.10 4,017 5/18/2020 5.0.0-preview.4.20257.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.14 5,631 4/23/2020 5.0.0-preview.3.20215.14 is deprecated because it is no longer maintained.
5.0.0-preview.2.20167.3 4,678 4/2/2020 5.0.0-preview.2.20167.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20124.5 7,254 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 281,437 12/13/2022
3.1.31 35,043 11/8/2022
3.1.30 40,364 10/11/2022
3.1.29 36,159 9/13/2022
3.1.28 56,417 8/9/2022
3.1.27 52,382 7/12/2022
3.1.26 46,603 6/14/2022
3.1.25 91,405 5/10/2022
3.1.24 74,381 4/11/2022
3.1.23 157,347 3/8/2022
3.1.22 406,886 12/14/2021
3.1.21 358,487 11/7/2021
3.1.20 235,321 10/11/2021
3.1.19 148,278 9/14/2021
3.1.18 313,710 8/10/2021
3.1.17 187,734 7/13/2021
3.1.16 231,666 6/8/2021
3.1.15 300,028 5/11/2021
3.1.14 276,481 4/6/2021
3.1.13 436,212 3/9/2021
3.1.12 539,169 2/9/2021
3.1.11 617,137 1/12/2021
3.1.10 1,222,609 11/9/2020
3.1.9 1,632,087 10/13/2020
3.1.8 3,028,566 9/8/2020
3.1.7 1,485,674 8/11/2020
3.1.6 1,517,769 7/14/2020
3.1.5 1,753,719 6/9/2020
3.1.4 1,241,129 5/12/2020
3.1.3 2,497,892 3/24/2020
3.1.2 1,996,547 2/18/2020
3.1.1 1,960,556 1/14/2020
3.1.0 2,397,332 12/3/2019
3.1.0-preview3.19555.2 12,759 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 7,571 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 10,042 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 62,815 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 16,002 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 2,192,352 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 22,476 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 21,536 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 14,558 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 33,193 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 16,830 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 11,951 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 3,864 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 7,004 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 2,836 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
3.0.0-preview-18579-0056 3,350 12/3/2018 3.0.0-preview-18579-0056 is deprecated because it is no longer maintained.
2.3.0 8,079 1/14/2025
2.2.0 17,373,542 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 72,132 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 38,582 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 5,526 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.6 6,929,970 11/13/2018
2.1.3 8,036,934 8/21/2018
2.1.2 3,451,625 7/10/2018
2.1.1 11,203,950 6/18/2018
2.1.0 3,781,064 5/29/2018
2.1.0-rc1-final 26,709 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 26,723 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 42,888 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.4 2,483,636 7/10/2018 2.0.4 is deprecated because it is no longer maintained.
2.0.3 2,431,631 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 3,708,786 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 5,674,929 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 6,946,363 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 57,383 6/27/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 28,652 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.6 22,212 7/10/2018 1.1.6 is deprecated because it is no longer maintained.
1.1.5 24,787 12/12/2017 1.1.5 is deprecated because it is no longer maintained.
1.1.4 8,297 11/14/2017 1.1.4 is deprecated because it is no longer maintained.
1.1.3 26,972 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 322,709 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 202,072 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 263,143 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 9,996 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.6 4,754 7/10/2018 1.0.6 is deprecated because it is no longer maintained.
1.0.5 5,475 11/14/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 8,116 9/20/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 7,382 5/9/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 223,673 3/6/2017 1.0.2 is deprecated because it is no longer maintained.
1.0.1 28,406 12/12/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 382,415 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 36,997 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.