Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

2022.702

Compare
Choose a tag to compare
@aspriddell aspriddell released this 02 Jul 17:07
· 150 commits to master since this release
050c575

Breaking Changes

  • Any ApiRequests made that use the OnRequestExecuting need to inherit IRequestExecutingCallback. If you wish to use async methods, use IAsyncRequestExecutingCallback instead.
  • The RequestAccessToken method now returns a ValueTask<IUbisoftToken>. Migration should be simple to do - change the GetToken to match the signature below and use async methods to source your token:
protected override async ValueTask<IUbisoftToken> GetToken()
{
      return await getToken().ConfigureAwait(false);
}

What's Changed

Full Changelog: 2022.521...2022.702