Skip to content

Commit

Permalink
Merge pull request #329 from plivo/security-fix
Browse files Browse the repository at this point in the history
update axios version
  • Loading branch information
narayana-plivo authored May 6, 2024
2 parents 2304ee8 + b1468c8 commit 6397de7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Change Log
## [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.

## [v4.63.0](https://github.com/plivo/plivo-node/tree/v4.63.0) (2024-05-02)
**Feature - Pin Based Authentication, SubAccount and GeoMatch for Number Masking**
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plivo",
"version": "4.63.0",
"version": "4.64.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": [
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion types/rest/client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6397de7

Please sign in to comment.