Skip to content

Commit 7b1a130

Browse files
committed
chore: release version 5.0.0
1 parent 3a02d44 commit 7b1a130

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

.codegen.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "engineHash": "733e376", "specHash": "fa34496", "version": "0.1.0" }
1+
{ "engineHash": "733e376", "specHash": "fa34496", "version": "5.0.0" }

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
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-09)
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+
* 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))
18+
519
### [4.16.3](https://github.com/box/box-java-sdk/compare/v4.16.2...v4.16.3) (2025-07-23)
620

721

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The Box Java SDK for interacting with the
2121
[Box Content API](https://developers.box.com/docs/).
2222

2323
## Latest Release
24-
Latest release can be found [here](https://github.com/box/box-java-sdk/tree/v4.16.3).
24+
Latest release can be found [here](https://github.com/box/box-java-sdk/tree/v5.0.0).
2525

2626
## Upgrades
2727
You can read about how to migrate to the 4 version [here](doc/upgrades/3.x.x%20to%204.x.x.md).

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.3"
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
@@ -88,7 +88,7 @@ public class BoxAPIConnection {
8888
private static final String BOX_NOTIFICATIONS_HEADER = "Box-Notifications";
8989

9090
private static final String JAVA_VERSION = System.getProperty("java.version");
91-
private static final String SDK_VERSION = "4.16.3";
91+
private static final String SDK_VERSION = "5.0.0";
9292

9393
/**
9494
* 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)