Skip to content

Commit 4b2f36c

Browse files
author
root
committed
Version 6.0.0-v2.1-25.4.01.00 release
1 parent 6097866 commit 4b2f36c

15 files changed

+4239
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
33

44
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
55

6+
## [v6.0.0] - eSignature API v2.1-25.4.01.00 - 2026-01-27
7+
### Changed
8+
- Added support for version v2.1-25.4.01.00 of the DocuSign ESignature API.
9+
- Dropped support for Python 3.8 and lower versions.
10+
- Updated deprecated urllib3 usage so users can upgrade to urllib3 2.6.0+ (fixes CVE-2025-66471).
11+
- Updated the SDK release version.
12+
613
## [v6.0.0rc1] - eSignature API v2.1-25.3.01.00 - 2026-01-13
714
### Changed
815
- 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**: 6.0.0rc1
36+
- **Latest SDK version**: 6.0.0
3737

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

docusign_esign/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
from docusign_esign.models.account_identity_verification_step import AccountIdentityVerificationStep
6161
from docusign_esign.models.account_identity_verification_workflow import AccountIdentityVerificationWorkflow
6262
from docusign_esign.models.account_information import AccountInformation
63+
from docusign_esign.models.account_management_granular import AccountManagementGranular
6364
from docusign_esign.models.account_minimum_password_length import AccountMinimumPasswordLength
6465
from docusign_esign.models.account_notification import AccountNotification
6566
from docusign_esign.models.account_password_expire_password_days import AccountPasswordExpirePasswordDays
@@ -379,6 +380,7 @@
379380
from docusign_esign.models.notary_recipient import NotaryRecipient
380381
from docusign_esign.models.notary_result import NotaryResult
381382
from docusign_esign.models.notary_seal import NotarySeal
383+
from docusign_esign.models.notary_witness import NotaryWitness
382384
from docusign_esign.models.note import Note
383385
from docusign_esign.models.notification import Notification
384386
from docusign_esign.models.notification_default_settings import NotificationDefaultSettings

docusign_esign/apis/envelopes_api.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7156,6 +7156,7 @@ def get_envelope(self, account_id, envelope_id, **kwargs):
71567156
:param str advanced_update: When true, envelope information can be added or modified.
71577157
:param str include:
71587158
:param str include_anchor_tab_locations:
7159+
:param str user_id:
71597160
:return: Envelope
71607161
If the method is called asynchronously,
71617162
returns the request thread.
@@ -7186,12 +7187,13 @@ def get_envelope_with_http_info(self, account_id, envelope_id, **kwargs):
71867187
:param str advanced_update: When true, envelope information can be added or modified.
71877188
:param str include:
71887189
:param str include_anchor_tab_locations:
7190+
:param str user_id:
71897191
:return: Envelope
71907192
If the method is called asynchronously,
71917193
returns the request thread.
71927194
"""
71937195

7194-
all_params = ['account_id', 'envelope_id', 'advanced_update', 'include', 'include_anchor_tab_locations']
7196+
all_params = ['account_id', 'envelope_id', 'advanced_update', 'include', 'include_anchor_tab_locations', 'user_id']
71957197
all_params.append('callback')
71967198
all_params.append('_return_http_data_only')
71977199
all_params.append('_preload_content')
@@ -7230,6 +7232,8 @@ def get_envelope_with_http_info(self, account_id, envelope_id, **kwargs):
72307232
query_params['include'] = params['include']
72317233
if 'include_anchor_tab_locations' in params:
72327234
query_params['include_anchor_tab_locations'] = params['include_anchor_tab_locations']
7235+
if 'user_id' in params:
7236+
query_params['user_id'] = params['user_id']
72337237

72347238
header_params = {}
72357239

docusign_esign/client/configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ def __init__(self):
116116
python_version = platform.python_version()
117117

118118
if six.PY3:
119-
self.user_agent = "Swagger-Codegen/v2.1/6.0.0rc1/python3/" + f"{python_version}"
119+
self.user_agent = "Swagger-Codegen/v2.1/6.0.0/python3/" + f"{python_version}"
120120
else:
121-
self.user_agent = "Swagger-Codegen/v2.1/6.0.0rc1/python2/" + f"{python_version}"
121+
self.user_agent = "Swagger-Codegen/v2.1/6.0.0/python2/" + f"{python_version}"
122122

123123

124124
@classmethod
@@ -274,5 +274,5 @@ def to_debug_report(self):
274274
"OS: {env}\n"\
275275
"Python Version: {pyversion}\n"\
276276
"Version of the API: v2.1\n"\
277-
"SDK Package Version: 6.0.0rc1".\
277+
"SDK Package Version: 6.0.0".\
278278
format(env=sys.platform, pyversion=sys.version)

docusign_esign/models/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
from docusign_esign.models.account_identity_verification_step import AccountIdentityVerificationStep
2525
from docusign_esign.models.account_identity_verification_workflow import AccountIdentityVerificationWorkflow
2626
from docusign_esign.models.account_information import AccountInformation
27+
from docusign_esign.models.account_management_granular import AccountManagementGranular
2728
from docusign_esign.models.account_minimum_password_length import AccountMinimumPasswordLength
2829
from docusign_esign.models.account_notification import AccountNotification
2930
from docusign_esign.models.account_password_expire_password_days import AccountPasswordExpirePasswordDays
@@ -343,6 +344,7 @@
343344
from docusign_esign.models.notary_recipient import NotaryRecipient
344345
from docusign_esign.models.notary_result import NotaryResult
345346
from docusign_esign.models.notary_seal import NotarySeal
347+
from docusign_esign.models.notary_witness import NotaryWitness
346348
from docusign_esign.models.note import Note
347349
from docusign_esign.models.notification import Notification
348350
from docusign_esign.models.notification_default_settings import NotificationDefaultSettings

0 commit comments

Comments
 (0)