Skip to content

Commit

Permalink
Bump to 8.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Aug 7, 2023
1 parent 09c0c28 commit 00202f1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/Auth0.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/API/Management/ActionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 00202f1

Please sign in to comment.