chore(docs): refresh blog visual baseline after content change#3287
Merged
wheels-bot[bot] merged 1 commit intoJul 6, 2026
Merged
Conversation
Contributor
Author
There was a problem hiding this comment.
Wheels Bot — Reviewer
TL;DR: This PR refreshes the stale blog visual-regression baseline (web/tests/visual-baselines/blog.png) after the preceding blog-content commit, opened automatically by .github/workflows/web-deploy.yml (issue #2915). It is a single binary-asset change with no code, no cross-engine surface, and no security surface. Verdict: comment (clean, mechanical — nothing to block on).
Correctness
- The diff touches exactly one file,
web/tests/visual-baselines/blog.png(Bin 119380 -> 119959 bytes), which is the baseline the visual-regression job compares against and the same path the workflow stages (git add web/tests/visual-baselines/blog.png,.github/workflows/web-deploy.yml:327). The drift is the expected consequence of the prior content commit2af35e1b8 docs(web/blog): Caching in Wheels 4.0, and the workflow only commits a refreshed baseline after the regression test passes (.github/workflows/web-deploy.yml:287-291), so it cannot silently mask a genuine regression. No issue.
Commits
chore(docs): auto-refresh blog visual baseline after content changeconforms tocommitlint.config.js: valid typechore, unrestricted scopedocs, non-empty subject, not ALL-CAPS, header under 100 chars.
No Conventions / Cross-engine / Tests / Docs / Security findings — a binary baseline refresh has no such surface.
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.
Summary
A blog-content merge changed the blog index page, so the committed visual-regression baseline at
web/tests/visual-baselines/blog.pngis stale. Without this refresh, every subsequentweb/**-touching PR fails the Visual regression check on a deterministic diff until someone refreshes manually (issue #2915).develop's branch protection rejects direct pushes, so the refresh lands through this PR, opened and merged by the deploy run that published the blog change.
🤖 Opened automatically by .github/workflows/web-deploy.yml.