From 95e2417dfacf1b755a48fb465fb07741121c39ac Mon Sep 17 00:00:00 2001 From: narayana-plivo Date: Thu, 29 Feb 2024 23:38:20 +0530 Subject: [PATCH 1/4] update axios --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4e1ba510..155c3403 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ }, "dependencies": { "@types/node": "^14.14.14", - "axios": "^0.21.1", + "axios": "^0.28.0", "base-64": "^0.1.0", "build-url": "^1.0.10", "form-data": "^4.0.0", From d1dbb24782decf760122c89248c8c86374323eb2 Mon Sep 17 00:00:00 2001 From: narayana-plivo Date: Thu, 29 Feb 2024 23:45:08 +0530 Subject: [PATCH 2/4] changing param --- types/rest/client.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/rest/client.d.ts b/types/rest/client.d.ts index 64109c4d..c77e2bb4 100644 --- a/types/rest/client.d.ts +++ b/types/rest/client.d.ts @@ -7,7 +7,7 @@ export function validateSignature(uri: string, nonce: string, signature: string, * You can also pass in additional parameters accepted by the node requests module. */ export class Client { - constructor(authId?: string, authToken?: string, options?: string); + constructor(authId?: string, authToken?: string, options?: any); calls: CallInterface; token: TokenInterface; accounts: AccountInterface; From bc7c110159acce80a56553b024589f7090b51d44 Mon Sep 17 00:00:00 2001 From: narayana-plivo Date: Thu, 4 Apr 2024 12:58:16 +0530 Subject: [PATCH 3/4] version upgrade --- CHANGELOG.md | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a74d8d9..9d691939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Change Log +## [v4.62.0](https://github.com/plivo/plivo-node/tree/v4.62.0) (2024-04-04) +**Vulnerabilities Fix** +- Axios Cross-Site Request Forgery Vulnerability Fix. ## [v4.60.2](https://github.com/plivo/plivo-node/tree/v4.60.2) (2024-02-29) **Feature - Log Redaction Enhancement** diff --git a/package.json b/package.json index 155c3403..674f7c36 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plivo", - "version": "4.60.2", + "version": "4.62.0", "description": "A Node.js SDK to make voice calls and send SMS using Plivo and to generate Plivo XML", "homepage": "https://github.com/plivo/plivo-node", "files": [ From b1468c82a3b05827bfc6265b5df81b1aaa061573 Mon Sep 17 00:00:00 2001 From: Narayana Shanbhog Date: Mon, 6 May 2024 09:46:13 +0530 Subject: [PATCH 4/4] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f752895..aeaa082f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ # Change Log -## [v4.62.0](https://github.com/plivo/plivo-node/tree/v4.62.0) (2024-04-04) +## [v4.64.0](https://github.com/plivo/plivo-node/tree/v4.64.0) (2024-04-04) **Vulnerabilities Fix** - Axios Cross-Site Request Forgery Vulnerability Fix.