Skip to content

Commit 0d78289

Browse files
Release 8.18.0 (#803)
### Changes Security fix: Resolve CVE-2025-68129
1 parent 344e490 commit 0d78289

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.17.0
1+
8.18.0

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
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

src/Auth0.php

Lines changed: 1 addition & 1 deletion
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.17.0';
24+
public const VERSION = '8.18.0';
2525

2626
/**
2727
* Authentication Client.

tests/Utilities/TokenGenerator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)