Skip to content

IdentityServer 7.3 RTM #811

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 14, 2025
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions src/content/docs/identityserver/overview/packaging.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Duende IdentityServer Quickstart UI (UI assets only) duende-is-ui
Duende IdentityServer with ASP.NET Core Identity duende-is-aspid [C#] Web/Duende/IdentityServer
Duende IdentityServer with Entity Framework Stores duende-is-ef [C#] Web/Duende/IdentityServer
Duende IdentityServer with In-Memory Stores and Test Users duende-is-inmem [C#] Web/Duende/IdentityServer
Duende IdentityServer duende-is [C#] Web/Duende/IdentityServer
```

## Template Descriptions
Expand Down Expand Up @@ -233,6 +234,27 @@ The template targets SQLite by default, but we have included scripts to easily s

[Read more about the Entity Framework Core setup here.](/identityserver/data/ef)

### Duende IdentityServer

The Duende IdentityServer template is our most feature-rich offering and a great starting point for developers who want a simple yet effective UI/UX experience.

```bash
dotnet new duende-is
```

The template is built on the Entity Framework Core template but provides an administrative UI for managing clients, scopes, and claims against a database storage engine.
It also has a diagnostics dashboard showing system information, including the licensing tier and features currently used in your IdentityServer deployment.

#### Third-party Dependencies

This template includes several third-party dependencies:

- [Serilog](https://serilog.net/)
- [Bootstrap 5](https://getbootstrap.com)
- [Bootstrap 5 tags](https://github.com/lekoala/bootstrap5-tags)
- [JQuery](https://jquery.org)
- [Entity Framework Core](https://learn.microsoft.com/en-us/ef/core/)

### Duende IdentityServer with ASP.NET Core Identity

The **Duende IdentityServer with ASP.NET Core Identity** template integrates with ASP.NET Identity to
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
title: "IdentityServer4 to Duende IdentityServer v7.2"
title: "IdentityServer4 to Duende IdentityServer v7.3"
sidebar:
order: 138
label: IdentityServer4 → v7.2
label: IdentityServer4 → v7.3
---

import { Code } from "astro/components";
import { Steps } from "@astrojs/starlight/components";
import { Tabs, TabItem } from "@astrojs/starlight/components";

This upgrade guide covers upgrading from IdentityServer4 to Duende IdentityServer v7.2.
This upgrade guide covers upgrading from IdentityServer4 to Duende IdentityServer v7.3.
IdentityServer4 reached its end of life (EOL) on December 13, 2022. It is strongly advised to migrate to Duende IdentityServer.

Depending on your current version of IdentityServer4, different steps may be required.
Expand Down Expand Up @@ -344,14 +344,14 @@ Update the IdentityServer4 dependencies in your IdentityServer host project to D

```diff lang="xml" title=".csproj"
- <PackageReference Include="IdentityServer4" Version="4.1.2" />
+ <PackageReference Include="Duende.IdentityServer" Version="7.2.0" />
+ <PackageReference Include="Duende.IdentityServer" Version="7.3.0" />
```

You'll need to make a similar change for all IdentityServer4 packages, including `IdentityServer4.EntityFramework` and `IdentityServer4.AspNetIdentity`. For example:

```diff lang="xml" title=".csproj"
- <PackageReference Include="IdentityServer4.EntityFramework" Version="4.1.2" />
+ <PackageReference Include="Duende.IdentityServer.EntityFramework" Version="7.2.0" />
+ <PackageReference Include="Duende.IdentityServer.EntityFramework" Version="7.3.0" />
```

The IdentityModel package was renamed to Duende IdentityModel and needs updating if you reference it directly:
Expand Down Expand Up @@ -542,4 +542,4 @@ As part of your upgrade from IdentityServer4 to Duende IdentityServer, we recomm
- [JwtRequestValidator signature changes](https://github.com/DuendeSoftware/IdentityServer/pull/537)
- [Changes in AppAuth URL validator for logout](https://github.com/DuendeSoftware/IdentityServer/pull/619)
- [Use of EmailClaimType option in ASP.NET Identity integration](https://github.com/DuendeSoftware/IdentityServer/pull/625)
- `ClientConfigurationStore` now uses `IConfigurationDbContext` to allow for customization. If you have a customized Entity Framework Core-based store, you may need to update your constructors.
- `ClientConfigurationStore` now uses `IConfigurationDbContext` to allow for customization. If you have a customized Entity Framework Core-based store, you may need to update your constructors.
Loading