Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codegen.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "engineHash": "3d9d391", "specHash": "31c41d5", "version": "5.1.0" }
{ "engineHash": "3d9d391", "specHash": "31c41d5", "version": "5.2.0" }
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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.

## [5.2.0](https://github.com/box/box-java-sdk/compare/v5.1.0...v5.2.0) (2025-12-10)


### New Features and Enhancements:

* **boxsdkgen:** Remove `confidence_score` and `include_confidence_score` from AI extract (box/box-openapi[#567](https://github.com/box/box-java-sdk/issues/567)) ([#1614](https://github.com/box/box-java-sdk/issues/1614)) ([e5e9545](https://github.com/box/box-java-sdk/commit/e5e9545cc539c6c8f3ce4e99926840529437039b))
* **boxsdkgen:** Support new sign request metadata (box/box-openapi[#565](https://github.com/box/box-java-sdk/issues/565)) ([#1598](https://github.com/box/box-java-sdk/issues/1598)) ([87d1182](https://github.com/box/box-java-sdk/commit/87d1182ec362bfbf800edda79360a2446ba7eaab))

## [5.1.0](https://github.com/box/box-java-sdk/compare/v5.0.0...v5.1.0) (2025-11-19)


Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sourceCompatibility = 1.8

group = "com.box"
archivesBaseName = "box-java-sdk"
version = "5.1.0"
version = "5.2.0"

java {
withJavadocJar()
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/box/sdk/BoxAPIConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public class BoxAPIConnection {
private static final String BOX_NOTIFICATIONS_HEADER = "Box-Notifications";

private static final String JAVA_VERSION = System.getProperty("java.version");
private static final String SDK_VERSION = "5.1.0";
private static final String SDK_VERSION = "5.2.0";

/**
* The amount of buffer time, in milliseconds, to use when determining if an access token should
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
public class Version {

public static String getVersion() {
return "5.1.0";
return "5.2.0";
}
}
Loading