From 0106ea416614e99d874113a57b289b0070767d39 Mon Sep 17 00:00:00 2001 From: Jean-Marc Prieur Date: Wed, 30 Oct 2024 09:22:12 -0700 Subject: [PATCH] Update changelog.md to fix release 3.2.2 which had a breaking change (#3116) * Update changelog.md * Update changelog.md Co-authored-by: kellyyangsong <69649063+kellyyangsong@users.noreply.github.com> * Update changelog.md --------- Co-authored-by: kellyyangsong <69649063+kellyyangsong@users.noreply.github.com> --- changelog.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 035b046dd..027f1f67a 100644 --- a/changelog.md +++ b/changelog.md @@ -17,7 +17,14 @@ 3.2.2 ========= - Updated to Microsoft.IdentityModel.* 8.1.2 - +- **Breaking change** (without major version change. Sorry!) + [ClientAssertionProviderBase.GetSignedAssertion](https://github.com/AzureAD/microsoft-identity-web/blob/195328cc509e3d964bb47f1877a8946b6f136f81/src/Microsoft.Identity.Web.Certificateless/ManagedIdentityClientAssertion.cs#L79) now takes an MSAL.NET AssertionRequestOptions and the method name has changed from `GetSignedAssertion` to `GetClientAssertionAsync`: + + ```csharp + var m = new ManagedIdentityClientAssertion(""); + m.GetSignedAssertion(CancellationToken.None); // this method will break on v3.2.2 + ``` + 3.2.1 ========= - Updated to Microsoft.IdentityModel.* 8.1.1