Skip to content

Commit b95676d

Browse files
committed
Upgrade from IS4 to DISv7 targets 7.3
1 parent 616bb30 commit b95676d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: "IdentityServer4 to Duende IdentityServer v7.2"
2+
title: "IdentityServer4 to Duende IdentityServer v7.3"
33
sidebar:
44
order: 138
5-
label: IdentityServer4 → v7.2
5+
label: IdentityServer4 → v7.3
66
---
77

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

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

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

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

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

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

357357
The IdentityModel package was renamed to Duende IdentityModel and needs updating if you reference it directly:
@@ -542,4 +542,4 @@ As part of your upgrade from IdentityServer4 to Duende IdentityServer, we recomm
542542
- [JwtRequestValidator signature changes](https://github.com/DuendeSoftware/IdentityServer/pull/537)
543543
- [Changes in AppAuth URL validator for logout](https://github.com/DuendeSoftware/IdentityServer/pull/619)
544544
- [Use of EmailClaimType option in ASP.NET Identity integration](https://github.com/DuendeSoftware/IdentityServer/pull/625)
545-
- `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.
545+
- `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.

0 commit comments

Comments
 (0)