File tree 3 files changed +11
-5
lines changed
tests/Unit/API/Management
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
9
## [ 8.7.0] ( https://github.com/auth0/auth0-PHP/tree/8.7.0 ) - 2023-07-20
4
10
5
11
** Added**
6
12
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 ) )
8
14
9
15
> ** 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.
11
17
12
18
## [ 8.6.0] ( https://github.com/auth0/auth0-PHP/tree/8.6.0 ) - 2023-05-02
13
19
21
27
- ` Auth0\SDK\Auth0::isAuthenticated() ` has been added as a shortcut method. It is an alias for ` getCredentials() !== null ` .
22
28
23
29
> ** 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.
25
31
26
32
## [ 8.5.0] ( https://github.com/auth0/auth0-PHP/tree/8.5.0 ) - 2023-03-27
27
33
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ final class Auth0 implements Auth0Interface
21
21
/**
22
22
* @var string
23
23
*/
24
- public const VERSION = '8.7.0 ' ;
24
+ public const VERSION = '8.7.1 ' ;
25
25
26
26
/**
27
27
* Authentication Client.
Original file line number Diff line number Diff line change 204
204
$ this ->endpoint ->deploy ($ id );
205
205
206
206
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 ' );
208
208
expect ($ this ->api ->getRequestQuery ())->toBeEmpty ();
209
209
})->with (['valid id ' => [
210
210
fn () => uniqid ()
You can’t perform that action at this time.
0 commit comments