diff --git a/CHANGELOG.md b/CHANGELOG.md index ad77ae40e..90aa4c940 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.3.5] - 2022-01-27 +### Fixed +- Fix an error with the function context [#403] + ## [7.3.4] - 2022-01-26 ### Fixed - Fix pagination [#401] @@ -405,8 +409,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#379]: https://github.com/auth0/auth0-deploy-cli/issues/379 [#400]: https://github.com/auth0/auth0-deploy-cli/issues/400 [#401]: https://github.com/auth0/auth0-deploy-cli/issues/401 +[#403]: https://github.com/auth0/auth0-deploy-cli/issues/403 -[Unreleased]: https://github.com/auth0/auth0-deploy-cli/compare/v7.3.4...HEAD +[Unreleased]: https://github.com/auth0/auth0-deploy-cli/compare/v7.3.5...HEAD +[7.3.5]: https://github.com/auth0/auth0-deploy-cli/compare/v7.3.4...v7.3.5 [7.3.4]: https://github.com/auth0/auth0-deploy-cli/compare/v7.3.3...v7.3.4 [7.3.3]: https://github.com/auth0/auth0-deploy-cli/compare/v7.3.2...v7.3.3 [7.3.2]: https://github.com/auth0/auth0-deploy-cli/compare/v7.3.1...v7.3.2 diff --git a/package-lock.json b/package-lock.json index 68db8c637..3acdefdf9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "auth0-deploy-cli", - "version": "7.3.4", + "version": "7.3.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auth0-deploy-cli", - "version": "7.3.4", + "version": "7.3.5", "license": "MIT", "dependencies": { "ajv": "^6.12.6", diff --git a/package.json b/package.json index b84029bc3..3cc9b00d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auth0-deploy-cli", - "version": "7.3.4", + "version": "7.3.5", "description": "A command line tool for deploying updates to your Auth0 tenant", "main": "lib/index.js", "bin": { diff --git a/src/tools/auth0/client.js b/src/tools/auth0/client.js index 37ddb6094..58846726a 100644 --- a/src/tools/auth0/client.js +++ b/src/tools/auth0/client.js @@ -31,7 +31,7 @@ function checkpointPaginator(client, target, name) { const { total } = await client.pool .addSingleTask({ data: newArgs, - generator: target[name] + generator: (requestArgs) => target[name](requestArgs) }) .promise(); @@ -43,7 +43,7 @@ function checkpointPaginator(client, target, name) { const rsp = await client.pool .addSingleTask({ data: newArgs, - generator: target[name] + generator: (requestArgs) => target[name](requestArgs) }) .promise();