Skip to content

Commit

Permalink
chore: release version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
box-sdk-build committed Feb 3, 2025
1 parent 8211e93 commit 3879d25
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .codegen.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "engineHash": "7874ac3", "specHash": "1fdcbef", "version": "0.3.0" }
{ "engineHash": "7874ac3", "specHash": "1fdcbef", "version": "0.4.0" }
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

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.4.0](https://github.com/box/box-java-sdk-gen/compare/v0.3.0...v0.4.0) (2025-02-03)


### Bug Fixes

* Add missing token scope (box/box-openapi[#490](https://github.com/box/box-java-sdk-gen/issues/490)) ([#122](https://github.com/box/box-java-sdk-gen/issues/122)) ([83073a7](https://github.com/box/box-java-sdk-gen/commit/83073a7061744b97d685faa809cf6a96a6aa61a4))
* Correct types of `paged` and `thumb` properties in File representation (box/box-openapi[#503](https://github.com/box/box-java-sdk-gen/issues/503)) ([#161](https://github.com/box/box-java-sdk-gen/issues/161)) ([b603242](https://github.com/box/box-java-sdk-gen/commit/b60324274f9d74454ea93bb4ac418b2eea3a61e4))
* Fix handling list of enums and nested list of enums (box/box-codegen[#649](https://github.com/box/box-java-sdk-gen/issues/649)) ([#165](https://github.com/box/box-java-sdk-gen/issues/165)) ([45021c2](https://github.com/box/box-java-sdk-gen/commit/45021c26610c1427e86bbc8e277ac8f315a06837))
* Fix invalid variant config for Integration mapping Slack (box/box-openapi[#492](https://github.com/box/box-java-sdk-gen/issues/492)) ([#127](https://github.com/box/box-java-sdk-gen/issues/127)) ([c86142b](https://github.com/box/box-java-sdk-gen/commit/c86142b8c141e418f7b4fc1b64dd46adfb862f4e))
* Fix Java `NPE` in case of null body (box/box-codegen[#645](https://github.com/box/box-java-sdk-gen/issues/645)) ([#149](https://github.com/box/box-java-sdk-gen/issues/149)) ([25dee92](https://github.com/box/box-java-sdk-gen/commit/25dee9268ce16c8ef8909aefcdbf90a3f11d7ea2))
* order of fields in the `IntegrationMapping` schema (box/box-openapi[#497](https://github.com/box/box-java-sdk-gen/issues/497)) ([#145](https://github.com/box/box-java-sdk-gen/issues/145)) ([d3ce60c](https://github.com/box/box-java-sdk-gen/commit/d3ce60c7afa621e8dec5f7087497f0a4c60ba898))
* Remove auth when cross origin redirect (box/box-codegen[#648](https://github.com/box/box-java-sdk-gen/issues/648)) ([#158](https://github.com/box/box-java-sdk-gen/issues/158)) ([6136dac](https://github.com/box/box-java-sdk-gen/commit/6136dac05ba7215d2d7d6b68eac12910f1a4c06b))


### New Features and Enhancements

* Add Box Sign shared requests (box/box-openapi[#504](https://github.com/box/box-java-sdk-gen/issues/504)) ([#163](https://github.com/box/box-java-sdk-gen/issues/163)) ([b32f336](https://github.com/box/box-java-sdk-gen/commit/b32f33605b383f0bad987df6c5168e12acde90f6))
* Support Box Doc Gen API (box/box-codegen[#644](https://github.com/box/box-java-sdk-gen/issues/644)) ([#156](https://github.com/box/box-java-sdk-gen/issues/156)) ([81cb583](https://github.com/box/box-java-sdk-gen/commit/81cb583ea52e741a3c4597316d010521c30ae138))
* Support chunked upload in Java (box/box-codegen[#640](https://github.com/box/box-java-sdk-gen/issues/640)) ([#137](https://github.com/box/box-java-sdk-gen/issues/137)) ([012aaa0](https://github.com/box/box-java-sdk-gen/commit/012aaa0adf575865051156b7746ed4d50cb63a93))
* Update `/ai/extract_structured` response schema (box/box-codegen[#641](https://github.com/box/box-java-sdk-gen/issues/641)) ([#196](https://github.com/box/box-java-sdk-gen/issues/196)) ([d42892a](https://github.com/box/box-java-sdk-gen/commit/d42892a5b2e40b8192e0630b8dea56509248bf3f))

## [0.3.0](https://github.com/box/box-java-sdk-gen/compare/v0.2.0...v0.3.0) (2024-12-30)


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

0 comments on commit 3879d25

Please sign in to comment.