chore(deps): update frontend toolchain [Codex] - #1351
Conversation
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
guide | 1de1333 | Commit Preview URL Branch Preview URL |
Sep 16 2026, 02:20 AM |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 25e52b800f
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 863c53d5ac
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 9490020534
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
Upgrade React, React Router, Vite, Vitest, and Playwright across the monorepo. Update GuideHome browser assertions for Vitest 5 element matching.
Use the Playwright 1.63 container required by the upgraded browser test dependency.
Strip React Router data request suffixes before resolving MDX source files during static prerendering.
Normalize React Router prerender request pathnames before resolving MDX files and API module paths.
9490020 to
085ed9c
Compare
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 085ed9c512
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: ff71c4d17a
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
Restore the Docs Pages and Guide Wrangler startup probes lost during the merge resolution.
Updated from the GitHub Actions visual baseline workflow.
Avoid preview-server prerender request failures. Restore CPU-parallel rendering once remix-run/react-router#15255 is fixed.
Guide Cloudflare deployment⛅️ wrangler 4.130.0 To deploy this version to production traffic use the command wrangler versions deploy Changes to non-versioned settings (config properties 'logpush' or 'tail_consumers') take effect after your next deployment using the command wrangler versions deploy Changes to triggers (routes, custom domains, cron schedules, etc) must be applied with the command wrangler triggers deploy |
Cloudflare deploymentDeployement ID: 9374fe1c-643b-453d-a0b9-e876b2709256 ⛅️ wrangler 4.130.0 ✨ Uploading _redirects |
Updates the monorepo frontend runtime and toolchain dependencies to their latest releases.
React and React DOM move to 19.3.0; React Router packages move to 8.3.1; Vite moves to 8.3.0; Vitest plus its browser adapters move to 5.0.0 and 2.3.0; and Playwright moves to 1.63.0. The unused react-router-dom declarations are removed so its 7.x runtime is not installed alongside Router 8.
The Playwright CI and visual-screenshot images now use v1.63.0-noble, matching the upgraded browser dependency. GuideHome browser assertions now target visible content nodes rather than parent-container text, matching Vitest 5 exact element-content behavior.
Visual-regression screenshot baselines were regenerated through the CI-owned workflow because the Vitest 5 browser-mode upgrade changes the captured image dimensions. This updates test fixtures for the upgraded runner and Playwright image; it does not represent an intentional product UI change.
React Router pre-rendering writes a .data client-navigation payload for each static route (official documentation). The shared pathname normalizer removes both normal .data suffixes and V8 trailing-slash data segments (
/_.data) before an MDX loader maps the request to a source file or the API loader splits it into module-path segments. This allows archived blog, other dynamic MDX, and API module routes to prerender successfully, in line with the React Router v8 guidance for custom .data request URL handling (upgrade documentation).