Skip to content

Commit f2f76a2

Browse files
committed
chore: release version 5.0.0
1 parent e5e05bb commit f2f76a2

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": "dec2966", "specHash": "fa34496", "version": "0.1.0" }
1+
{ "engineHash": "dec2966", "specHash": "fa34496", "version": "5.0.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.0.0](https://github.com/box/box-java-sdk/compare/v4.16.3...v5.0.0) (2025-10-23)
6+
7+
8+
### New Features and Enhancements:
9+
10+
* 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))
11+
* 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))
12+
13+
14+
### Bug Fixes:
15+
16+
* 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))
17+
* **boxsdkgen:** Use `FolderFull` in `Item` (box/box-codegen[#860](https://github.com/box/box-java-sdk/issues/860)) ([#1501](https://github.com/box/box-java-sdk/issues/1501)) ([5175f46](https://github.com/box/box-java-sdk/commit/5175f4617d79635957c13ccfe5bdec922a46f4ae))
18+
* 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))
19+
520
### [4.16.4](https://github.com/box/box-java-sdk/compare/v4.16.3...v4.16.4) (2025-10-03)
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 = "4.16.4"
18+
version = "5.0.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 = "4.16.4";
94+
private static final String SDK_VERSION = "5.0.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 "0.1.0";
6+
return "5.0.0";
77
}
88
}

0 commit comments

Comments
 (0)