File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed
tests/Unit/API/Management Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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 ()
You can’t perform that action at this time.
0 commit comments