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
Changes from 2 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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "IdentityServer4 to Duende IdentityServer v7.2"
title: "IdentityServer4 to Duende IdentityServer v7.3"
sidebar:
order: 138
label: IdentityServer4 → v7.2
Expand All @@ -9,7 +9,7 @@ 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