Skip to content

Commit 6aa85e1

Browse files
author
Matt Willer
committed
v3.13.1
1 parent 19372ab commit 6aa85e1

File tree

4 files changed

+28
-23
lines changed

4 files changed

+28
-23
lines changed

Box.V2.Core/Box.V2.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<PropertyGroup>
44
<Description>Box.V2 for .Net Core</Description>
55
<AssemblyTitle>Box.V2.Core</AssemblyTitle>
6-
<Version>3.13.0</Version>
6+
<Version>3.13.1</Version>
77
<Authors>Box, Inc.</Authors>
88
<Owners>Box, Inc.</Owners>
99
<PackageProjectUrl>https://github.com/box/box-windows-sdk-v2</PackageProjectUrl>
1010
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1111
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1212
<PackageDescription>Windows SDK for v2 of the Box API. The SDK is built for .NET Core and includes JWTAuth support.</PackageDescription>
13-
<PackageReleaseNotes>See https://github.com/box/box-windows-sdk-v2/blob/master/CHANGELOG.md#3130</PackageReleaseNotes>
13+
<PackageReleaseNotes>See https://github.com/box/box-windows-sdk-v2/blob/master/CHANGELOG.md#3131</PackageReleaseNotes>
1414
<Copyright>Copyright 2019</Copyright>
1515
<PackageTags>Box;V2;SDK;Platform;Enterprise;Collaboration;Storage;File Management</PackageTags>
1616
<TargetFramework>netstandard1.6</TargetFramework>

Box.V2/Box.V2.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package >
33
<metadata>
44
<id>Box.V2</id>
5-
<version>3.13.0</version>
5+
<version>3.13.1</version>
66
<title>Box Windows SDK V2</title>
77
<authors>Box, Inc.</authors>
88
<owners>Box, Inc.</owners>
99
<projectUrl>https://github.com/box/box-windows-sdk-v2</projectUrl>
1010
<license type="expression">Apache-2.0</license>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>Windows SDK for v2 of the Box API. The SDK is targeting .NET Framework 4.5</description>
13-
<releaseNotes>See https://github.com/box/box-windows-sdk-v2/blob/master/CHANGELOG.md#3130</releaseNotes>
13+
<releaseNotes>See https://github.com/box/box-windows-sdk-v2/blob/master/CHANGELOG.md#3131</releaseNotes>
1414
<copyright>Copyright 2019</copyright>
1515
<tags>Box V2 SDK Platform Enterprise Collaboration Storage File Management</tags>
1616
</metadata>

Box.V2/Utility/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ internal class AssemblyInfo
55
public const string AssemblyTitle = "Box.V2";
66
public const string AssemblyProduct = "Box.V2";
77

8-
public const string NuGetVersion = "3.13.0";
8+
public const string NuGetVersion = "3.13.1";
99
public const string AssemblyVersion = "1.0.0.0";
1010
public const string AssemblyFileVersion = "1.0.0.0";
1111
}

CHANGELOG.md

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# Changelog
22

3-
## 3.13.0
3+
## 3.13.1 [2019-02-21]
4+
5+
- Fixed an issue where some objects related to Events did not have their `.Id` property correctly deserialized from JSON
6+
7+
## 3.13.0 [2019-02-14]
48

59
- Added the `.InviteEmail` property to `BoxCollaboration` objects, which displays the email address for the invited
610
user in a pending collaboration
711
- Added `.Timezone`, `.IsExternalCollabRestricted`, `.Tags`, and `.Hostname` properties to `BoxUser` objects
812

9-
## 3.12.0
13+
## 3.12.0 [2019-02-07]
1014

1115
- Added `client.FilesManager.GetCollaborationsCollectionAsync()` and deprecated
1216
`client.FilesManager.GetCollaborationsAsync()` to enable paging through the entire
@@ -15,88 +19,89 @@
1519
and `client.WebLinksManager.DeleteSharedLinkAsync()`
1620
- Added `client.UsersManager.GetUserAvatarAsync()` for retrieving a user's avatar image
1721

18-
## 3.11.0
22+
## 3.11.0 [2019-01-17]
1923

2024
- Added support for reading and writing more Group fields
2125
- Fixed an issue where the `UnsharedAt` field of a shared link could not be set to `null`
2226
- Fixed renaming a file on new version upload
2327
- Added the ability to set the content modification timestamp on file version upload
2428
- Fixed issues around reading the source of an event when the source item is a web link
2529

26-
## 3.10.0
30+
## 3.10.0 [2018-12-14]
2731

2832
- Added support for Metadata Cascade Policies
2933

