Skip to content

Releases: AccelByte/accelbyte-java-sdk

v0.20.0

27 Sep 22:20
Compare
Choose a tag to compare

For AccelByte Cloud v3.32

Breaking Changes

From Backend (if any)

Please see the corresponding AccelByte Cloud release note in https://docs.accelbyte.io/

See CHANGELOG.md for more information

v0.19.0

12 Sep 04:04
Compare
Choose a tag to compare

For AccelByte Cloud v3.31

Highlights

  • Switch to Maven Central
  • Tic Tac Toe sample app
  • Common use cases docs

Breaking Changes

From Backend (if any)

Please see the corresponding AccelByte Cloud release note in https://docs.accelbyte.io/

See CHANGELOG.md for more information

v0.18.0

30 Aug 03:16
Compare
Choose a tag to compare

For AccelByte Cloud v3.30

Highlights

  • Title Matchmaking sample app
  • Common use cases docs

Breaking Changes

From Backend (if any)

Please see the corresponding AccelByte Cloud release note in https://docs.accelbyte.io/

See CHANGELOG.md for more information

v0.17.0

15 Aug 03:07
Compare
Choose a tag to compare

For AccelByte Cloud v3.29

Breaking Changes

From Backend (if any)

Please see the corresponding AccelByte Cloud release note in https://docs.accelbyte.io/

See CHANGELOG.md for more information

v0.16.0

02 Aug 03:04
Compare
Choose a tag to compare

For AccelByte Cloud v3.28

Highlights

Sample App: OpenID Connect

Breaking Changes

From Backend (if any)

Please see the corresponding AccelByte Cloud release note in https://docs.accelbyte.io/

See CHANGELOG.md for more information

v0.15.0

19 Jul 03:12
Compare
Choose a tag to compare

For AccelByte Cloud v3.27

Highlights

Automatic access token refresh performance improvement

Breaking Changes

From Backend (if any)

Please see the corresponding AccelByte Cloud release note in https://docs.accelbyte.io/

See CHANGELOG.md for more information

v0.14.0

05 Jul 04:55
Compare
Choose a tag to compare

For AccelByte Cloud v3.26

Breaking Changes

From SDK

For operations that uploads files to backend e.g. ImportAchievements, it is now using File instead of InputStream due to memory usage and HTTP retry consideration.

OLD

...
public class ImportAchievements extends Operation {
    ...
    private InputStream file;
    ...

NEW

...
public class ImportAchievements extends Operation {
    ...
    private File file;
    ...

From Backend (if any)

Please see the corresponding AccelByte Cloud release note in https://docs.accelbyte.io/

See CHANGELOG.md for more information

v0.13.0

21 Jun 03:18
Compare
Choose a tag to compare

For AccelByte Cloud v3.25

Highlights

Automatic access token refresh

Breaking Changes

From Backend (if any)

Please see the corresponding AccelByte Cloud release note in https://docs.accelbyte.io/

See CHANGELOG.md for more information

v0.12.0

07 Jun 02:57
Compare
Choose a tag to compare

For AccelByte Cloud v3.24

Breaking Changes

From Backend (if any)

Please see the corresponding AccelByte Cloud release note in https://docs.accelbyte.io/

See CHANGELOG.md for more information

v0.11.0

24 May 03:17
Compare
Choose a tag to compare

For AccelByte Cloud v3.23

Highlights

Http retry feature

Breaking Changes

From SDK

Minor Breaking Change: to support http retry feature, wrapper methods now throw generic Exception

For example:

OLD

public ModelsPaginatedContentDownloadResponse publicSearchContent(PublicSearchContent input) throws HttpResponseException, IOException {

NEW

public ModelsPaginatedContentDownloadResponse publicSearchContent(PublicSearchContent input) throws Exception {

Therefore, some exception handling may need to be adjusted

From Backend (if any)

Please see the corresponding AccelByte Cloud release note in https://docs.accelbyte.io/

See CHANGELOG.md for more information