Skip to content
This repository has been archived by the owner on Jun 30, 2023. It is now read-only.

ADAL.NET Version 4.5.0

Compare
Choose a tag to compare
@trwalke trwalke released this 15 Jan 00:44
· 137 commits to dev since this release
c527651

Version 4.5.0

New features:

  • Developers can inject an HttpClient via a new AuthenticationContext constructor, allowing better control in scenarios such as setting a proxy

Bug fixes:

  • When using ADAL v4.4.2 and MSAL v2.6 in the same Xamarin project, a Duplicate Java type error was encountered. The Android AuthenticationActivity defined name has been changed and is now distinct from the one in MSAL. ADAL issue
  • When using brokered authentication, if the UID was not present, broker was unable to find the UID in the Android package. Now ADAL sends the UID and package name as part of the broker options so silent authentication with broker works consistently. ADAL PR
  • Fix a bug preventing an access token to be returned from the cache in scenarios involving Android Broker and cross resource access (#1463)
  • Add more logging to the Android broker flow to help investigate customer issues
  • The token cache instance was not available in debug logs. Now the token cache is set from the request object and is available in debug logs. ADAL issue
  • Connection pooling appears broken when using AccessTokens with SQL Azure. Modified cloning of the AdalResult object to do a deep copy instead of serialize/de-serialize ADAL Issue