diff --git a/.github/workflows/unitTests.yml b/.github/workflows/unitTests.yml index 3532ff1..359998a 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, 16.x] steps: - uses: actions/checkout@v2 @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [15.x] + node-version: [16.x] steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index fd24b1c..8d82106 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ **Brand Usecase Request** - Brand Usecase Request endpoint added +## [v4.34.3](https://github.com/plivo/plivo-go/tree/v4.34.3) (2022-11-07) +**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 => {