Skip to content

Commit 00202f1

Browse files
committed
Bump to 8.7.1
1 parent 09c0c28 commit 00202f1

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

Diff for: CHANGELOG.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
# Changelog
22

3+
## [8.7.1](https://github.com/auth0/auth0-PHP/tree/8.7.1) - 2023-08-06
4+
5+
**Fixed**
6+
7+
- Corrected Management API route for deploy action endpoint by [@speercy](https://github.com/speercy) ([#723](https://github.com/auth0/auth0-PHP/pull/723))
8+
39
## [8.7.0](https://github.com/auth0/auth0-PHP/tree/8.7.0) - 2023-07-20
410

511
**Added**
612

7-
- Organization Name support added for Authentication API and token handling ¹ ([#719](https://github.com/auth0/auth0-PHP/pull/719))
13+
- Organization Name support added for Authentication API and token handling¹ ([#719](https://github.com/auth0/auth0-PHP/pull/719))
814

915
> **Note**
10-
> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants.
16+
> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants.
1117
1218
## [8.6.0](https://github.com/auth0/auth0-PHP/tree/8.6.0) - 2023-05-02
1319

@@ -21,7 +27,7 @@
2127
- `Auth0\SDK\Auth0::isAuthenticated()` has been added as a shortcut method. It is an alias for `getCredentials() !== null`.
2228

2329
> **Note**
24-
> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants.
30+
> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants.
2531
2632
## [8.5.0](https://github.com/auth0/auth0-PHP/tree/8.5.0) - 2023-03-27
2733

Diff for: src/Auth0.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ final class Auth0 implements Auth0Interface
2121
/**
2222
* @var string
2323
*/
24-
public const VERSION = '8.7.0';
24+
public const VERSION = '8.7.1';
2525

2626
/**
2727
* Authentication Client.

Diff for: tests/Unit/API/Management/ActionsTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@
204204
$this->endpoint->deploy($id);
205205

206206
expect($this->api->getRequestMethod())->toEqual('POST');
207-
expect($this->api->getRequestUrl())->toEndWith('/api/v2/actions/' . $id . '/deploy');
207+
expect($this->api->getRequestUrl())->toEndWith('/api/v2/actions/actions/' . $id . '/deploy');
208208
expect($this->api->getRequestQuery())->toBeEmpty();
209209
})->with(['valid id' => [
210210
fn() => uniqid()

0 commit comments

Comments
 (0)