IdentityServer4.Contrib.MongoDB 4.0.0-rc.1

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

// Install IdentityServer4.Contrib.MongoDB as a Cake Tool
#tool nuget:?package=IdentityServer4.Contrib.MongoDB&version=4.0.0-rc.1&prerelease

Breaking Changes

v4.0.0

As of IdentityServer v4.0.0 API scopes in the API resource model are now stored as strings. So, it will require a data schema update.

The Scopes property of APIResource object must change:

From:

Scopes =
{
    new Scope()
    {
        Name = "api2.full_access",
        DisplayName = "Full access to API 2"
    },
    new Scope
    {
        Name = "api2.read_only",
        DisplayName = "Read only access to API 2"
    }
}

To:

Scopes =
{
    "api2.full_access",
    "api2.read_only"
}

ApiScope objects are stored in an exclusive colletion inside ConfigurationDbContext.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 was computed.  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. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on IdentityServer4.Contrib.MongoDB:

Package Downloads
Ecoscard.Login.Core.Domain

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on IdentityServer4.Contrib.MongoDB:

Repository Stars
streetwriters/notesnook-sync-server
Sync server for Notesnook (not yet self-hostable)
Version Downloads Last updated
4.0.0-rc.2 11,761 9/20/2020
4.0.0-rc.1 1,000 8/17/2020
2.3.4 10,642 8/2/2020
2.3.3 71,221 3/13/2019
2.3.2 3,475 3/2/2019
2.0.1 19,719 12/2/2017
2.0.0 1,395 11/21/2017

Migration to .NET Core 3.1 and IdentityServer 4.0