Closed
Description
Symfony version(s) affected
7.1.1
Description
When trying to validate UUIDs in a format that's not Rfc4122 it'll always fail.
How to reproduce
Uuid::isValid("1CCD2w4mK2m455S2BAXFht"); //should be true since it's a valid UUIDv7 in base58 format.
Possible Solution
The isValid
seems to contain a regex that checks for the Rfc4122 structure, probably should be expanded to check the other representations as well.
Additional Context
No response