chore(deps-dev): bump mkdocs-material from 9.7.6 to 9.7.7 in the uv group across 1 directory - #16
Merged
Merged
Conversation
Bumps the uv group with 1 update in the / directory: [mkdocs-material](https://github.com/squidfunk/mkdocs-material). Updates `mkdocs-material` from 9.7.6 to 9.7.7 - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](squidfunk/mkdocs-material@9.7.6...9.7.7) --- updated-dependencies: - dependency-name: mkdocs-material dependency-version: 9.7.7 dependency-type: direct:development dependency-group: uv ... Signed-off-by: dependabot[bot] <support@github.com>
CameronBrooks11
added a commit
that referenced
this pull request
Sep 5, 2026
) ## The gap The docs site is built with `uv sync --group docs`, so **what it ships is decided by `uv.lock`** — but `uv.lock` and `pyproject.toml` were not trigger paths. A dependency fix could land on `main` while the deployed site kept serving the previous build, and there was no `workflow_dispatch`, so it could not be rebuilt by hand either. ## Not hypothetical `mkdocs-material 9.7.6` — [GHSA-xvg9-69gf-fjrf](GHSA-xvg9-69gf-fjrf) / CVE-2026-73295, DOM XSS in search suggestions, patched in 9.7.7 — was **live on the published docs**: ``` $ curl -s https://heibench.github.io/gerberdiff/ | grep generator <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.7.6"> ``` The advisory is scoped `development`, which understates it here: the vulnerable code is in the search bundle that the public site serves. Merging #16 alone would have closed the Dependabot alert and left that build served — a green signal that did not match what was deployed. ## After #16, a fresh strict build from the updated lock ``` $ uv sync --group docs && uv run mkdocs build --strict <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.7.7"> ``` ## The change Adds `uv.lock` and `pyproject.toml` to both trigger lists, and adds `workflow_dispatch`. Because `.github/workflows/docs.yml` is itself a trigger path, **merging this redeploys the site**, which is what actually gets 9.7.7 in front of readers. `orlab`'s docs workflow already has the right shape — no path filter plus `workflow_dispatch` — so this brings gerberdiff in line with the sibling rather than inventing a convention.
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.
Bumps the uv group with 1 update in the / directory: mkdocs-material.
Updates
mkdocs-materialfrom 9.7.6 to 9.7.7Release notes
Sourced from mkdocs-material's releases.
Changelog
Sourced from mkdocs-material's changelog.
... (truncated)
Commits
b3e6dd8Prepare 9.7.7 release52fb6beMerge commit from fork901e633AddedSECURITY.mdwith EOL notice5b36f2aBump js-yaml from 4.1.1 to 4.2.0 (#8598)2d11e7bBump form-data from 3.0.4 to 3.0.5 (#8597)ae05a53Bump esbuild from 0.27.2 to 0.28.1 (#8596)434af93Bump shell-quote from 1.7.3 to 1.8.4 (#8593)4447cdaDocumentation (#8590)8f8d551Updated copyright year (#8588)08d8514Bump fast-uri from 3.0.3 to 3.1.2 (#8587)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditionsYou can disable automated security fix PRs for this repo from the Security Alerts page.