This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
2022.702
Breaking Changes
- Any
ApiRequests
made that use theOnRequestExecuting
need to inheritIRequestExecutingCallback
. If you wish to use async methods, useIAsyncRequestExecutingCallback
instead. - The
RequestAccessToken
method now returns aValueTask<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
- Update data library by @aspriddell in #318
Full Changelog: 2022.521...2022.702