diff --git a/.codegen.json b/.codegen.json index e3c7bbf6a..a7b876135 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "733e376", "specHash": "fa34496", "version": "0.1.0" } +{ "engineHash": "733e376", "specHash": "fa34496", "version": "5.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f9f6a94cc..ef8a66298 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ 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.0.0](https://github.com/box/box-java-sdk/compare/v4.16.3...v5.0.0) (2025-10-09) + + +### New Features and Enhancements: + +* Add `Javadoc` comments (box/box-codegen[#839](https://github.com/box/box-java-sdk/issues/839)) ([#1466](https://github.com/box/box-java-sdk/issues/1466)) ([7061aea](https://github.com/box/box-java-sdk/commit/7061aea52287e57dece172012c2c4b15bfb6e651)) +* Add generated SDK (box/box-codegen[#838](https://github.com/box/box-java-sdk/issues/838)) ([#1438](https://github.com/box/box-java-sdk/issues/1438)) ([c7d50d5](https://github.com/box/box-java-sdk/commit/c7d50d580eed1040cd34100655264ec175b5b0e3)) + + +### Bug Fixes: + +* Allow flexible key-value data in `AiExtractResponse.answer` and `Event.additionalDetails` (box/box-openapi[#556](https://github.com/box/box-java-sdk/issues/556)) ([#1472](https://github.com/box/box-java-sdk/issues/1472)) ([0f0671f](https://github.com/box/box-java-sdk/commit/0f0671f260b9c21b9ae77c31eb5619156d16d79a)) +* Make `role` parameter of update collaboration optional (box/box-openapi[#557](https://github.com/box/box-java-sdk/issues/557)) ([#1478](https://github.com/box/box-java-sdk/issues/1478)) ([fe16ace](https://github.com/box/box-java-sdk/commit/fe16acea0805a193a8683b5d8c6b534edf356828)) + ### [4.16.3](https://github.com/box/box-java-sdk/compare/v4.16.2...v4.16.3) (2025-07-23) diff --git a/README.md b/README.md index e0c0ba246..76267a33b 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ The Box Java SDK for interacting with the [Box Content API](https://developers.box.com/docs/). ## Latest Release -Latest release can be found [here](https://github.com/box/box-java-sdk/tree/v4.16.3). +Latest release can be found [here](https://github.com/box/box-java-sdk/tree/v5.0.0). ## Upgrades You can read about how to migrate to the 4 version [here](doc/upgrades/3.x.x%20to%204.x.x.md). diff --git a/build.gradle b/build.gradle index e66a2672a..df4ab195d 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ sourceCompatibility = 1.8 group = "com.box" archivesBaseName = "box-java-sdk" -version = "4.16.3" +version = "5.0.0" java { withJavadocJar() diff --git a/src/main/java/com/box/sdk/BoxAPIConnection.java b/src/main/java/com/box/sdk/BoxAPIConnection.java index b1fb86fb8..78551df6a 100644 --- a/src/main/java/com/box/sdk/BoxAPIConnection.java +++ b/src/main/java/com/box/sdk/BoxAPIConnection.java @@ -88,7 +88,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 = "4.16.3"; + private static final String SDK_VERSION = "5.0.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 f31faab37..247a51835 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 "0.1.0"; + return "5.0.0"; } }