Skip to content

Commit f513662

Browse files
chore: release 3.7.0 (#1104)
1 parent 135850d commit f513662

File tree

4 files changed

+40
-28
lines changed

4 files changed

+40
-28
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+
## [3.7.0](https://github.com/box/box-java-sdk/compare/v3.6.0...v3.7.0) (2022-09-20)
6+
7+
8+
### New Features and Enhancements:
9+
10+
* Add `is_accessible_via_shared_link` field to File and Folder ([#1103](https://github.com/box/box-java-sdk/issues/1103)) ([45e9906](https://github.com/box/box-java-sdk/commit/45e9906efca6a7f2d4d738914dc804de12d3646e))
11+
12+
### Bug Fixes:
13+
14+
* `BoxCollaboration.getItem()` returns `BoxItem.Info` not `BoxFolder.Info` ([#1102](https://github.com/box/box-java-sdk/issues/1102)) ([135850d](https://github.com/box/box-java-sdk/commit/135850d97164ee5f6d74708d74c531f7fa8bee26)), closes [#1101](https://github.com/box/box-java-sdk/issues/1101) [#1100](https://github.com/box/box-java-sdk/issues/1100). `BoxCollaboration.getItem()` used to return `BoxFolder.Info`. However, if collaboration was added on a file it would still return `BoxFolder.Info` which will end with throwing `BoxAPIException` when doing any API call. If you are getting collaboration item it is best to store it as `BoxItem.Info` or check its type and store it as `BoxFile.Info` or `BoxFolder.Info`.
15+
* Add missing constructor to `BoxNotificationEmail` class ([#1098](https://github.com/box/box-java-sdk/issues/1098)) ([2534f34](https://github.com/box/box-java-sdk/commit/2534f34133f9554abd1e80fc1555659a2c52b23f))
16+
517
## [3.6.0](https://github.com/box/box-java-sdk/compare/v3.5.0...v3.6.0) (2022-09-07)
618

719

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The Box Java SDK for interacting with the
99
[Box Content API](https://developers.box.com/docs/).
1010

1111
## Latest Release
12-
Latest release can be found [here](https://github.com/box/box-java-sdk/tree/v3.6.0).
12+
Latest release can be found [here](https://github.com/box/box-java-sdk/tree/v3.7.0).
1313

1414
## Versions
1515
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.
@@ -198,31 +198,31 @@ You can find guides and tutorials in the `doc` directory.
198198

199199
* [BUILD ON BOX PLATFORM](https://developer.box.com/guides/getting-started/)
200200
* [Javadocs](http://box.github.io/box-java-sdk/javadoc/com/box/sdk/package-summary.html)
201-
* [Overview](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/overview.md)
202-
* [Configuration](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/configuration.md)
203-
* [Logging](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/logging.md)
204-
* [Authentication](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/authentication.md)
205-
* [Files](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/files.md)
206-
* [Folders](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/folders.md)
207-
* [Comments](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/comments.md)
208-
* [Collaborations](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/collaborations.md)
209-
* [Collaboration Allowlists](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/collaboration_allowlists.md)
210-
* [Events](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/events.md)
211-
* [Search](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/search.md)
212-
* [Users](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/users.md)
213-
* [Groups](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/groups.md)
214-
* [Tasks](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/tasks.md)
215-
* [Trash](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/trash.md)
216-
* [Collections](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/collections.md)
217-
* [Devices](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/devices.md)
218-
* [Retention Policies](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/retention_policies.md)
219-
* [Legal Holds Policy](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/legal_holds.md)
220-
* [Watermarking](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/watermarking.md)
221-
* [Webhooks](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/webhooks.md)
222-
* [Web Links](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/weblinks.md)
223-
* [Metadata Templates](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/metadata_template.md)
224-
* [Classifications](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/classifications.md)
225-
* [Recent Items](https://github.com/box/box-java-sdk/blob/v3.6.0/doc/recent_items.md)
201+
* [Overview](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/overview.md)
202+
* [Configuration](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/configuration.md)
203+
* [Logging](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/logging.md)
204+
* [Authentication](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/authentication.md)
205+
* [Files](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/files.md)
206+
* [Folders](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/folders.md)
207+
* [Comments](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/comments.md)
208+
* [Collaborations](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/collaborations.md)
209+
* [Collaboration Allowlists](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/collaboration_allowlists.md)
210+
* [Events](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/events.md)
211+
* [Search](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/search.md)
212+
* [Users](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/users.md)
213+
* [Groups](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/groups.md)
214+
* [Tasks](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/tasks.md)
215+
* [Trash](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/trash.md)
216+
* [Collections](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/collections.md)
217+
* [Devices](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/devices.md)
218+
* [Retention Policies](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/retention_policies.md)
219+
* [Legal Holds Policy](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/legal_holds.md)
220+
* [Watermarking](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/watermarking.md)
221+
* [Webhooks](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/webhooks.md)
222+
* [Web Links](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/weblinks.md)
223+
* [Metadata Templates](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/metadata_template.md)
224+
* [Classifications](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/classifications.md)
225+
* [Recent Items](https://github.com/box/box-java-sdk/blob/v3.7.0/doc/recent_items.md)
226226

227227

228228
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 = "3.6.0"
16+
version = "3.7.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
@@ -60,7 +60,7 @@ public class BoxAPIConnection {
6060
private static final String BOX_NOTIFICATIONS_HEADER = "Box-Notifications";
6161

6262
private static final String JAVA_VERSION = System.getProperty("java.version");
63-
private static final String SDK_VERSION = "3.6.0";
63+
private static final String SDK_VERSION = "3.7.0";
6464

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

0 commit comments

Comments
 (0)