-
-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Preparing 5.0.0 #520
Preparing 5.0.0 #520
Conversation
@@ -52,8 +52,5 @@ | |||
"web-token/jwt-signature-algorithm-ecdsa": "Recommended for the AndroidSafetyNet Attestation Statement support", | |||
"web-token/jwt-signature-algorithm-eddsa": "Recommended for the AndroidSafetyNet Attestation Statement support", | |||
"symfony/event-dispatcher": "Recommended to use dispatched events" | |||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be addressed in 4.8.x
src/webauthn/src/Denormalizer/AttestationObjectDenormalizer.php
Outdated
Show resolved
Hide resolved
734c7b7
to
c4d42c2
Compare
@@ -30,7 +30,7 @@ public function findUserEntity(Request $request): PublicKeyCredentialUserEntity | |||
$format = method_exists( | |||
$request, | |||
'getContentTypeFormat' | |||
) ? $request->getContentTypeFormat() : $request->getContentType(); | |||
) ? $request->getContentTypeFormat() : $request->getContentTypeFormat(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be fixed
@@ -91,26 +84,15 @@ public function setEventDispatcher(EventDispatcherInterface $eventDispatcher): v | |||
$this->dispatcher = $eventDispatcher; | |||
} | |||
|
|||
public static function create(): self | |||
public static function create(ClockInterface $clock): self |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be addressed in 4.8.x
|
||
final class TrustPathDenormalizer implements DenormalizerInterface | ||
{ | ||
public function denormalize(mixed $data, string $type, string $format = null, array $context = []) | ||
public function denormalize(mixed $data, string $type, string $format = null, array $context = []): mixed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be addressed in 4.8.x
tests/library/Functional/AttestationStatementWithTokenBindingTest.php
Outdated
Show resolved
Hide resolved
62f6a48
to
8d70382
Compare
8d70382
to
7cb2ad9
Compare
The "minimum-stability" setting in the composer.json file was removed since we had already achieved a stable production phase. It was originally set to "beta", which is not necessary anymore.
Simplified the structuring of authenticatorSelection data in RegistrationAreaTest and made handling of JSON encoding errors more explicit in BiometricAccuracyDescriptorObjectTest and AttestedCredentialDataTest. This aims to make the tests more readable and robust against potential encoding issues.
Reformatted all CASE statements in TPMAttestationStatementSupport.php and RequestBodyUserEntityGuesser.php to have a space before the colon for improved readability, following the standard coding style guide.
SonarCloud Quality Gate failed. 0 Bugs 0.0% Coverage Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
Closing in favor of #557 |
Modifications: