From 66ff85621828afbfca93556df4494dbf5a497347 Mon Sep 17 00:00:00 2001 From: jennyf19 Date: Fri, 1 Nov 2024 15:16:53 -0700 Subject: [PATCH 1/2] Update changelog.md 3.3.1 --- changelog.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/changelog.md b/changelog.md index 027f1f67a..b73839064 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,15 @@ +3.3.1 +======== +- Updated to Microsoft.Identity.Model.* 8.2.0 + +### Supportability +- Added JSON schema support for Microsoft.Identity.Web configuration. This allows for schema validation in the `appsettings.json`, improving configuration accuracy and developer experience. To use it, add the following at the top of your appsettings.json: +`"$schema": "https://raw.githubusercontent.com/AzureAD/microsoft-identity-web/refs/heads/jmprieur/jsonschema/JsonSchemas/microsoft-identity-web.json"` +This update enhances the configuration process by providing clear structure and validation for settings used in Microsoft.Identity.Web. See PR [#3119](https://github.com/AzureAD/microsoft-identity-web/pull/3119) for details. + +### Fundamentals +- Fix a flaky test in the L1L2Cache tests. See PR [#3122](https://github.com/AzureAD/microsoft-identity-web/pull/3122) for details. + 3.3.0 ======== - Updated to Microsoft.Identity.Client 4.66.0 From a99edd98b07c63dd66a80c761f16c14b769be9c6 Mon Sep 17 00:00:00 2001 From: Jenny Ferries Date: Fri, 1 Nov 2024 16:12:16 -0700 Subject: [PATCH 2/2] PR feedback --- changelog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index b73839064..e90aa394f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,10 +1,10 @@ 3.3.1 ======== -- Updated to Microsoft.Identity.Model.* 8.2.0 +- Updated to Microsoft.IdentityModel.* 8.2.0 ### Supportability - Added JSON schema support for Microsoft.Identity.Web configuration. This allows for schema validation in the `appsettings.json`, improving configuration accuracy and developer experience. To use it, add the following at the top of your appsettings.json: -`"$schema": "https://raw.githubusercontent.com/AzureAD/microsoft-identity-web/refs/heads/jmprieur/jsonschema/JsonSchemas/microsoft-identity-web.json"` +`"$schema": "https://github.com/AzureAD/microsoft-identity-web/blob/master/JsonSchemas/microsoft-identity-web.json"` This update enhances the configuration process by providing clear structure and validation for settings used in Microsoft.Identity.Web. See PR [#3119](https://github.com/AzureAD/microsoft-identity-web/pull/3119) for details. ### Fundamentals