Skip to content

Commit

Permalink
Add upgrade documentation for IdentityServer v7.1
Browse files Browse the repository at this point in the history
Updated the upgrade guide to include details for v7.1, highlighting .NET 9 support and minor required code changes. Corrected links and package references to point to the final release.
  • Loading branch information
khalidabuhakmeh committed Jan 9, 2025
1 parent 58b7abc commit 15d8deb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions IdentityServer/v7/docs/content/upgrades/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ changes. Some updates contain changes to the stores used by IdentityServer that
schema updates. If you are using our Entity Framework based stores we recommend using Entity Framework
Migrations.

## Upgrading from version 7.0 to 7.1
IdentityServer v7.1 includes support for **.NET 9** and many other smaller fixes and
enhancements. There are no schema changes needed for IdentityServer 7.1. There are two changes that may require small code changes for a minority of users:
- **IdentityModel** renamed **Duende.IdentityModel**
- *ClientConfigurationStore* now uses *IConfigurationDbContext*

## Upgrading from version 6 to version 7
We recommend upgrading incrementally through each minor version of the 6.x release before upgrading from
6.3 to 7.0. At each step, update the nuget package, apply database schema changes (if any), and check for
Expand Down
4 changes: 2 additions & 2 deletions IdentityServer/v7/docs/content/upgrades/v7.0_to_v7.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ weight: 29

IdentityServer v7.1 includes support for .NET 9 and many other smaller fixes and
enhancements. Please see our [release
notes](https://github.com/DuendeSoftware/IdentityServer/releases/tag/7.1.0-rc.1) for
notes](https://github.com/DuendeSoftware/IdentityServer/releases/tag/7.1.0) for
complete details.

There are no schema changes needed for IdentityServer 7.1. There are two changes that may require small code changes for a minority of users:
Expand Down Expand Up @@ -45,7 +45,7 @@ For example in your project file:
would change to:

```
<PackageReference Include="Duende.IdentityServer" Version="7.1.0-rc.1" />
<PackageReference Include="Duende.IdentityServer" Version="7.1.0" />
```

## Step 3: Breaking Changes
Expand Down

0 comments on commit 15d8deb

Please sign in to comment.