Skip to content

Commit ae32afb

Browse files
chore: release 4.1.0 (#1162)
1 parent 2a10e5d commit ae32afb

File tree

4 files changed

+41
-29
lines changed

4 files changed

+41
-29
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
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+
## [4.1.0](https://github.com/box/box-java-sdk/compare/v4.0.1...v4.1.0) (2023-04-24)
6+
7+
8+
### New Features and Enhancements:
9+
10+
* Add missing `fields` parameter to create and update `BoxUser` methods ([#1155](https://github.com/box/box-java-sdk/issues/1155)) ([be3820d](https://github.com/box/box-java-sdk/commit/be3820dc4df15e99dfc13602d4f7269841bd15b3)), closes [#1154](https://github.com/box/box-java-sdk/issues/1154)
11+
12+
### Bug Fixes:
13+
14+
* Allow registering custom logger handlers ([#1156](https://github.com/box/box-java-sdk/issues/1156)) ([7373d5c](https://github.com/box/box-java-sdk/commit/7373d5cc2bf49bc198cbca70d056e43f0dffdb3a))
15+
* Fallback to default value of `maxRetryAttempts` when restoring `BoxAPIConnection` ([#1161](https://github.com/box/box-java-sdk/issues/1161)) ([2a10e5d](https://github.com/box/box-java-sdk/commit/2a10e5d07497611e077a9207fe98c1d8146cfd22)), closes [#1160](https://github.com/box/box-java-sdk/issues/1160)
16+
517
### [4.0.1](https://github.com/box/box-java-sdk/compare/v4.0.0...v4.0.1) (2023-03-06)
618

719

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ The Box Java SDK for interacting with the
1414
[Box Content API](https://developers.box.com/docs/).
1515

1616
## Latest Release
17-
Latest release can be found [here](https://github.com/box/box-java-sdk/tree/v4.0.1).
17+
Latest release can be found [here](https://github.com/box/box-java-sdk/tree/v4.1.0).
1818

1919
## Upgrades
20-
You can read about how to migrate to the new version [here](https://github.com/box/box-java-sdk/tree/v4.0.1).
20+
You can read about how to migrate to the new version [here](https://github.com/box/box-java-sdk/tree/v4.1.0).
2121

2222
## Versions
2323
We use a modified version of [Semantic Versioning](https://semver.org/) for all changes. See [version strategy](VERSIONS.md) for details which is effective from 30 July 2022.
@@ -226,31 +226,31 @@ You can find guides and tutorials in the `doc` directory.
226226

227227
* [BUILD ON BOX PLATFORM](https://developer.box.com/guides/getting-started/)
228228
* [Javadocs](http://box.github.io/box-java-sdk/javadoc/com/box/sdk/package-summary.html)
229-
* [Overview](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/overview.md)
230-
* [Configuration](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/configuration.md)
231-
* [Logging](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/logging.md)
232-
* [Authentication](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/authentication.md)
233-
* [Files](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/files.md)
234-
* [Folders](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/folders.md)
235-
* [Comments](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/comments.md)
236-
* [Collaborations](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/collaborations.md)
237-
* [Collaboration Allowlists](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/collaboration_allowlists.md)
238-
* [Events](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/events.md)
239-
* [Search](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/search.md)
240-
* [Users](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/users.md)
241-
* [Groups](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/groups.md)
242-
* [Tasks](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/tasks.md)
243-
* [Trash](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/trash.md)
244-
* [Collections](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/collections.md)
245-
* [Devices](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/devices.md)
246-
* [Retention Policies](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/retention_policies.md)
247-
* [Legal Holds Policy](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/legal_holds.md)
248-
* [Watermarking](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/watermarking.md)
249-
* [Webhooks](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/webhooks.md)
250-
* [Web Links](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/weblinks.md)
251-
* [Metadata Templates](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/metadata_template.md)
252-
* [Classifications](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/classifications.md)
253-
* [Recent Items](https://github.com/box/box-java-sdk/blob/v4.0.1/doc/recent_items.md)
229+
* [Overview](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/overview.md)
230+
* [Configuration](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/configuration.md)
231+
* [Logging](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/logging.md)
232+
* [Authentication](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/authentication.md)
233+
* [Files](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/files.md)
234+
* [Folders](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/folders.md)
235+
* [Comments](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/comments.md)
236+
* [Collaborations](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/collaborations.md)
237+
* [Collaboration Allowlists](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/collaboration_allowlists.md)
238+
* [Events](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/events.md)
239+
* [Search](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/search.md)
240+
* [Users](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/users.md)
241+
* [Groups](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/groups.md)
242+
* [Tasks](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/tasks.md)
243+
* [Trash](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/trash.md)
244+
* [Collections](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/collections.md)
245+
* [Devices](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/devices.md)
246+
* [Retention Policies](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/retention_policies.md)
247+
* [Legal Holds Policy](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/legal_holds.md)
248+
* [Watermarking](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/watermarking.md)
249+
* [Webhooks](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/webhooks.md)
250+
* [Web Links](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/weblinks.md)
251+
* [Metadata Templates](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/metadata_template.md)
252+
* [Classifications](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/classifications.md)
253+
* [Recent Items](https://github.com/box/box-java-sdk/blob/v4.1.0/doc/recent_items.md)
254254

255255

256256
Javadocs are generated when `gradle javadoc` is run and can be found in

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ sourceCompatibility = 1.8
1313

1414
group = "com.box"
1515
archivesBaseName = "box-java-sdk"
16-
version = "4.0.1"
16+
version = "4.1.0"
1717

1818
java {
1919
withJavadocJar()

src/main/java/com/box/sdk/BoxAPIConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public class BoxAPIConnection {
8484
private static final String BOX_NOTIFICATIONS_HEADER = "Box-Notifications";
8585

8686
private static final String JAVA_VERSION = System.getProperty("java.version");
87-
private static final String SDK_VERSION = "4.0.1";
87+
private static final String SDK_VERSION = "4.1.0";
8888

8989
/**
9090
* The amount of buffer time, in milliseconds, to use when determining if an access token should be refreshed. For

0 commit comments

Comments
 (0)