From b95676dbe7f615a84df75c9e5e6337374131ad86 Mon Sep 17 00:00:00 2001 From: Maarten Balliauw Date: Wed, 2 Jul 2025 06:33:32 +0200 Subject: [PATCH 1/4] Upgrade from IS4 to DISv7 targets 7.3 --- .../identityserver4-to-duende-identityserver-v7.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx b/src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx index 28f732a3..993337c9 100644 --- a/src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx +++ b/src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx @@ -1,15 +1,15 @@ --- -title: "IdentityServer4 to Duende IdentityServer v7.2" +title: "IdentityServer4 to Duende IdentityServer v7.3" sidebar: order: 138 -label: IdentityServer4 → v7.2 +label: IdentityServer4 → v7.3 --- import { Code } from "astro/components"; import { Steps } from "@astrojs/starlight/components"; import { Tabs, TabItem } from "@astrojs/starlight/components"; -This upgrade guide covers upgrading from IdentityServer4 to Duende IdentityServer v7.2. +This upgrade guide covers upgrading from IdentityServer4 to Duende IdentityServer v7.3. IdentityServer4 reached its end of life (EOL) on December 13, 2022. It is strongly advised to migrate to Duende IdentityServer. Depending on your current version of IdentityServer4, different steps may be required. @@ -344,14 +344,14 @@ Update the IdentityServer4 dependencies in your IdentityServer host project to D ```diff lang="xml" title=".csproj" - -+ ++ ``` You'll need to make a similar change for all IdentityServer4 packages, including `IdentityServer4.EntityFramework` and `IdentityServer4.AspNetIdentity`. For example: ```diff lang="xml" title=".csproj" - -+ ++ ``` The IdentityModel package was renamed to Duende IdentityModel and needs updating if you reference it directly: @@ -542,4 +542,4 @@ As part of your upgrade from IdentityServer4 to Duende IdentityServer, we recomm - [JwtRequestValidator signature changes](https://github.com/DuendeSoftware/IdentityServer/pull/537) - [Changes in AppAuth URL validator for logout](https://github.com/DuendeSoftware/IdentityServer/pull/619) - [Use of EmailClaimType option in ASP.NET Identity integration](https://github.com/DuendeSoftware/IdentityServer/pull/625) -- `ClientConfigurationStore` now uses `IConfigurationDbContext` to allow for customization. If you have a customized Entity Framework Core-based store, you may need to update your constructors. \ No newline at end of file +- `ClientConfigurationStore` now uses `IConfigurationDbContext` to allow for customization. If you have a customized Entity Framework Core-based store, you may need to update your constructors. From d36e957efd2deead653bfb77acb85074597d5bad Mon Sep 17 00:00:00 2001 From: Maarten Balliauw Date: Thu, 17 Jul 2025 08:09:23 +0200 Subject: [PATCH 2/4] Update src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx --- .../upgrades/identityserver4-to-duende-identityserver-v7.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx b/src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx index 36b4b9d5..e025fb81 100644 --- a/src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx +++ b/src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx @@ -2,7 +2,7 @@ title: "IdentityServer4 to Duende IdentityServer v7.3" sidebar: order: 138 - label: IdentityServer4 → v7.2 + label: IdentityServer4 → v7.3 --- import { Code } from "astro/components"; From 741d7be43444d3afdc3e60679d1e82b6dece3f96 Mon Sep 17 00:00:00 2001 From: Maarten Balliauw Date: Thu, 7 Aug 2025 13:14:04 +0200 Subject: [PATCH 3/4] Add new template to packaging page (#813) --- .../identityserver/overview/packaging.mdx | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/content/docs/identityserver/overview/packaging.mdx b/src/content/docs/identityserver/overview/packaging.mdx index 1157537a..1e8063b4 100644 --- a/src/content/docs/identityserver/overview/packaging.mdx +++ b/src/content/docs/identityserver/overview/packaging.mdx @@ -63,6 +63,7 @@ Duende IdentityServer Quickstart UI (UI assets only) duende-is-ui Duende IdentityServer with ASP.NET Core Identity duende-is-aspid [C#] Web/Duende/IdentityServer Duende IdentityServer with Entity Framework Stores duende-is-ef [C#] Web/Duende/IdentityServer Duende IdentityServer with In-Memory Stores and Test Users duende-is-inmem [C#] Web/Duende/IdentityServer +Duende IdentityServer duende-is [C#] Web/Duende/IdentityServer ``` ## Template Descriptions @@ -233,6 +234,27 @@ The template targets SQLite by default, but we have included scripts to easily s [Read more about the Entity Framework Core setup here.](/identityserver/data/ef) +### Duende IdentityServer + +The Duende IdentityServer template is our most feature-rich offering and a great starting point for developers who want a simple yet effective UI/UX experience. + +```bash +dotnet new duende-is +``` + +The template is built on the Entity Framework Core template but provides an administrative UI for managing clients, scopes, and claims against a database storage engine. +It also has a diagnostics dashboard showing system information, including the licensing tier and features currently used in your IdentityServer deployment. + +#### Third-party Dependencies + +This template includes several third-party dependencies: + +- [Serilog](https://serilog.net/) +- [Bootstrap 5](https://getbootstrap.com) +- [Bootstrap 5 tags](https://github.com/lekoala/bootstrap5-tags) +- [JQuery](https://jquery.org) +- [Entity Framework Core](https://learn.microsoft.com/en-us/ef/core/) + ### Duende IdentityServer with ASP.NET Core Identity The **Duende IdentityServer with ASP.NET Core Identity** template integrates with ASP.NET Identity to From 7c5553f4c41ae30c800ea7a0f65f8b9fdfce90e3 Mon Sep 17 00:00:00 2001 From: Maarten Balliauw Date: Mon, 11 Aug 2025 16:12:37 +0200 Subject: [PATCH 4/4] Update landing page with quickstart template commandline --- src/content/docs/index.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/content/docs/index.mdx b/src/content/docs/index.mdx index c7b37d5e..a0e2645a 100644 --- a/src/content/docs/index.mdx +++ b/src/content/docs/index.mdx @@ -41,6 +41,8 @@ import Testimonial from "~/components/testimonial.astro"; ```bash title="Terminal" dotnet new install Duende.Templates + dotnet new duende-is -o DuendeIdentityServer + dotnet run --project DuendeIdentityServer ```