File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed
Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1- 8.17 .0
1+ 8.18 .0
Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## [ 8.18.0] ( https://github.com/auth0/auth0-PHP/tree/8.18.0 ) (2025-12-16)
4+ [ Full Changelog] ( https://github.com/auth0/auth0-PHP/compare/8.17.0...8.18.0 )
5+
6+ ** Fixed**
7+
8+ - Security fix: Resolve CVE-2025 -68129
9+
310## [ 8.17.0] ( https://github.com/auth0/auth0-PHP/tree/8.17.0 ) (2025-10-01)
411[ Full Changelog] ( https://github.com/auth0/auth0-PHP/compare/8.16.0...8.17.0 )
512
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.17 .0 ' ;
24+ public const VERSION = '8.18 .0 ' ;
2525
2626 /**
2727 * Authentication Client.
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ protected static function getIdTokenClaims(
2626 'sid ' => '__test_sid__ ' ,
2727 'iss ' => 'https://domain.test/ ' ,
2828 'aud ' => '__test_client_id__ ' ,
29- // 'nonce' => '__test_nonce__', Only ID tokens should have nonce claims
29+ 'nonce ' => '__test_nonce__ ' ,
3030 'auth_time ' => time () - 100 ,
3131 'exp ' => time () + 1000 ,
3232 'iat ' => time () - 1000 ,
@@ -43,7 +43,7 @@ protected static function getAccessTokenClaims(
4343 'iss ' => 'https://domain.test/ ' ,
4444 'sid ' => '__test_sid__ ' ,
4545 'aud ' => '__test_client_id__ ' ,
46- 'nonce ' => '__test_nonce__ ' ,
46+ // 'nonce' => '__test_nonce__', Only ID tokens should have nonce claims
4747 'auth_time ' => time () - 100 ,
4848 'exp ' => time () + 1000 ,
4949 'iat ' => time () - 1000 ,
You can’t perform that action at this time.
0 commit comments