Skip to content

Commit b24d5f1

Browse files
authored
Merge pull request #622 from DuendeSoftware/7.2.0-release-upgrade
Add upgrade guide for Duende IdentityServer v7.1 to v7.2
2 parents ec9b887 + 353aa8e commit b24d5f1

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: "Duende IdentityServer v7.1 to v7.2"
3+
weight: 28
4+
---
5+
6+
This upgrade guide covers upgrading from Duende IdentityServer v7.1 to v7.2 ([release notes](https://github.com/DuendeSoftware/IdentityServer/releases/tag/7.2.0)).
7+
8+
## What's New
9+
Duende IdentityServer 7.2 adds:
10+
- Do not issue *TokenIssuedFailureEvent* for *use_dpop_nonce* error
11+
- Use *AsyncServiceScope* in Background Services
12+
- Use query-safe URL fragment when returning an error
13+
- Add an option for strict validation of assertion audiences
14+
- General improvements to XML documentation and null reference exception handling
15+
- Preview Features: Strict Audience Validation and Discovery Document Caching
16+
- Bug fixes and ongoing maintenance
17+
18+
There are no changes to the data stores in this release.
19+
20+
## Step 1: Update NuGet package
21+
22+
In your IdentityServer host project, update the version of the NuGet.
23+
For example in your project file:
24+
25+
```
26+
<PackageReference Include="Duende.IdentityServer" Version="7.1.0" />
27+
```
28+
29+
would change to:
30+
31+
```
32+
<PackageReference Include="Duende.IdentityServer" Version="7.2.0" />
33+
```
34+
35+
36+
## Step 2: Done!
37+
38+
That's it. Of course, at this point you can and should test that your IdentityServer is updated and working properly.

0 commit comments

Comments
 (0)