diff --git a/CHANGELOG.md b/CHANGELOG.md index a0ad0d1..3d5d60e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,19 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee ## 0.8.0 +### Added + +- Updated `UserInfo` to reflect the [Auth0 user model](https://auth0.com/docs/users/user-profile-structure) + ### Changed -- [BC break] The `UserInfo::getUserId()` does not verify `"sub"` anymore. It goes directly to `"user_id"`. +- [BC break] The `UserInfo::getUserId()` does not use `"sub"` anymore. It goes directly to `"user_id"`. Consider using `UserInfo::getLoginIdentifier()` instead +- [BC break] The configuration has moved around to directly pass config values to the SDK. See readme or dump configuration reference. + +### Removed + +- [BC break] Removed `ManagementFactory`. +- [BC break] DI container parameters ## 0.7.0 diff --git a/composer.json b/composer.json index 8aa4a50..ec2645f 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ ], "require": { "php": ">=7.4", - "auth0/auth0-php": "^8.0.0-BETA2", + "auth0/auth0-php": "^8.0.0-BETA3", "psr/cache": "^1.0 || ^2.0 || ^3.0", "psr/log": "^1.0", "symfony/config": "^5.2",