30-
## 3.9.3
34+
## 3.9.3 [2018-09-04]
3135

3236
- Strong named the assembly.
3337

34-
## 3.9.2
38+
## 3.9.2 [2018-06-14]
39+
3540
- Added support for [setting flag](https://github.com/box/box-windows-sdk-v2/blob/master/Box.V2/Models/Request/BoxFolderRequest.cs#L39) allowing non owners of a folder to invite collaborators.
3641

37-
## 3.9.1
42+
## 3.9.1 [2018-06-07]
3843

3944
- Fixed bug where Xamarin applications would run out of connections
4045

41-
## 3.9.0
46+
## 3.9.0 [2018-05-10]
4247

4348
- Added support for Storage Policies
4449

45-
## 3.8.0
50+
## 3.8.0 [2018-04-30]
4651

4752
- Fixed an issue where users could not create `BoxClient` on Xamarin
4853
- Added `File` property to `BoxLock` objects in events
4954
- Added `MetadataManager.DeleteMetadataTemplate(string scope, string template)` for deleting a Metadata template
5055
- Made API URLs modifiable in `BoxConfig`
5156
- Improved API response error objects/messages
5257

53-
## 3.7.0
58+
## 3.7.0 [2018-04-10]
5459

5560
- Added support for assigning a Retention Policy to a metadata template
5661
- Added `CONTENT_ACCESS` event type to enum
5762

58-
## 3.6.0
63+
## 3.6.0 [2018-03-27]
5964

6065
- Fixed an issue where a "Security protocol not supported" exception could be thrown on MacOS
6166
- Added `client.FilesManager.GetRepresentationContentAsync()` for fetching a stream over representation contents
6267
- Fixed parsing of some `Source` objects on `BoxEvent` objects
6368

64-
## 3.5.2
69+
## 3.5.2 [2018-03-21]
6570

6671
- Switched to exponential backoff when the SDK receives a rate limit or server error response.
6772
- Force support for TLSv1.1 or higher when available to improve the security of connections to the Box API.
6873
- Perform modified retry on JWT auth for when the local clock and the Box Server clock are not aligned as well as if the JWT ID has already been consumed.
6974
- Made `name` parameter optional on `RestoreTrashedAsync()`.
7075

71-
## 3.4.2
76+
## 3.4.2 [2018-01-31]
7277

7378
- Deprecated `uploadFileVersionUsingSessionAsync()`(which returned just a Box File Version) in favor of `uploadNewVersionUsingSessionAsync()`(which returns the entire Box File object containing the Box File Version).
7479
- Added support for OAuth2 access token creation type to the AdminEventTypesEnum
7580
- Added `ExpiresAt` param to `BoxCollaborationRequest`.
7681

77-
## 3.4.1
82+
## 3.4.1 [2018-01-09]
7883

7984
- Added support for [Collaboration Whitelist](https://github.com/box/box-windows-sdk-v2/blob/master/Box.V2/Managers/BoxCollaborationWhitelistManager.cs) endpoint
8085
- Added [Event Types Enum](https://github.com/box/box-windows-sdk-v2/blob/master/Box.V2/Config/Constants.cs#L287)
8186
- Fixed deserialization issue with BoxRepresentationStatus (#429)
8287

83-
## 3.3.0
88+
## 3.3.0 [2017-11-22]
8489

8590
- Added support for [Terms of Service](https://github.com/box/box-windows-sdk-v2/blob/master/Box.V2/Managers/BoxTermsOfServiceManager.cs) endpoint
8691
- Added support for [Metadata Template ID](https://github.com/box/box-windows-sdk-v2/blob/master/Box.V2/Managers/BoxMetadataManager.cs#L175) endpoint
8792
- Added missing fields for Folder Model (#414)
8893

89-
## 3.2.0
94+
## 3.2.0 [2017-10-04]
9095

9196
- Added support for [Representations](https://github.com/box/box-windows-sdk-v2/blob/master/Box.V2/Managers/BoxFilesManager.cs#L1216) endpoint
9297
- Added support for [Chunked Upload New File Version](https://github.com/box/box-windows-sdk-v2/blob/master/Box.V2/Managers/BoxFilesManager.cs#L423)
9398
- Fixed BoxEventsManager DateTime formatter (#400)
9499

95-
## 3.1.0
100+
## 3.1.0 [2017-08-18]
96101

97102
- Added Unified Metadata Support (#379)
98103

99-
## 3.0.0
104+
## 3.0.0 [2017-07-28]
100105

101106
- Major version bump to 3, targeting net45
102107
- Upgrading the whole sln to vs2017

0 commit comments

Comments
 (0)