Skip to content

Commit 1d958b3

Browse files
chore: release version 5.4.0 (#1722)
1 parent f838a35 commit 1d958b3

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

.codegen.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "engineHash": "bfb97cc", "specHash": "77eac4b", "version": "5.3.0" }
1+
{ "engineHash": "bfb97cc", "specHash": "77eac4b", "version": "5.4.0" }

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
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.
44

5+
## [5.4.0](https://github.com/box/box-java-sdk/compare/v5.3.0...v5.4.0) (2026-02-11)
6+
7+
8+
### Bug Fixes:
9+
10+
* **boxsdkgen:** Correct enum value for legal hold policy changes (box/box-openapi[#581](https://github.com/box/box-java-sdk/issues/581)) ([#1694](https://github.com/box/box-java-sdk/issues/1694)) ([4620812](https://github.com/box/box-java-sdk/commit/46208121ea5db23562b0b3c2875a0e24d12bff97))
11+
* **boxsdkgen:** Move assigning default values from builder constructor to `build()` method (box/box-codegen[#922](https://github.com/box/box-java-sdk/issues/922)) ([#1712](https://github.com/box/box-java-sdk/issues/1712)) ([aa962a0](https://github.com/box/box-java-sdk/commit/aa962a07fda8847b4beb3a0d4bac504bd13f3cb5))
12+
13+
14+
### New Features and Enhancements:
15+
16+
* **boxsdkgen:** add confidence scores for structured extract (box/box-openapi[#582](https://github.com/box/box-java-sdk/issues/582)) ([#1696](https://github.com/box/box-java-sdk/issues/1696)) ([241b5f2](https://github.com/box/box-java-sdk/commit/241b5f22ee2b62cc8bda6166cc8c47f98bfd5eca))
17+
* **boxsdkgen:** add signer language, cancel sign request reason (box/box-openapi[#584](https://github.com/box/box-java-sdk/issues/584)) ([#1720](https://github.com/box/box-java-sdk/issues/1720)) ([f838a35](https://github.com/box/box-java-sdk/commit/f838a35286768d7a551b5053780b245a4bfb85c4))
18+
* **boxsdkgen:** Add watermarking permissions and sources information (box/box-openapi[#579](https://github.com/box/box-java-sdk/issues/579)) ([#1686](https://github.com/box/box-java-sdk/issues/1686)) ([d13c98b](https://github.com/box/box-java-sdk/commit/d13c98bb5caaada6fc819e964538edb9c79986e8))
19+
520
## [5.3.0](https://github.com/box/box-java-sdk/compare/v5.2.0...v5.3.0) (2025-12-19)
621

722

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ sourceCompatibility = 1.8
1515

1616
group = "com.box"
1717
archivesBaseName = "box-java-sdk"
18-
version = "5.3.0"
18+
version = "5.4.0"
1919

2020
java {
2121
withJavadocJar()

src/main/java/com/box/sdk/BoxAPIConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public class BoxAPIConnection {
9191
private static final String BOX_NOTIFICATIONS_HEADER = "Box-Notifications";
9292

9393
private static final String JAVA_VERSION = System.getProperty("java.version");
94-
private static final String SDK_VERSION = "5.3.0";
94+
private static final String SDK_VERSION = "5.4.0";
9595

9696
/**
9797
* The amount of buffer time, in milliseconds, to use when determining if an access token should

src/main/java/com/box/sdkgen/networking/version/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
public class Version {
44

55
public static String getVersion() {
6-
return "5.3.0";
6+
return "5.4.0";
77
}
88
}

0 commit comments

Comments
 (0)