Skip to content

Commit 7fb2a71

Browse files
garg-muditroot
andauthored
Version 8.6.0-v2.1-25.4.01.00 release (#478)
Co-authored-by: root <root@devcenteradmin.docusigntest.com>
1 parent 96c0443 commit 7fb2a71

15 files changed

Lines changed: 2512 additions & 18 deletions

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# DocuSign C# Client Changelog
22

3+
## [v8.6.0] - eSignature API v2.1-25.4.01.00 - 2026-01-19
4+
### Changed
5+
- Added support for version v2.1-25.4.01.00 of the DocuSign ESignature API.
6+
- Updated the SDK release version.
7+
38
## [v8.5.0] - eSignature API v2.1-25.3.01.00 - 2025-09-29
49
### Changed
510
- Added support for version v2.1-25.3.01.00 of the Docusign ESignature API.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This client SDK is provided as open source, which enables you to customize its f
3333
<a id="versionInformation"></a>
3434
### Version Information
3535
- **API version**: v2.1
36-
- **Latest SDK version (Including prerelease)**: 8.5.0
36+
- **Latest SDK version (Including prerelease)**: 8.6.0
3737

3838
<a id="requirements"></a>
3939
### Requirements

sdk/DocuSign.eSign.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.eSign", "src\DocuSign.eSign\DocuSign.eSign.csproj", "{70684351-A520-4564-8660-AE20B57FA147}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.eSign", "src\DocuSign.eSign\DocuSign.eSign.csproj", "{DC439222-D7F5-4FE7-8687-584EF39B9AA8}"
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-
{70684351-A520-4564-8660-AE20B57FA147}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14-
{70684351-A520-4564-8660-AE20B57FA147}.Debug|Any CPU.Build.0 = Debug|Any CPU
15-
{70684351-A520-4564-8660-AE20B57FA147}.Release|Any CPU.ActiveCfg = Release|Any CPU
16-
{70684351-A520-4564-8660-AE20B57FA147}.Release|Any CPU.Build.0 = Release|Any CPU
13+
{DC439222-D7F5-4FE7-8687-584EF39B9AA8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{DC439222-D7F5-4FE7-8687-584EF39B9AA8}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{DC439222-D7F5-4FE7-8687-584EF39B9AA8}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{DC439222-D7F5-4FE7-8687-584EF39B9AA8}.Release|Any CPU.Build.0 = Release|Any CPU
1717
EndGlobalSection
1818
GlobalSection(SolutionProperties) = preSolution
1919
HideSolutionNode = FALSE

sdk/src/DocuSign.eSign/Api/EnvelopesApi.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17905,6 +17905,8 @@ public class GetEnvelopeOptions
1790517905
public string include {get; set;}
1790617906
///
1790717907
public string includeAnchorTabLocations {get; set;}
17908+
///
17909+
public string userId {get; set;}
1790817910
}
1790917911

1791017912
/// <summary>
@@ -17970,6 +17972,7 @@ public ApiResponse<Envelope> GetEnvelopeWithHttpInfo(string accountId, string en
1797017972
if (options.advancedUpdate != null) localVarQueryParams.Add("advanced_update", this.ApiClient.ParameterToString(options.advancedUpdate)); // query parameter
1797117973
if (options.include != null) localVarQueryParams.Add("include", this.ApiClient.ParameterToString(options.include)); // query parameter
1797217974
if (options.includeAnchorTabLocations != null) localVarQueryParams.Add("include_anchor_tab_locations", this.ApiClient.ParameterToString(options.includeAnchorTabLocations)); // query parameter
17975+
if (options.userId != null) localVarQueryParams.Add("user_id", this.ApiClient.ParameterToString(options.userId)); // query parameter
1797317976
}
1797417977

1797517978
// authentication (docusignAccessCode) required
@@ -18060,6 +18063,7 @@ public async System.Threading.Tasks.Task<ApiResponse<Envelope>> GetEnvelopeAsync
1806018063
if (options.advancedUpdate != null) localVarQueryParams.Add("advanced_update", this.ApiClient.ParameterToString(options.advancedUpdate)); // query parameter
1806118064
if (options.include != null) localVarQueryParams.Add("include", this.ApiClient.ParameterToString(options.include)); // query parameter
1806218065
if (options.includeAnchorTabLocations != null) localVarQueryParams.Add("include_anchor_tab_locations", this.ApiClient.ParameterToString(options.includeAnchorTabLocations)); // query parameter
18066+
if (options.userId != null) localVarQueryParams.Add("user_id", this.ApiClient.ParameterToString(options.userId)); // query parameter
1806318067
}
1806418068

1806518069
// authentication (docusignAccessCode) required

sdk/src/DocuSign.eSign/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 = "8.5.0";
29+
public const string Version = "8.6.0";
3030

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

sdk/src/DocuSign.eSign/DocuSign.eSign.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Description>The Docusign NuGet package makes integrating Docusign into your apps and websites a super fast and painless process. The library is open sourced on GitHub, look for the docusign-esign-csharp-client repository. Join the eSign revolution!</Description>
88
<Company>DocuSign Inc.</Company>
99
<Owners>DocuSign</Owners>
10-
<Copyright>Copyright © Docusign 2025</Copyright>
10+
<Copyright>Copyright © Docusign 2026</Copyright>
1111
<AssemblyTitle>DocuSign.eSign</AssemblyTitle>
1212
<Authors>DocuSign</Authors>
1313
<OutputType>Library</OutputType>
@@ -16,7 +16,7 @@
1616
<RootNamespace>DocuSign.eSign</RootNamespace>
1717
<AssemblyName>DocuSign.eSign</AssemblyName>
1818
<NeutralLanguage>en-US</NeutralLanguage>
19-
<VersionPrefix>8.5.0</VersionPrefix>
19+
<VersionPrefix>8.6.0</VersionPrefix>
2020
<VersionSuffix/>
2121
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
2222
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -26,7 +26,7 @@
2626
<PackageLicenseUrl>https://github.com/docusign/docusign-esign-csharp-client/blob/master/LICENSE</PackageLicenseUrl>
2727
<RepositoryUrl>https://github.com/docusign/docusign-esign-csharp-client</RepositoryUrl>
2828
<RepositoryType>git</RepositoryType>
29-
<PackageReleaseNotes>[v8.5.0] - ESignature API v2.1-25.3.01.00 - 9/28/2025</PackageReleaseNotes>
29+
<PackageReleaseNotes>[v8.6.0] - ESignature API v2.1-25.4.01.00 - 1/19/2026</PackageReleaseNotes>
3030
</PropertyGroup>
3131
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462'">
3232
<DefineConstants>NET462</DefineConstants>

0 commit comments

Comments
 (0)