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": "fa469c0", "specHash": "ae77fe0", "version": "0.8.0" }
{ "engineHash": "fa469c0", "specHash": "ae77fe0", "version": "0.8.1" }
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

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.

### [0.8.1](https://github.com/box/box-java-sdk-gen/compare/v0.8.0...v0.8.1) (2025-09-05)


### Bug Fixes

* Fix managing network errors (box/box-codegen[#798](https://github.com/box/box-java-sdk-gen/issues/798)) ([#407](https://github.com/box/box-java-sdk-gen/issues/407)) ([97fb904](https://github.com/box/box-java-sdk-gen/commit/97fb904453a15578090db0e10ec148aceb6e1b36))


### New Features and Enhancements

* Add missing webhook events (box/box-openapi[#554](https://github.com/box/box-java-sdk-gen/issues/554)) ([#436](https://github.com/box/box-java-sdk-gen/issues/436)) ([982a233](https://github.com/box/box-java-sdk-gen/commit/982a233098a6ed0a70ee380277e2d5f1878b626c))
* Support event with long polling in Java (box/box-codegen[#807](https://github.com/box/box-java-sdk-gen/issues/807)) ([#434](https://github.com/box/box-java-sdk-gen/issues/434)) ([bf55902](https://github.com/box/box-java-sdk-gen/commit/bf55902b08c9fd668278c47e10daa3020a41e220))

## [0.8.0](https://github.com/box/box-java-sdk-gen/compare/v0.7.0...v0.8.0) (2025-08-05)


Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}
group = "com.box"
archivesBaseName = "box-java-sdk-gen"
version = "0.8.0"
version = "0.8.1"
java {
sourceCompatibility = JavaVersion.toVersion(libraryJavaVersion)
targetCompatibility = JavaVersion.toVersion(libraryJavaVersion)
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 "0.8.0";
return "0.8.1";
}
}