You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The release notes made no mention of this, and since it was a non-major version, this seemed safe to upgrade. We only have unit tests in our project, so we didn't get this in our builds.
Relevant code snippets
My code was basically:
using Microsoft.Identity.Client;using Microsoft.Identity.Client.Extensions.Msal;
...
var app = PublicClientApplicationBuilder
.Create(ClientId).WithDefaultRedirectUri().WithBroker().WithParentActivityOrWindow(Helpers.NativeMethods.GetConsoleOrTerminalWindow).Build();
That was using the Boolean overload of the WithBroker method.
Expected behavior
No breaking change!
Identity provider
Microsoft Entra ID (Work and School accounts and Personal Microsoft accounts)
Library version used
4.61.0
.NET version
net8.0-windows10.0.17763.0
Scenario
PublicClient - desktop app
Is this a new or an existing app?
The app is in production, and I have upgraded to a new version of MSAL
Issue description and reproduction steps
Upgrading to non-major versions of MSAL.Net should not have breaking changes, and 4.61.0 had a breaking change.
Upgrading to 4.61.0, we then got this reported:
microsoft/msstore-cli#38
The release notes made no mention of this, and since it was a non-major version, this seemed safe to upgrade. We only have unit tests in our project, so we didn't get this in our builds.
Relevant code snippets
My code was basically:
That was using the Boolean overload of the WithBroker method.
Expected behavior
No breaking change!
Identity provider
Microsoft Entra ID (Work and School accounts and Personal Microsoft accounts)
Regression
4.60.3
Solution and workarounds
Actually upgrade to 4.61.0:
microsoft/msstore-cli@9bf51e9
The text was updated successfully, but these errors were encountered: