Skip to content

Commit 14732e2

Browse files
Release 8.0.0-beta.0
1 parent d14b283 commit 14732e2

3 files changed

Lines changed: 20 additions & 2 deletions

File tree

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.22.0
1+
8.0.0-beta.0

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Change Log
22

3+
## [8.0.0-beta.0](https://github.com/auth0/laravel-auth0/tree/8.0.0-beta.0) (2026-07-31)
4+
[Full Changelog](https://github.com/auth0/laravel-auth0/compare/7.22.0...8.0.0-beta.0)
5+
6+
**Breaking Changes**
7+
8+
- Bumped the `auth0/auth0-php` dependency from `^8.19` to `^9.0`, which rewrites the Management API
9+
- `management()` now returns the base `ManagementClient` instead of `ManagementInterface`; sub-clients are accessed as properties (`$management->users`) and responses are typed objects
10+
- Removed the `deprecated/` v6 to v7 compatibility shims
11+
12+
**Added**
13+
14+
- `management()` accepts an options array (`timeout`, `maxRetries`, `additionalHeaders`, `audience`, `token`, `httpClient`, `tokenCache`), with defaults settable under a `management` key in `config/auth0.php` [\#497](https://github.com/auth0/laravel-auth0/pull/497) ([kishore7snehil](https://github.com/kishore7snehil))
15+
- `UPGRADE.md` v7 to v8 migration guide
16+
17+
**Unchanged**
18+
19+
- Authentication surface (login, logout, callback, token handling) — the guards, middleware, user providers, session store, and events behave exactly as in v7
20+
321
## [7.22.0](https://github.com/auth0/laravel-auth0/tree/7.22.0) (2026-04-08)
422

523
[Full Changelog](https://github.com/auth0/laravel-auth0/compare/7.21.0...7.22.0)

src/ServiceAbstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ abstract class ServiceAbstract extends InstanceEntityAbstract
2222
*
2323
* @var string
2424
*/
25-
public const VERSION = '7.22.0';
25+
public const VERSION = '8.0.0-beta.0';
2626

2727
/**
2828
* Decode a PSR-7 HTTP Response Message containing a JSON content body to a PHP array. Returns null if the response was not successful, or the response body was not JSON.

0 commit comments

Comments
 (0)