Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
canonical-schema: Fix UUID regex pattern
Commit cea02af (#1676) added a UUID to each test case. However, the regex pattern that it added to the canonical schema was too permissive, meaning that CI would pass on a PR that added, for example, a version 1 UUID (see #1735). Changes: - Use `a-f` instead of `a-z` - The third group must start with `4`. - The fourth group must start with `8`, `9`, `a` or `b`.
- Loading branch information