Skip to content

Commit

Permalink
Merge pull request #556 from DuendeSoftware/7.1.x
Browse files Browse the repository at this point in the history
Add upgrade documentation for IdentityServer v7.1
  • Loading branch information
josephdecock authored Jan 13, 2025
2 parents 5f6bad2 + 221ad56 commit 48d6163
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** package renamed to **Duende.IdentityModel** which may require code updates to referenced namespaces and types.
- *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 48d6163

Please sign in to comment.