From f215e2683320db6ee1a89089835dcbb0762f26fb Mon Sep 17 00:00:00 2001 From: Aayush Sarva Date: Tue, 14 Mar 2023 16:54:37 +0530 Subject: [PATCH] Upgrade version after CVE fix (#169) --- CHANGELOG.md | 4 ++++ baseclient.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c06f2ec..c67b6cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [7.24.0](https://github.com/plivo/plivo-go/tree/v7.24.0) (2023-03-14) +**Fix - Add fix for CVE-2020-26160 and CVE-2022-32149** +- Upgrade dependencies to fix security vulnerabilities. + ## [7.23.0](https://github.com/plivo/plivo-go/tree/v7.23.0) (2023-03-03) **Feature - Added New Param 'is_domestic' in Get Message and List Message APIs** - Add `is_domestic` to the response for the [list all messages API](https://www.plivo.com/docs/sms/api/message/list-all-messages/) and the [get message details API](https://www.plivo.com/docs/sms/api/message#retrieve-a-message) diff --git a/baseclient.go b/baseclient.go index 795ec31..058f234 100644 --- a/baseclient.go +++ b/baseclient.go @@ -13,7 +13,7 @@ import ( "github.com/google/go-querystring/query" ) -const sdkVersion = "7.23.0" +const sdkVersion = "7.24.0" const lookupBaseUrl = "lookup.plivo.com"