diff --git a/CHANGELOG.md b/CHANGELOG.md index 69ce4b15..e2d0af12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,19 @@ # Changelog +## [8.7.1](https://github.com/auth0/auth0-PHP/tree/8.7.1) - 2023-08-06 + +**Fixed** + +- Corrected Management API route for deploy action endpoint by [@speercy](https://github.com/speercy) ([#723](https://github.com/auth0/auth0-PHP/pull/723)) + ## [8.7.0](https://github.com/auth0/auth0-PHP/tree/8.7.0) - 2023-07-20 **Added** -- Organization Name support added for Authentication API and token handling ¹ ([#719](https://github.com/auth0/auth0-PHP/pull/719)) +- Organization Name support added for Authentication API and token handling¹ ([#719](https://github.com/auth0/auth0-PHP/pull/719)) > **Note** -> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants. +> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants. ## [8.6.0](https://github.com/auth0/auth0-PHP/tree/8.6.0) - 2023-05-02 @@ -21,7 +27,7 @@ - `Auth0\SDK\Auth0::isAuthenticated()` has been added as a shortcut method. It is an alias for `getCredentials() !== null`. > **Note** -> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants. +> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants. ## [8.5.0](https://github.com/auth0/auth0-PHP/tree/8.5.0) - 2023-03-27 diff --git a/src/Auth0.php b/src/Auth0.php index 4f4b682c..eb9cf47e 100644 --- a/src/Auth0.php +++ b/src/Auth0.php @@ -21,7 +21,7 @@ final class Auth0 implements Auth0Interface /** * @var string */ - public const VERSION = '8.7.0'; + public const VERSION = '8.7.1'; /** * Authentication Client. diff --git a/tests/Unit/API/Management/ActionsTest.php b/tests/Unit/API/Management/ActionsTest.php index 74c9a1c9..7ef1fabf 100644 --- a/tests/Unit/API/Management/ActionsTest.php +++ b/tests/Unit/API/Management/ActionsTest.php @@ -204,7 +204,7 @@ $this->endpoint->deploy($id); expect($this->api->getRequestMethod())->toEqual('POST'); - expect($this->api->getRequestUrl())->toEndWith('/api/v2/actions/' . $id . '/deploy'); + expect($this->api->getRequestUrl())->toEndWith('/api/v2/actions/actions/' . $id . '/deploy'); expect($this->api->getRequestQuery())->toBeEmpty(); })->with(['valid id' => [ fn() => uniqid()