fix(deps): bump fast-uri to 3.1.2 to resolve CVE-2026-6321 and CVE-2026-6322#39
Merged
Conversation
…26-6322 Pulled in transitively via @docusaurus/core -> ... -> ajv -> fast-uri. ajv's "^3.0.1" range already accepts 3.1.2; only the lockfile pin needed refreshing.
Adds a build-pages job to ci.yml that mirrors the deploy flow in pages.yml (./build.sh Pages -> npm ci -> npm run build) but stops before deployment. This catches docs build regressions before they reach main.
vbreuss
enabled auto-merge (squash)
May 10, 2026 07:57
vbreuss
disabled auto-merge
May 10, 2026 07:57
There was a problem hiding this comment.
Pull request overview
Updates the docs-site dependency lockfile to pick up a patched fast-uri version (addressing the referenced CVEs) and strengthens CI by adding a PR-time docs build job that mirrors the GitHub Pages build flow (without deployment).
Changes:
- Refreshed
Docs/pages/package-lock.jsonto bumpfast-urito3.1.2(transitive via Docusaurus/AJV). - Reformatted
pages.yml/build.ymlfor consistent YAML indentation. - Added a
build-pagesjob toci.ymlto build aggregated docs + Docusaurus site on pull requests.
Reviewed changes
Copilot reviewed 2 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| Testably.Site.slnx | Adds pages.yml to the solution index. |
| Docs/pages/package-lock.json | Updates the pinned fast-uri tarball/version to 3.1.2. |
| .github/workflows/pages.yml | YAML formatting normalization (no functional step changes). |
| .github/workflows/ci.yml | Adds a PR-time “Build Pages” job (aggregate docs + npm ci + npm run build). |
| .github/workflows/build.yml | YAML formatting normalization (no functional step changes). |
Files not reviewed (1)
- Docs/pages/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+13
to
+15
| - uses: actions/checkout@v3 | ||
| - name: Setup .NET | ||
| uses: actions/setup-dotnet@v3 |
Comment on lines
+14
to
+16
| - uses: actions/checkout@v3 | ||
| - name: Setup .NET | ||
| uses: actions/setup-dotnet@v3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pulled in transitively via @docusaurus/core -> ... -> ajv -> fast-uri. ajv's "^3.0.1" range already accepts 3.1.2; only the lockfile pin needed refreshing.
Also adds a build-pages job to ci.yml that mirrors the deploy flow in pages.yml (./build.sh Pages -> npm ci -> npm run build) but stops before deployment.
This catches docs build regressions before they reach main.