Skip to content

Commit 0a7a8de

Browse files
committed
Fix broken and inconsistent documentation links in IdentityServer v8.0 upgrade guides and related reference docs.
1 parent 2f8ff53 commit 0a7a8de

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

astro/src/content/docs/identityserver/aspnet-identity/schemes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ When a user logs in, their identity is established and persisted across requests
1616

1717
When using IdentityServer without ASP.NET Identity, the default cookie scheme is named `"idsrv"`, though we recommend using the constant `IdentityServerConstants.DefaultCookieAuthenticationScheme` in your code if you ever need it.
1818

19-
Starting in **v8.0**, the default cookie name (not the scheme name) has changed to `"__Host-idsrv"` to improve security. The scheme name remains `"idsrv"`. See [Cookie Name Migration (v8.0)](#cookie-name-migration-v80) below for upgrade instructions.
19+
Starting in **v8.0**, the default cookie name (not the scheme name) has changed to `"__Host-idsrv"` to improve security. The scheme name remains `"idsrv"`. See [Cookie Name Migration (v8.0)](#cookie-name-migration) below for upgrade instructions.
2020

2121
The default cookie scheme is configured by default in `AddIdentityServer()`, which sets up the cookie authentication handler with this scheme name. This cookie is essential for:
2222

@@ -59,7 +59,7 @@ This allows your login logic to read the claims from the external provider befor
5959

6060
IdentityServer always uses the `"idsrv.external"` scheme here, available in the `IdentityServerConstants.ExternalCookieAuthenticationScheme` constant.
6161

62-
Starting in **v8.0**, the default cookie _name_ for this scheme has changed to `"__Host-idsrv.external"` (previously `"idsrv.external"`). See [Cookie Name Migration (v8.0)](#cookie-name-migration-v80) below for upgrade instructions.
62+
Starting in **v8.0**, the default cookie _name_ for this scheme has changed to `"__Host-idsrv.external"` (previously `"idsrv.external"`). See [Cookie Name Migration (v8.0)](#cookie-name-migration) below for upgrade instructions.
6363

6464
### Check Session Cookie
6565

astro/src/content/docs/identityserver/diagnostics/conformance-report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ The HTML report displays:
137137

138138
The conformance report uses `IClientStore.GetAllClientsAsync` to enumerate all clients for
139139
assessment. Custom `IClientStore` implementations must implement this method (added in v8.0).
140-
See the [upgrade guide](/identityserver/upgrades/v7_4-to-v8_0/#iclientstoregettallclientsasync-now-required)
140+
See the [upgrade guide](/identityserver/upgrades/v7_4-to-v8_0.md#iclientstoregetallclientsasync-now-required)
141141
for details.
142142

143143
## Full Example

astro/src/content/docs/identityserver/reference/stores/client-store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ public interface IClientStore
3939

4040
`GetAllClientsAsync` returns all configured clients as an async enumerable. <span data-shb-badge data-shb-badge-variant="default">Added in 8.0 (prerelease)</span>
4141

42-
Used by the [conformance report](/identityserver/diagnostics/conformance-report/) and configuration validation features. Custom `IClientStore` implementations must implement this method — see the [upgrade guide](/identityserver/upgrades/v7_4-to-v8_0/#iclientstoregettallclientsasync-now-required) for details.
42+
Used by the [conformance report](/identityserver/diagnostics/conformance-report/) and configuration validation features. Custom `IClientStore` implementations must implement this method — see the [upgrade guide](/identityserver/upgrades/v7_4-to-v8_0.md#iclientstoregetallclientsasync-now-required) for details.

astro/src/content/docs/identityserver/upgrades/v7_4-to-v8_0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ If you are not using the SAML 2.0 feature, no schema changes are required.
164164
#### Custom Store Implementations
165165

166166
If your IdentityServer implementation uses a custom `IClientStore`, you must add the new
167-
`GetAllClientsAsync` method (see [Breaking Change 4f](#iclientstoregettallclientsasync-now-required)
167+
`GetAllClientsAsync` method (see [Breaking Change](#iclientstoregetallclientsasync-now-required)
168168
below).
169169

170170
#### Duende.IdentityServer.EntityFramework

0 commit comments

Comments
 (0)