Skip to content

Commit f1e8638

Browse files
authored
Merge pull request #29 from docusign/2.0.0-rc3-v2-1.1.1
Version 2.0.0-rc3 release
2 parents c586cea + 57624bd commit f1e8638

File tree

10 files changed

+41
-36
lines changed

10 files changed

+41
-36
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# DocuSign Rooms C# Client Changelog
22
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
33

4+
## [v2.0.0-rc3] - Rooms API v2-1.1.1 - 2024-05-20
5+
### Changed
6+
- Updated C# SDK dependencies.
7+
- BouncyCastle.Cryptography: Version bumped from 2.3.0 to 2.3.1.
8+
- Microsoft.IdentityModel.JsonWebTokens: Version bumped from 7.5.1 to 7.5.2.
49
## [v2.0.0-rc2] - Rooms API v2-1.1.1 - 2024-04-29
510
### Breaking Changes
611
- Updated from System.IdentityModel.Tokens.Jwt to Microsoft.IdentityModel.JsonWebTokens for token handling.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ An API for an integrator to access the features of Docusign Rooms.
77

88
## Version Information
99
- **API version**: v2
10-
- **Latest SDK version (Including prerelease)**: 2.0.0-rc2
10+
- **Latest SDK version (Including prerelease)**: 2.0.0-rc3
1111

1212
## Requirements
1313
* Microsoft .NET version 4.6.2+ (4.7 recommended)
@@ -42,15 +42,15 @@ This client has the following external dependencies:
4242

4343
### .NET Standard v2 and .NET Core:
4444
* Newtonsoft.Json v13.0.3
45-
* BouncyCastle.Cryptography v2.3.0
45+
* BouncyCastle.Cryptography v2.3.1
4646
* System.ComponentModel.Annotations v5.0.0
47-
* Microsoft.IdentityModel.JsonWebTokens v7.5.1
47+
* Microsoft.IdentityModel.JsonWebTokens v7.5.2
4848

4949
### .NET Framework, version 4.6.2:
5050
* Newtonsoft.Json v13.0.3
51-
* BouncyCastle.Cryptography v2.3.0
51+
* BouncyCastle.Cryptography v2.3.1
5252
* System.ComponentModel.Annotations v5.0.0
53-
* Microsoft.IdentityModel.JsonWebTokens v7.5.1
53+
* Microsoft.IdentityModel.JsonWebTokens v7.5.2
5454

