Releases: AccelByte/accelbyte-java-sdk
v0.20.0
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
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
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
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
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
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
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
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
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
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