Skip to content
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

Add upgrade documentation for IdentityServer v7.1 #556

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
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
Loading