4.61.0
版本发布时间: 2024-05-10 04:33:31
AzureAD/microsoft-authentication-library-for-dotnet最新发布版本:4.65.2-Preview(2024-10-01 16:00:30)
4.61.0
New Features
- Removed support for deprecated frameworks, Xamarin.Android 12 and Xamarin.iOS 10. MSAL.NET packages will no longer include
monoandroid12.0
andxamarinios10
binaries. Existing applications should migrate to modern frameworks like .NET MAUI. See 4715 and Announcing the Upcoming Deprecation of MSAL.NET for Xamarin and UWP. - Removed support for UWP. MSAL.NET packages will no longer include
uap10.0.17763
binary. Existing applications should migrate to modern frameworks like WinUI 3. See 4717 and Announcing the Upcoming Deprecation of MSAL.NET for Xamarin and UWP. - Removed Windows Forms dependency from
Microsoft.Identity.Client
, which will no longer includenet6.0-windows7.0
binary. Existing desktop applications targetingnet6.0-windows
should referenceMicrosoft.Identity.Client.Broker
when using interactive authentication with Windows Broker and callWithBroker(BrokerOptions)
; or referenceMicrosoft.Identity.Client.Desktop
when authenticating with browser and callWithWindowsEmbeddedBrowserSupport()
. There are no changes to the usage of the system browser. See 4468. - Re-enabled the use of SHA 256 and PSS padding to create client assertions. See 4695.
Bug Fixes
- Public methods in Kerberos
TicketCacheWriter
andTicketCacheReader
were corrected to be internal. Public API inKerberosSupplementalTicketManager
should be used. See #4726.