You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The most important change this release includes is the replacement of the HTTP library from a native one to OkHttp which allows SDK to
Support the HTTP2 version of the HTTP protocol.
Support proxies that do not use only basic authentication method. For details on creating custom proxy authenticators and an example of NTLM proxy authentication.
Breaking Changes
BatchAPIRequest – is no longer supported by the SDK
BoxAPIConnection#DEFAULT_MAX_ATTEMPTS is replaced with BoxAPIConnection#DEFAULT_MAX_RETRIES
BoxRedirectResponse – was removed and will not be replaced
BoxEvent.Type is replaced with EventType
Removing deprecated methods from BoxFile, BoxFileVersionRetention, BoxFolder, BoxGroup, BoxGroupMembership,BoxItem, BoxRetentionPolicy, BoxTask, BoxUser, BoxWebLink, EventLog, Metadata and MetadataTemplate.
Add is_accessible_via_shared_link field to File and Folder (#1103) (45e9906)
Bug Fixes:
BoxCollaboration.getItem() returns BoxItem.Info not BoxFolder.Info (#1102) (135850d), closes #1101#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.
Add missing constructor to BoxNotificationEmail class (#1098) (2534f34)