diff --git a/.codegen.json b/.codegen.json index 938c46fc8..8eafa3a06 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "51c2138", "specHash": "f8e0d99", "version": "5.6.0" } +{ "engineHash": "51c2138", "specHash": "f8e0d99", "version": "5.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 47c4ac4f4..31c1318c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [5.7.0](https://github.com/box/box-java-sdk/compare/v5.6.0...v5.7.0) (2026-04-16) + + +### New Features and Enhancements: + +* **boxsdkgen:** Update `retentionLength` field to accept both string and integer (box/box-codegen#932) (#1775) + +### Bug Fixes: + +* **boxsdkgen:** Fix error propagation in Java (box/box-codegen[#936](https://github.com/box/box-java-sdk/issues/936)) ([#1779](https://github.com/box/box-java-sdk/issues/1779)) ([1725293](https://github.com/box/box-java-sdk/commit/1725293c4d9a84cca56ca683b717a4df2915c7d7)) +* **boxsdkgen:** Fix serialization of `OffsetDateTime` (box/box-codegen[#935](https://github.com/box/box-java-sdk/issues/935)) ([#1777](https://github.com/box/box-java-sdk/issues/1777)) ([2c17bb2](https://github.com/box/box-java-sdk/commit/2c17bb242d05d2b982d03bf6d6dfd7c584523ca9)) +* **boxsdkgen:** Update `retentionLength` field to accept both string and integer (box/box-codegen[#932](https://github.com/box/box-java-sdk/issues/932)) ([#1775](https://github.com/box/box-java-sdk/issues/1775)) ([9eb6755](https://github.com/box/box-java-sdk/commit/9eb675591cfada8b8a37c799aa3303065d65b39c)) + ## [5.6.0](https://github.com/box/box-java-sdk/compare/v5.5.0...v5.6.0) (2026-04-01) diff --git a/build.gradle b/build.gradle index 4f509fd04..5a1d867fb 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ sourceCompatibility = 1.8 group = "com.box" archivesBaseName = "box-java-sdk" -version = "5.6.0" +version = "5.7.0" java { withJavadocJar() diff --git a/src/main/java/com/box/sdk/BoxAPIConnection.java b/src/main/java/com/box/sdk/BoxAPIConnection.java index 6bace4934..3d0818b3a 100644 --- a/src/main/java/com/box/sdk/BoxAPIConnection.java +++ b/src/main/java/com/box/sdk/BoxAPIConnection.java @@ -91,7 +91,7 @@ public class BoxAPIConnection { private static final String BOX_NOTIFICATIONS_HEADER = "Box-Notifications"; private static final String JAVA_VERSION = System.getProperty("java.version"); - private static final String SDK_VERSION = "5.6.0"; + private static final String SDK_VERSION = "5.7.0"; /** * The amount of buffer time, in milliseconds, to use when determining if an access token should diff --git a/src/main/java/com/box/sdkgen/networking/version/Version.java b/src/main/java/com/box/sdkgen/networking/version/Version.java index 20974ddaa..051808656 100644 --- a/src/main/java/com/box/sdkgen/networking/version/Version.java +++ b/src/main/java/com/box/sdkgen/networking/version/Version.java @@ -3,6 +3,6 @@ public class Version { public static String getVersion() { - return "5.6.0"; + return "5.7.0"; } }