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

Releases: dragonfruitnetwork/dragon6-api

2022.1222

22 Dec 17:32
2ec7d10
Compare
Choose a tag to compare

Breaking Changes

See #349

What's Changed

Full Changelog: 2022.1207.1...2022.1222

2022.1207.1

07 Dec 09:26
1893003
Compare
Choose a tag to compare

2022.1207

07 Dec 08:31
b48113c
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2022.1206...2022.1207

2022.1206

06 Dec 19:49
b3c5200
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2022.1022...2022.1206

2022.1022

22 Oct 12:51
e5f926a
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2022.829...2022.1022

2022.829

29 Aug 17:40
2effaa1
Compare
Choose a tag to compare

What's Changed

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

16 Aug 11:33
4af9211
Compare
Choose a tag to compare

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

01 Aug 13:54
4ec639d
Compare
Choose a tag to compare

Breaking Changes

  • GetToken() now returns a Task (instead of ValueTask), 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

Full Changelog: 2022.702...2022.801

2022.702

02 Jul 17:07
050c575
Compare
Choose a tag to compare

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

2022.521

21 May 13:12
d8e8309
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2022.424...2022.521