This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
Releases: dragonfruitnetwork/dragon6-api
Releases · dragonfruitnetwork/dragon6-api
2022.1222
Breaking Changes
See #349
What's Changed
- Add client ids by @aspriddell in #346
- Update ranked api by @aspriddell in #349
- Cleanup unit tests by @aspriddell in #350
- Remove account activity by @aspriddell in #352
Full Changelog: 2022.1207.1...2022.1222
2022.1207.1
Full Changelog: 2022.1207...2022.1207.1
2022.1207
What's Changed
- Update publish workflow by @aspriddell in #340
- Season updates by @aspriddell in #339
Full Changelog: 2022.1206...2022.1207
2022.1206
2022.1022
What's Changed
- Bump Microsoft.NET.Test.Sdk from 17.3.0 to 17.3.2 by @dependabot in #330
- add refetch logic to tokens by @aspriddell in #331
- update data framework by @aspriddell in #332
Full Changelog: 2022.829...2022.1022
2022.829
What's Changed
- Fix ubi urls by @aspriddell in #326
Breaking changes
- Modern stats trend responses now contain less categories but provide multiple plot points to consume, check #326 for more info
Full Changelog: 2022.816...2022.829
2022.816
What's Changed
- Bump Microsoft.NET.Test.Sdk from 17.2.0 to 17.3.0 by @dependabot in #324
- update client token injection to be accessible outside of the library by @aspriddell in #325
Full Changelog: 2022.801...2022.816
2022.801
Breaking Changes
GetToken()
now returns aTask
(instead ofValueTask
), and has a string parameter containing the last session id (which can be null):
protected override async Task<IUbisoftToken> GetToken(string lastSessionId)
{
return await getToken().ConfigureAwait(false);
}
What's Changed
- change method signature to accept a sessionid and a task over valuetask by @aspriddell in #322
- Add geolocation api by @aspriddell in #323
Full Changelog: 2022.702...2022.801
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
2022.521
What's Changed
- Bump Microsoft.NET.Test.Sdk from 17.1.0 to 17.2.0 by @dependabot in #316
- specify primary keys for modern operator info by @aspriddell in #317
Full Changelog: 2022.424...2022.521