Skip to content

Commit aae1596

Browse files
chore: release version 6.2.0 (#1308)
1 parent b97f971 commit aae1596

File tree

11 files changed

+23
-10
lines changed

11 files changed

+23
-10
lines changed

.codegen.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "engineHash": "bb42f6c", "specHash": "5183b65", "version": "6.1.0" }
1+
{ "engineHash": "bb42f6c", "specHash": "5183b65", "version": "6.2.0" }

BoxSdkGen/Box.Sdk.Gen.Net/Box.Sdk.Gen.Net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<Version>6.1.0</Version>
5+
<Version>6.2.0</Version>
66
<Description>Official Box .Net Generated SDK</Description>
77
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
88
<Nullable>enable</Nullable>

BoxSdkGen/Box.Sdk.Gen.Net/Networking/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ namespace Box.Sdk.Gen.Internal
44
{
55
static class Version
66
{
7-
internal static string sdkVersion = "6.1.0";
7+
internal static string sdkVersion = "6.2.0";
88
}
99
}

BoxSdkGen/Box.Sdk.Gen.NetFramework/Box.Sdk.Gen.NetFramework.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net462</TargetFramework>
5-
<Version>6.1.0</Version>
5+
<Version>6.2.0</Version>
66
<Description>Official Box .Net Generated SDK</Description>
77
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
88
<isPackable>true</isPackable>

BoxSdkGen/Box.Sdk.Gen.NetFramework/Networking/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ namespace Box.Sdk.Gen.Internal
44
{
55
static class Version
66
{
7-
internal static string sdkVersion = "6.1.0";
7+
internal static string sdkVersion = "6.2.0";
88
}
99
}

BoxSdkGen/Box.Sdk.Gen.NetStandard/Box.Sdk.Gen.NetStandard.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>6.1.0</Version>
5+
<Version>6.2.0</Version>
66
<Description>Official Box .Net Generated SDK</Description>
77
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
88
<isPackable>true</isPackable>

BoxSdkGen/Box.Sdk.Gen.NetStandard/Networking/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ namespace Box.Sdk.Gen.Internal
44
{
55
static class Version
66
{
7-
internal static string sdkVersion = "6.1.0";
7+
internal static string sdkVersion = "6.2.0";
88
}
99
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
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+
## [6.2.0](https://github.com/box/box-windows-sdk-v2/compare/v6.1.0...v6.2.0) (2025-12-08)
6+
7+
8+
### **New Features and Enhancements:**
9+
10+
* **boxsdkgen:** Support long polling event for dotnet (box/box-codegen[#893](https://github.com/box/box-windows-sdk-v2/issues/893)) ([#1297](https://github.com/box/box-windows-sdk-v2/issues/1297)) ([d064e76](https://github.com/box/box-windows-sdk-v2/commit/d064e76e5d047a4f28cad5c4aa597365e46aba26))
11+
* **boxsdkgen:** Support new sign request metadata (box/box-openapi[#565](https://github.com/box/box-windows-sdk-v2/issues/565)) ([#1293](https://github.com/box/box-windows-sdk-v2/issues/1293)) ([3efe490](https://github.com/box/box-windows-sdk-v2/commit/3efe4903bfe94984db2b29f8ec80eb7c32cb1038))
12+
13+
14+
### **Bug Fixes:**
15+
16+
* **boxsdkgen:** fix string extension in dotnet (box/box-codegen[#899](https://github.com/box/box-windows-sdk-v2/issues/899)) ([#1306](https://github.com/box/box-windows-sdk-v2/issues/1306)) ([b97f971](https://github.com/box/box-windows-sdk-v2/commit/b97f971dc50ffcabc3376c73ca83290ff70f0899))
17+
518
## [6.1.0](https://github.com/box/box-windows-sdk-v2/compare/v6.0.0...v6.1.0) (2025-11-19)
619

720

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<PackageId>Box.V2.Core.Legacy</PackageId>
55
<TargetFramework>netstandard2.0</TargetFramework>
6-
<Version>6.1.0</Version>
6+
<Version>6.2.0</Version>
77
<Description>Box SDK for v2 of the Box API. The SDK is targeting .Net Standard 2.0</Description>
88
<Authors>Box Inc.</Authors>
99
<PackageProjectUrl>https://github.com/box/box-windows-sdk-v2</PackageProjectUrl>

LegacySdk/Box.V2/Box.V2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<PackageId>Box.V2.Legacy</PackageId>
44
<TargetFramework>net462</TargetFramework>
5-
<Version>6.1.0</Version>
5+
<Version>6.2.0</Version>
66
<Description>Box SDK for v2 of the Box API. The SDK is targeting .NET Framework 4.6.2</Description>
77
<Authors>Box Inc.</Authors>
88
<RepositoryUrl>https://github.com/box/box-windows-sdk-v2.git</RepositoryUrl>

0 commit comments

Comments
 (0)