From 15d8debd5290eb43054967c2c4ad60425aa75476 Mon Sep 17 00:00:00 2001 From: khalidabuhakmeh Date: Thu, 9 Jan 2025 14:21:53 -0500 Subject: [PATCH 1/2] Add upgrade documentation for IdentityServer v7.1 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. --- IdentityServer/v7/docs/content/upgrades/_index.md | 6 ++++++ IdentityServer/v7/docs/content/upgrades/v7.0_to_v7.1.md | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/IdentityServer/v7/docs/content/upgrades/_index.md b/IdentityServer/v7/docs/content/upgrades/_index.md index 7d05d365..fec820bb 100644 --- a/IdentityServer/v7/docs/content/upgrades/_index.md +++ b/IdentityServer/v7/docs/content/upgrades/_index.md @@ -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 diff --git a/IdentityServer/v7/docs/content/upgrades/v7.0_to_v7.1.md b/IdentityServer/v7/docs/content/upgrades/v7.0_to_v7.1.md index 14a9f818..75034c26 100644 --- a/IdentityServer/v7/docs/content/upgrades/v7.0_to_v7.1.md +++ b/IdentityServer/v7/docs/content/upgrades/v7.0_to_v7.1.md @@ -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: @@ -45,7 +45,7 @@ For example in your project file: would change to: ``` - + ``` ## Step 3: Breaking Changes From 221ad5680f1b3125e358fdbb74eedb9f496ce8fb Mon Sep 17 00:00:00 2001 From: khalidabuhakmeh Date: Thu, 9 Jan 2025 14:21:53 -0500 Subject: [PATCH 2/2] Update upgrade guide for IdentityServer v7.1 Revised the documentation to reflect changes in v7.1, including support for .NET 9 and minor adjustments to package names and dependencies. Clarified potential code updates to assist developers in transitioning smoothly. --- IdentityServer/v7/docs/content/upgrades/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IdentityServer/v7/docs/content/upgrades/_index.md b/IdentityServer/v7/docs/content/upgrades/_index.md index fec820bb..393b4817 100644 --- a/IdentityServer/v7/docs/content/upgrades/_index.md +++ b/IdentityServer/v7/docs/content/upgrades/_index.md @@ -14,8 +14,8 @@ 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* +- **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