From ba221b2e1da3b0c3082939fcfb6e2be5e0eb573f Mon Sep 17 00:00:00 2001 From: box-sdk-build Date: Wed, 6 May 2026 05:39:41 -0700 Subject: [PATCH 1/2] chore: release version 5.10.0 --- .codegen.json | 2 +- CHANGELOG.md | 12 ++++++++++++ build.gradle | 2 +- src/main/java/com/box/sdk/BoxAPIConnection.java | 2 +- .../com/box/sdkgen/networking/version/Version.java | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.codegen.json b/.codegen.json index 6469635a3..c63584ddc 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "2492c3e", "specHash": "fa39a3f", "version": "5.9.0" } +{ "engineHash": "2492c3e", "specHash": "fa39a3f", "version": "5.10.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3872719c6..3214eadf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ 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.10.0](https://github.com/box/box-java-sdk/compare/v5.9.0...v5.10.0) (2026-05-06) + + +### ⚠ BREAKING CHANGES + +* **boxsdkgen:** Mark `id` field of `AIAgentReference` required (box/box-openapi#1629) (box/box-openapi#595) (#1826) + +### Bug Fixes: + +* **boxsdkgen:** Fix metadata template schema (box/box-openapi[#596](https://github.com/box/box-java-sdk/issues/596)) ([#1829](https://github.com/box/box-java-sdk/issues/1829)) ([9b51193](https://github.com/box/box-java-sdk/commit/9b511934e70e93beeb0b5c5d4c66d4aba43077c0)) +* **boxsdkgen:** Mark `id` field of `AIAgentReference` required (box/box-openapi[#1629](https://github.com/box/box-java-sdk/issues/1629)) (box/box-openapi[#595](https://github.com/box/box-java-sdk/issues/595)) ([#1826](https://github.com/box/box-java-sdk/issues/1826)) ([7109d88](https://github.com/box/box-java-sdk/commit/7109d8810b8ca916d50cf00a5ac024d9d28f9f31)) + ## [5.9.0](https://github.com/box/box-java-sdk/compare/v5.8.0...v5.9.0) (2026-04-30) diff --git a/build.gradle b/build.gradle index 779fa1662..8c41b5204 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ sourceCompatibility = 1.8 group = "com.box" archivesBaseName = "box-java-sdk" -version = "5.9.0" +version = "5.10.0" java { withJavadocJar() diff --git a/src/main/java/com/box/sdk/BoxAPIConnection.java b/src/main/java/com/box/sdk/BoxAPIConnection.java index e6e95ae82..ea6c0db94 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.9.0"; + private static final String SDK_VERSION = "5.10.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 e7a7479b4..023bd3368 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.9.0"; + return "5.10.0"; } } From 26478b239d6bb6179549146574858222d25a086f Mon Sep 17 00:00:00 2001 From: Artur Jankowski Date: Wed, 6 May 2026 14:40:48 +0200 Subject: [PATCH 2/2] Update CHANGELOG with breaking changes and bug fixes --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3214eadf9..36852c264 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file. See [standa ### ⚠ BREAKING CHANGES -* **boxsdkgen:** Mark `id` field of `AIAgentReference` required (box/box-openapi#1629) (box/box-openapi#595) (#1826) +* **boxsdkgen:** Mark `id` field of `AIAgentReference` required (box/box-openapi[#1629](https://github.com/box/box-java-sdk/issues/1629)) (box/box-openapi[#595](https://github.com/box/box-java-sdk/issues/595)) ([#1826](https://github.com/box/box-java-sdk/issues/1826)) ([7109d88](https://github.com/box/box-java-sdk/commit/7109d8810b8ca916d50cf00a5ac024d9d28f9f31)) ### Bug Fixes: