diff --git a/CHANGELOG-2.x.md b/CHANGELOG-2.x.md index 6bda7b8..9b8750a 100644 --- a/CHANGELOG-2.x.md +++ b/CHANGELOG-2.x.md @@ -2,6 +2,11 @@ This changelog references the relevant changes done in 2.x versions. +## v2.1.0 +* Uses `"gdbots/iam": "^2.1"` +* Uses `"gdbots/ncr-bundle": "^2.1"` + + ## v2.0.1 * Use `TokenVerifier` instead of `IdTokenVerifier` in `Auth0JwtDecoder::decodeRS256` because we are validating an access token not an id token. diff --git a/composer.json b/composer.json index c4fa888..9bf7ded 100755 --- a/composer.json +++ b/composer.json @@ -6,14 +6,14 @@ "license": "Apache-2.0", "require": { "php": ">=7.4", - "gdbots/iam": "^2.0", - "gdbots/ncr-bundle": "^2.0", + "gdbots/iam": "^2.1", + "gdbots/ncr-bundle": "^2.1", "symfony/security-bundle": "^5.1" }, "require-dev": { "phpunit/phpunit": "^9.2", "auth0/auth0-php": "^7.0", - "gdbots/acme-schemas": "^2.0" + "gdbots/acme-schemas": "^2.1" }, "autoload": { "psr-4": { diff --git a/src/PbjxPermissionValidator.php b/src/PbjxPermissionValidator.php index b30de39..7953cd4 100755 --- a/src/PbjxPermissionValidator.php +++ b/src/PbjxPermissionValidator.php @@ -3,7 +3,7 @@ namespace Gdbots\Bundle\IamBundle; -use Gdbots\Bundle\PbjxBundle\Validator\PermissionValidatorTrait; +use Gdbots\Bundle\PbjxBundle\PermissionValidatorTrait; use Gdbots\Pbj\Message; use Gdbots\Pbj\WellKnown\NodeRef; use Gdbots\Pbjx\DependencyInjection\PbjxValidator;