From 79bc049ba38dff4f3886ed36d05217d01d23adce Mon Sep 17 00:00:00 2001 From: box-sdk-build Date: Wed, 19 Nov 2025 03:25:38 -0800 Subject: [PATCH 1/2] chore: release version 10.2.0 --- .codegen.json | 2 +- CHANGELOG.md | 16 ++++++++++++++++ build.gradle | 2 +- .../box/sdkgen/networking/version/Version.java | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/.codegen.json b/.codegen.json index 11f973337..dc9db5fa7 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "35c5d34", "specHash": "e7ce024", "version": "10.1.0" } +{ "engineHash": "35c5d34", "specHash": "e7ce024", "version": "10.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 05f4c7a6d..d50bbb008 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ 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.2.0](https://github.com/box/box-java-sdk/compare/v10.1.0...v10.2.0) (2025-11-19) + + +### Bug Fixes + +* Fix parsing `OffsetDateTime` from String (box/box-codegen[#887](https://github.com/box/box-java-sdk/issues/887)) ([#1582](https://github.com/box/box-java-sdk/issues/1582)) ([d1288c4](https://github.com/box/box-java-sdk/commit/d1288c4804b032d5211d664c396e212a08a5775b)) +* Remove enum types from GET enterprise configurations endpoint (box/box-openapi[#560](https://github.com/box/box-java-sdk/issues/560)) ([#1536](https://github.com/box/box-java-sdk/issues/1536)) ([bafe6f6](https://github.com/box/box-java-sdk/commit/bafe6f6c28d40d67399fee554e5900976c60fbc8)) +* update descriptions of the user deletion endpoint (box/box-openapi[#562](https://github.com/box/box-java-sdk/issues/562)) ([#1549](https://github.com/box/box-java-sdk/issues/1549)) ([590ee99](https://github.com/box/box-java-sdk/commit/590ee9964a1cd109ea7f5cca4182cadc10fef21f)) + + +### New Features and Enhancements + +* Add GET enterprise configuration endpoint (box/box-openapi[#559](https://github.com/box/box-java-sdk/issues/559)) ([#1519](https://github.com/box/box-java-sdk/issues/1519)) ([88dd8d2](https://github.com/box/box-java-sdk/commit/88dd8d2867d85ca8fc3b48d2aee61060ef328821)) +* Disable OkHttp auto retries on connection failure (box/box-codegen[#874](https://github.com/box/box-java-sdk/issues/874)) ([#1541](https://github.com/box/box-java-sdk/issues/1541)) ([c2bd137](https://github.com/box/box-java-sdk/commit/c2bd137e469b9e67a14a33bb073107ff5db44175)) +* support update Archive API (box/box-openapi[#563](https://github.com/box/box-java-sdk/issues/563)) ([#1553](https://github.com/box/box-java-sdk/issues/1553)) ([609e8bb](https://github.com/box/box-java-sdk/commit/609e8bb5eb7143281543dcfaada23f2649acae9d)) + ## [10.1.0](https://github.com/box/box-java-sdk/compare/v10.0.0...v10.1.0) (2025-10-06) diff --git a/build.gradle b/build.gradle index b66babc56..7f9726428 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ plugins { } group = "com.box" archivesBaseName = "box-java-sdk" -version = "10.1.0" +version = "10.2.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 4c8218e3c..50d40ba49 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.1.0"; + return "10.2.0"; } } From db939b8980a8a43c1ea563a5473e127bb5d0ef80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Socha?= <31014760+lukaszsocha2@users.noreply.github.com> Date: Wed, 19 Nov 2025 12:29:25 +0100 Subject: [PATCH 2/2] Revise CHANGELOG for clarity and consistency Updated descriptions for several endpoints and fixed formatting issues. --- CHANGELOG.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d50bbb008..c55fc991a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,15 +8,13 @@ All notable changes to this project will be documented in this file. See [standa ### Bug Fixes * Fix parsing `OffsetDateTime` from String (box/box-codegen[#887](https://github.com/box/box-java-sdk/issues/887)) ([#1582](https://github.com/box/box-java-sdk/issues/1582)) ([d1288c4](https://github.com/box/box-java-sdk/commit/d1288c4804b032d5211d664c396e212a08a5775b)) -* Remove enum types from GET enterprise configurations endpoint (box/box-openapi[#560](https://github.com/box/box-java-sdk/issues/560)) ([#1536](https://github.com/box/box-java-sdk/issues/1536)) ([bafe6f6](https://github.com/box/box-java-sdk/commit/bafe6f6c28d40d67399fee554e5900976c60fbc8)) -* update descriptions of the user deletion endpoint (box/box-openapi[#562](https://github.com/box/box-java-sdk/issues/562)) ([#1549](https://github.com/box/box-java-sdk/issues/1549)) ([590ee99](https://github.com/box/box-java-sdk/commit/590ee9964a1cd109ea7f5cca4182cadc10fef21f)) ### New Features and Enhancements -* Add GET enterprise configuration endpoint (box/box-openapi[#559](https://github.com/box/box-java-sdk/issues/559)) ([#1519](https://github.com/box/box-java-sdk/issues/1519)) ([88dd8d2](https://github.com/box/box-java-sdk/commit/88dd8d2867d85ca8fc3b48d2aee61060ef328821)) +* Support GET enterprise configuration API (box/box-openapi[#559](https://github.com/box/box-java-sdk/issues/559)) ([#1519](https://github.com/box/box-java-sdk/issues/1519)) ([88dd8d2](https://github.com/box/box-java-sdk/commit/88dd8d2867d85ca8fc3b48d2aee61060ef328821)) * Disable OkHttp auto retries on connection failure (box/box-codegen[#874](https://github.com/box/box-java-sdk/issues/874)) ([#1541](https://github.com/box/box-java-sdk/issues/1541)) ([c2bd137](https://github.com/box/box-java-sdk/commit/c2bd137e469b9e67a14a33bb073107ff5db44175)) -* support update Archive API (box/box-openapi[#563](https://github.com/box/box-java-sdk/issues/563)) ([#1553](https://github.com/box/box-java-sdk/issues/1553)) ([609e8bb](https://github.com/box/box-java-sdk/commit/609e8bb5eb7143281543dcfaada23f2649acae9d)) +* Support Archive API (box/box-openapi[#563](https://github.com/box/box-java-sdk/issues/563)) ([#1553](https://github.com/box/box-java-sdk/issues/1553)) ([609e8bb](https://github.com/box/box-java-sdk/commit/609e8bb5eb7143281543dcfaada23f2649acae9d)) ## [10.1.0](https://github.com/box/box-java-sdk/compare/v10.0.0...v10.1.0) (2025-10-06)