5555
## Code examples
5656
Explore our GitHub repository for the [Launcher](https://github.com/docusign/code-examples-csharp/), a self-executing package housing code examples for the Rooms C# SDK. This package showcases several common use cases and their respective source files. Additionally, you can download a version preconfigured for your Docusign developer account from [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/). These examples support both the [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) and [JSON Web Token (JWT)](https://developers.docusign.com/platform/auth/jwt/) authentication workflows.

sdk/DocuSign.Rooms.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.Rooms", "src\DocuSign.Rooms\DocuSign.Rooms.csproj", "{49D913B4-A285-4346-8FCF-9FBEE98A3758}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.Rooms", "src\DocuSign.Rooms\DocuSign.Rooms.csproj", "{7F08371E-EF26-4863-A2FE-655AA90E4223}"
66
EndProject
77
Global
88
GlobalSection(SolutionConfigurationPlatforms) = preSolution
99
Debug|Any CPU = Debug|Any CPU
1010
Release|Any CPU = Release|Any CPU
1111
EndGlobalSection
1212
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13-
{49D913B4-A285-4346-8FCF-9FBEE98A3758}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14-
{49D913B4-A285-4346-8FCF-9FBEE98A3758}.Debug|Any CPU.Build.0 = Debug|Any CPU
15-
{49D913B4-A285-4346-8FCF-9FBEE98A3758}.Release|Any CPU.ActiveCfg = Release|Any CPU
16-
{49D913B4-A285-4346-8FCF-9FBEE98A3758}.Release|Any CPU.Build.0 = Release|Any CPU
13+
{7F08371E-EF26-4863-A2FE-655AA90E4223}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{7F08371E-EF26-4863-A2FE-655AA90E4223}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{7F08371E-EF26-4863-A2FE-655AA90E4223}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{7F08371E-EF26-4863-A2FE-655AA90E4223}.Release|Any CPU.Build.0 = Release|Any CPU
1717
EndGlobalSection
1818
GlobalSection(SolutionProperties) = preSolution
1919
HideSolutionNode = FALSE

sdk/src/DocuSign.Rooms/Client/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class Configuration
2626
/// Version of the package.
2727
/// </summary>
2828
/// <value>Version of the package.</value>
29-
public const string Version = "2.0.0-rc2";
29+
public const string Version = "2.0.0-rc3";
3030

3131
/// <summary>
3232
/// Identifier for ISO 8601 DateTime Format

sdk/src/DocuSign.Rooms/DocuSign.Rooms.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<RootNamespace>DocuSign.Rooms</RootNamespace>
1717
<AssemblyName>DocuSign.Rooms</AssemblyName>
1818
<NeutralLanguage>en-US</NeutralLanguage>
19-
<VersionPrefix>2.0.0-rc2</VersionPrefix>
19+
<VersionPrefix>2.0.0-rc3</VersionPrefix>
2020
<VersionSuffix/>
2121
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
2222
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -26,7 +26,7 @@
2626
<PackageLicenseUrl>https://github.com/docusign/docusign-csharp-client/blob/master/LICENSE</PackageLicenseUrl>
2727
<RepositoryUrl>https://github.com/docusign/docusign-csharp-client</RepositoryUrl>
2828
<RepositoryType>git</RepositoryType>
29-
<PackageReleaseNotes>[v2.0.0-rc2] - Rooms API v2-1.1.1 - 4/29/2024</PackageReleaseNotes>
29+
<PackageReleaseNotes>[v2.0.0-rc3] - Rooms API v2-1.1.1 - 5/20/2024</PackageReleaseNotes>
3030
</PropertyGroup>
3131
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462'">
3232
<DefineConstants>NET462</DefineConstants>
@@ -38,10 +38,10 @@
3838
<Reference Include="System.Web"/>
3939
</ItemGroup>
4040
<ItemGroup>
41-
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.1"/>
41+
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.2"/>
4242
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
4343
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0"/>
44-
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.0"/>
44+
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.1"/>
4545
</ItemGroup>
4646
<ItemGroup/>
4747
</Project>

sdk/src/DocuSign.Rooms/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
// [assembly: AssemblyVersion("1.0.*")]
2323
internal class AssemblyInformation
2424
{
25-
public const string AssemblyInformationalVersion = "2.0.0-rc2";
25+
public const string AssemblyInformationalVersion = "2.0.0-rc3";
2626
}

test/SdkNetCoreTests/SdkNetCoreTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.1" />
10+
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.2" />
1111
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
1212
<PackageReference Include="MSTest.TestAdapter" Version="1.2.1" />
1313
<PackageReference Include="MSTest.TestFramework" Version="1.2.1" />
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.0" />
17+
<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.1" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

test/SdkTests/SdkTests.csproj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</PropertyGroup>
4444
<ItemGroup>
4545
<Reference Include="BouncyCastle.Cryptography, Version=2.0.0.0, Culture=neutral, PublicKeyToken=072edcf4a5328938, processorArchitecture=MSIL">
46-
<HintPath>..\packages\BouncyCastle.Cryptography.2.3.0\lib\net461\BouncyCastle.Cryptography.dll</HintPath>
46+
<HintPath>..\packages\BouncyCastle.Cryptography.2.3.1\lib\net461\BouncyCastle.Cryptography.dll</HintPath>
4747
</Reference>
4848
<Reference Include="DocuSign.Rooms">
4949
<HintPath>..\..\sdk\src\DocuSign.Rooms\bin\Debug\net462\DocuSign.Rooms.dll</HintPath>
@@ -52,20 +52,20 @@
5252
<HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.1.1.0\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
5353
</Reference>
5454
<Reference Include="Microsoft.CSharp" />
55-
<Reference Include="Microsoft.IdentityModel.Abstractions, Version=7.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
56-
<HintPath>..\packages\Microsoft.IdentityModel.Abstractions.7.5.1\lib\net462\Microsoft.IdentityModel.Abstractions.dll</HintPath>
55+
<Reference Include="Microsoft.IdentityModel.Abstractions, Version=7.5.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
56+
<HintPath>..\packages\Microsoft.IdentityModel.Abstractions.7.5.2\lib\net462\Microsoft.IdentityModel.Abstractions.dll</HintPath>
5757
</Reference>
58-
<Reference Include="Microsoft.IdentityModel.JsonWebTokens, Version=7.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
59-
<HintPath>..\packages\Microsoft.IdentityModel.JsonWebTokens.7.5.1\lib\net462\Microsoft.IdentityModel.JsonWebTokens.dll</HintPath>
58+
<Reference Include="Microsoft.IdentityModel.JsonWebTokens, Version=7.5.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
59+
<HintPath>..\packages\Microsoft.IdentityModel.JsonWebTokens.7.5.2\lib\net462\Microsoft.IdentityModel.JsonWebTokens.dll</HintPath>
6060
</Reference>
61-
<Reference Include="Microsoft.IdentityModel.Logging, Version=7.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
62-
<HintPath>..\packages\Microsoft.IdentityModel.Logging.7.5.1\lib\net462\Microsoft.IdentityModel.Logging.dll</HintPath>
61+
<Reference Include="Microsoft.IdentityModel.Logging, Version=7.5.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
62+
<HintPath>..\packages\Microsoft.IdentityModel.Logging.7.5.2\lib\net462\Microsoft.IdentityModel.Logging.dll</HintPath>
6363
</Reference>
6464
<Reference Include="Microsoft.IdentityModel.Protocols, Version=7.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
6565
<HintPath>..\packages\Microsoft.IdentityModel.Protocols.7.3.1\lib\net462\Microsoft.IdentityModel.Protocols.dll</HintPath>
6666
</Reference>
67-
<Reference Include="Microsoft.IdentityModel.Tokens, Version=7.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
68-
<HintPath>..\packages\Microsoft.IdentityModel.Tokens.7.5.1\lib\net462\Microsoft.IdentityModel.Tokens.dll</HintPath>
67+
<Reference Include="Microsoft.IdentityModel.Tokens, Version=7.5.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
68+
<HintPath>..\packages\Microsoft.IdentityModel.Tokens.7.5.2\lib\net462\Microsoft.IdentityModel.Tokens.dll</HintPath>
6969
</Reference>
7070
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
7171
<HintPath>..\packages\MSTest.TestFramework.2.1.2\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll</HintPath>

test/SdkTests/app.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
</dependentAssembly>
1717
<dependentAssembly>
1818
<assemblyIdentity name="Microsoft.IdentityModel.Tokens" publicKeyToken="31bf3856ad364e35" culture="neutral" />
19-
<bindingRedirect oldVersion="0.0.0.0-7.5.1.0" newVersion="7.5.1.0" />
19+
<bindingRedirect oldVersion="0.0.0.0-7.5.2.0" newVersion="7.5.2.0" />
2020
</dependentAssembly>
2121
<dependentAssembly>
2222
<assemblyIdentity name="Microsoft.IdentityModel.Logging" publicKeyToken="31bf3856ad364e35" culture="neutral" />
23-
<bindingRedirect oldVersion="0.0.0.0-7.5.1.0" newVersion="7.5.1.0" />
23+
<bindingRedirect oldVersion="0.0.0.0-7.5.2.0" newVersion="7.5.2.0" />
2424
</dependentAssembly>
2525
<dependentAssembly>
2626
<assemblyIdentity name="Microsoft.IdentityModel.JsonWebTokens" publicKeyToken="31bf3856ad364e35" culture="neutral" />
27-
<bindingRedirect oldVersion="0.0.0.0-7.5.1.0" newVersion="7.5.1.0" />
27+
<bindingRedirect oldVersion="0.0.0.0-7.5.2.0" newVersion="7.5.2.0" />
2828
</dependentAssembly>
2929
<dependentAssembly>
3030
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
@@ -52,7 +52,7 @@
5252
</dependentAssembly>
5353
<dependentAssembly>
5454
<assemblyIdentity name="Microsoft.IdentityModel.Abstractions" publicKeyToken="31bf3856ad364e35" culture="neutral" />
55-
<bindingRedirect oldVersion="0.0.0.0-7.5.1.0" newVersion="7.5.1.0" />
55+
<bindingRedirect oldVersion="0.0.0.0-7.5.2.0" newVersion="7.5.2.0" />
5656
</dependentAssembly>
5757
</assemblyBinding>
5858
</runtime>

test/SdkTests/packages.config

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="BouncyCastle.Cryptography" version="2.3.0" targetFramework="net462" />
3+
<package id="BouncyCastle.Cryptography" version="2.3.1" targetFramework="net462" />
44
<package id="Microsoft.Bcl.AsyncInterfaces" version="1.1.0" targetFramework="net462" />
55
<package id="Microsoft.CSharp" version="4.7.0" targetFramework="net462" />
6-
<package id="Microsoft.IdentityModel.Abstractions" version="7.5.1" targetFramework="net462" />
7-
<package id="Microsoft.IdentityModel.JsonWebTokens" version="7.5.1" targetFramework="net462" />
8-
<package id="Microsoft.IdentityModel.Logging" version="7.5.1" targetFramework="net462" />
9-
<package id="Microsoft.IdentityModel.Tokens" version="7.5.1" targetFramework="net462" />
6+
<package id="Microsoft.IdentityModel.Abstractions" version="7.5.2" targetFramework="net462" />
7+
<package id="Microsoft.IdentityModel.JsonWebTokens" version="7.5.2" targetFramework="net462" />
8+
<package id="Microsoft.IdentityModel.Logging" version="7.5.2" targetFramework="net462" />
9+
<package id="Microsoft.IdentityModel.Tokens" version="7.5.2" targetFramework="net462" />
1010
<package id="MSTest.TestAdapter" version="2.1.2" targetFramework="net47" />
1111
<package id="MSTest.TestFramework" version="2.1.2" targetFramework="net47" />
1212
<package id="System.Buffers" version="4.5.1" targetFramework="net462" />

0 commit comments

Comments
 (0)