Skip to content

Commit feab483

Browse files
shan285root
andauthored
Version 6.6.0-rc2-v2.1-23.4.02.00 release (#344)
Co-authored-by: root <[email protected]>
1 parent 6e4ff04 commit feab483

20 files changed

+784
-374
lines changed

.swagger-codegen-ignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ git_push.sh
3232
LICENSE
3333
.travis.yml
3434
mocha.opts
35+
package.json
3536

3637
# Specific src and test files
3738
docs/*.md
@@ -40,3 +41,4 @@ test/assert-equals.js
4041
src/OAuth.js
4142
src/RestApi.js
4243
src/oauth/
44+
src/ApiClient.js

CHANGELOG.md

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

44

5+
## [v6.6.0-rc2] - eSignature API v2.1-23.4.02.00 - 2024-03-19
6+
### Changed
7+
- Substituted the superagent proxy with Axios 1.6.8, addressing security vulnerabilities.
8+
- Updated the SDK release version.
9+
10+
## [v6.6.0-rc1] - eSignature API v2.1-23.4.02.00 - 2024-03-12
11+
### Changed
12+
- Added user-generated JWT assertion support via sendJWTTokenRequest.
13+
- Added support for version v2.1-23.4.02.00 of the DocuSign ESignature API.
14+
- Updated the SDK release version.
15+
516
## [v6.5.1] - eSignature API v2.1-23.3.01.02 - 2023-11-15
617
### Changed
718
- Rolled back the superagent-proxy package version from 3.0.0 to 2.0.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This client has the following external dependencies:
3535

3636
**Minimum:**
3737
* DocuSign-eSign
38-
* Superagent 3.8.2
38+
* axios 1.6.8
3939

4040
**Optional:**
4141
* Async v2.6.2

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docusign-esign",
3-
"version": "6.5.1",
3+
"version": "6.6.0-rc2",
44
"description": "DocuSign Node.js API client.",
55
"license": "MIT",
66
"main": "src/index.js",
@@ -51,12 +51,12 @@
5151
]
5252
},
5353
"dependencies": {
54+
"axios": "^1.6.8",
5455
"csv-stringify": "^1.0.0",
55-
"jsonwebtoken": "^9.0.0",
56-
"passport-oauth2": "^1.6.1",
57-
"safe-buffer": "^5.1.2",
58-
"superagent": "3.8.2",
59-
"superagent-proxy": "^2.0.0"
56+
"jsonwebtoken": "^9.0.0",
57+
"@devhigley/parse-proxy":"^1.0.3",
58+
"passport-oauth2": "^1.6.1",
59+
"safe-buffer": "^5.1.2"
6060
},
6161
"devDependencies": {
6262
"docdash": "0.4.0",

0 commit comments

Comments
 (0)