From 77691cde8c70db9edd3181f8d732053a067c994a Mon Sep 17 00:00:00 2001 From: Huzaif Date: Fri, 21 Oct 2022 19:42:57 +0530 Subject: [PATCH 1/5] removed un necessary log line --- CHANGELOG.md | 4 ++++ lib/resources/endpoints.js | 1 - package.json | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b43c6f..371eb37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [v4.34.3](https://github.com/plivo/plivo-go/tree/v4.34.3) (2022-10-25) +**Bug fix - List all Endpoint** +- Removed duplicate responses + ## [v4.34.2](https://github.com/plivo/plivo-go/tree/v4.34.2) (2022-10-17) **List Endpoint query param support** - Adding limit and offset to fetch list of endpoints. diff --git a/lib/resources/endpoints.js b/lib/resources/endpoints.js index 287c841..fb74eae 100644 --- a/lib/resources/endpoints.js +++ b/lib/resources/endpoints.js @@ -198,7 +198,6 @@ export class EndpointInterface extends PlivoResourceInterface { response.body.objects.forEach(item => { objects.push(new ListAllEndpointResponse(item, client)); }); - console.log(objects) resolve(objects); }) .catch(error => { diff --git a/package.json b/package.json index 3c55505..949cef2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plivo", - "version": "4.34.2", + "version": "4.34.3", "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 2dd70b38170173a9048ad9127ddc6a940027e78d Mon Sep 17 00:00:00 2001 From: Huzaif Date: Fri, 21 Oct 2022 19:46:17 +0530 Subject: [PATCH 2/5] removed node 6 & 7 from test cases --- .github/workflows/unitTests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unitTests.yml b/.github/workflows/unitTests.yml index 3532ff1..9161c51 100644 --- a/.github/workflows/unitTests.yml +++ b/.github/workflows/unitTests.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - node-version: [6.x, 7.x, 8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x, 15.x] + node-version: [8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x, 15.x] steps: - uses: actions/checkout@v2 From 6d1a0cb5edb9db59b84f66200c3cb0b9cec1b8f5 Mon Sep 17 00:00:00 2001 From: Huzaif Date: Fri, 21 Oct 2022 19:47:41 +0530 Subject: [PATCH 3/5] added LTS of node --- .github/workflows/unitTests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unitTests.yml b/.github/workflows/unitTests.yml index 9161c51..945bc42 100644 --- a/.github/workflows/unitTests.yml +++ b/.github/workflows/unitTests.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - node-version: [8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x, 15.x] + node-version: [8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x, 15.x, 16.x] steps: - uses: actions/checkout@v2 From c2301352d9a6549c5f778aa44c7f40c2ec627dbc Mon Sep 17 00:00:00 2001 From: Huzaif Date: Fri, 21 Oct 2022 19:49:16 +0530 Subject: [PATCH 4/5] coverage for 16.x node version --- .github/workflows/unitTests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unitTests.yml b/.github/workflows/unitTests.yml index 945bc42..359998a 100644 --- a/.github/workflows/unitTests.yml +++ b/.github/workflows/unitTests.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [15.x] + node-version: [16.x] steps: - uses: actions/checkout@v2 From 43b2832cdf537c8bcfe8974cbce435e6951a7b44 Mon Sep 17 00:00:00 2001 From: manjunath-plivo <85923934+manjunath-plivo@users.noreply.github.com> Date: Mon, 7 Nov 2022 10:16:33 +0530 Subject: [PATCH 5/5] update version --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 371eb37..a0a5618 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [v4.34.3](https://github.com/plivo/plivo-go/tree/v4.34.3) (2022-10-25) +## [v4.34.3](https://github.com/plivo/plivo-go/tree/v4.34.3) (2022-11-07) **Bug fix - List all Endpoint** - Removed duplicate responses