Skip to content

Commit 942aa67

Browse files
chore: release version 5.1.0 (#1583)
1 parent 4f9e1b3 commit 942aa67

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

.codegen.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "engineHash": "35c5d34", "specHash": "e7ce024", "version": "5.0.0" }
1+
{ "engineHash": "35c5d34", "specHash": "e7ce024", "version": "5.1.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.1.0](https://github.com/box/box-java-sdk/compare/v5.0.0...v5.1.0) (2025-11-19)
6+
7+
8+
### New Features and Enhancements:
9+
10+
* **boxsdkgen:** Support GET enterprise configuration API (box/box-openapi[#559](https://github.com/box/box-java-sdk/issues/559)) ([#1529](https://github.com/box/box-java-sdk/issues/1529)) ([e6924bb](https://github.com/box/box-java-sdk/commit/e6924bb758bd34177706a1b6e04eeba2b57f92d4))
11+
* **boxsdkgen:** Disable OkHttp auto retries on connection failure (box/box-codegen[#874](https://github.com/box/box-java-sdk/issues/874)) ([#1540](https://github.com/box/box-java-sdk/issues/1540)) ([6842fa4](https://github.com/box/box-java-sdk/commit/6842fa448d205625ee33df850414b4cac94f1851)), closes [box/box-codegen#873](https://github.com/box/box-codegen/issues/873)
12+
* **boxsdkgen:** Support Archive API (box/box-openapi[#563](https://github.com/box/box-java-sdk/issues/563)) ([#1552](https://github.com/box/box-java-sdk/issues/1552)) ([ba7f012](https://github.com/box/box-java-sdk/commit/ba7f012276bbc3526eee3ccd3a83a70a20185dcb))
13+
14+
15+
### Bug Fixes:
16+
17+
* **boxsdkgen:** Fix parsing `OffsetDateTime` from String (box/box-codegen[#887](https://github.com/box/box-java-sdk/issues/887)) ([#1581](https://github.com/box/box-java-sdk/issues/1581)) ([4f9e1b3](https://github.com/box/box-java-sdk/commit/4f9e1b385835b233a08a9f21768ad20f2c77b1fd))
18+
519
## [5.0.0](https://github.com/box/box-java-sdk/compare/v4.16.3...v5.0.0) (2025-10-23)
620

721
Introducing a new major version of Box Java SDK `v5` that includes two packages — the manually maintained `com.box.sdk` package and the generated `com.box.sdkgen` package. The coexisting packages provide easier access to the latest Box API features and support gradual migration to the standalone generated namespace.

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.0.0"
18+
version = "5.1.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.0.0";
94+
private static final String SDK_VERSION = "5.1.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.0.0";
6+
return "5.1.0";
77
}
88
}

0 commit comments

Comments
 (0)