From 010fa7692ecbab278b93927e9d6a68db0501c0a4 Mon Sep 17 00:00:00 2001 From: box-sdk-build Date: Thu, 11 Jun 2026 02:32:12 -0700 Subject: [PATCH] chore: release version 10.14.0 --- .codegen.json | 2 +- CHANGELOG.md | 9 +++++++++ build.gradle | 2 +- .../java/com/box/sdkgen/networking/version/Version.java | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.codegen.json b/.codegen.json index 6d63a8f22..3a498ab8f 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "e392e8c", "specHash": "dd7f7a9", "version": "10.13.0" } +{ "engineHash": "e392e8c", "specHash": "dd7f7a9", "version": "10.14.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cc042e9ec..f8693fdde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ 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. +## [10.14.0](https://github.com/box/box-java-sdk/compare/v10.13.0...v10.14.0) (2026-06-11) + + +### New Features and Enhancements + +* Add new event types (box/box-openapi[#1703](https://github.com/box/box-java-sdk/issues/1703)) (box/box-openapi[#605](https://github.com/box/box-java-sdk/issues/605)) ([#1889](https://github.com/box/box-java-sdk/issues/1889)) ([1747b14](https://github.com/box/box-java-sdk/commit/1747b14eac8ae1b4a96e1da2602d9e6894d6b4ee)) +* Add new parameters to ai extract structured method (box/box-openapi[#604](https://github.com/box/box-java-sdk/issues/604)) ([#1888](https://github.com/box/box-java-sdk/issues/1888)) ([09c342f](https://github.com/box/box-java-sdk/commit/09c342f5979f0bdb1a93c822273638aa0e60dbdf)) +* Expose `errorCode` in sign request schemas (box/box-openapi[#601](https://github.com/box/box-java-sdk/issues/601)) ([#1887](https://github.com/box/box-java-sdk/issues/1887)) ([70dc787](https://github.com/box/box-java-sdk/commit/70dc787c16f096070428af8e2caa02be3ba6fcc0)) + ## [10.13.0](https://github.com/box/box-java-sdk/compare/v10.12.0...v10.13.0) (2026-06-03) diff --git a/build.gradle b/build.gradle index 09c113c4a..8353021e5 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ plugins { } group = "com.box" archivesBaseName = "box-java-sdk" -version = "10.13.0" +version = "10.14.0" java { sourceCompatibility = JavaVersion.toVersion(libraryJavaVersion) targetCompatibility = JavaVersion.toVersion(libraryJavaVersion) 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 7723b26a0..03094553e 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 "10.13.0"; + return "10.14.0"; } }