|
1 | 1 | ---
|
2 |
| -title: "IdentityServer4 to Duende IdentityServer v7.2" |
| 2 | +title: "IdentityServer4 to Duende IdentityServer v7.3" |
3 | 3 | sidebar:
|
4 | 4 | order: 138
|
5 |
| -label: IdentityServer4 → v7.2 |
| 5 | +label: IdentityServer4 → v7.3 |
6 | 6 | ---
|
7 | 7 |
|
8 | 8 | import { Code } from "astro/components";
|
9 | 9 | import { Steps } from "@astrojs/starlight/components";
|
10 | 10 | import { Tabs, TabItem } from "@astrojs/starlight/components";
|
11 | 11 |
|
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. |
13 | 13 | IdentityServer4 reached its end of life (EOL) on December 13, 2022. It is strongly advised to migrate to Duende IdentityServer.
|
14 | 14 |
|
15 | 15 | 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
|
344 | 344 |
|
345 | 345 | ```diff lang="xml" title=".csproj"
|
346 | 346 | - <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" /> |
348 | 348 | ```
|
349 | 349 |
|
350 | 350 | You'll need to make a similar change for all IdentityServer4 packages, including `IdentityServer4.EntityFramework` and `IdentityServer4.AspNetIdentity`. For example:
|
351 | 351 |
|
352 | 352 | ```diff lang="xml" title=".csproj"
|
353 | 353 | - <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" /> |
355 | 355 | ```
|
356 | 356 |
|
357 | 357 | 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
|
542 | 542 | - [JwtRequestValidator signature changes](https://github.com/DuendeSoftware/IdentityServer/pull/537)
|
543 | 543 | - [Changes in AppAuth URL validator for logout](https://github.com/DuendeSoftware/IdentityServer/pull/619)
|
544 | 544 | - [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