chore(deps): consolidate open Dependabot dependency updates - #92
Merged
Merged
Conversation
Bring the open Dependabot updates together into a single, tested change: Runtime/build: - astro 7.1.6 -> 7.2.8 (#83, supersedes #70) - sharp 0.35.3 -> 0.35.4 (#87) Dev/tooling: - vitest 4.1.10 -> 5.0.0 (#85) - @playwright/test 1.61.1 -> 1.62.1, @axe-core/playwright 4.12.1 -> 4.13.0, @types/node 26.1.1 -> 26.3.0, eslint 10.7.0 -> 10.9.1, eslint-plugin-astro 3.0.0 -> 3.1.0, globals 17.7.0 -> 17.11.0, tsx 4.23.1 -> 4.23.12, typescript-eslint 8.64.0 -> 8.68.0 (#71 group) - postcss 8.5.19 -> 8.5.28 (#77) Transitive (lockfile): - svgo 4.0.2 -> 4.1.0 (#82), postcss-selector-parser 7.1.1 -> 7.1.6 (#76), @humanfs/node 0.16.7 -> 0.16.8 (#75), fast-uri 3.1.5 -> 3.1.7 (#74) nanoid 3.3.19 (#86) is intentionally left for its own PR: it is still within the repo's 7-day Dependabot cooldown window. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
The frontend-tests job runs inside the pinned Playwright image, whose tag must match the @playwright/test version so the bundled browsers resolve. Bumping @playwright/test to 1.62.1 without this caused the e2e job to fail with "browserType.launch: Executable doesn't exist" (see Dependabot PR #71). Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
This was referenced Sep 11, 2026
There was a problem hiding this comment.
Copilot review overview
🟡 Changes recommended
The dependency graph requires Node >=22.19, while the project still supports Node 22.13+.
Get a fresh assessment by requesting another Copilot review.
Review tier: Lite
Findings: 1
New issues introduced by this change (1)
| Severity | Finding |
|---|---|
package.json — Astro update exceeds the declared Node.js support floor View comment |
What changed in this PR
Consolidates Dependabot dependency updates and aligns the Playwright CI container with the upgraded test package.
Changes:
- Updates runtime, development, and transitive dependencies.
- Refreshes the npm lockfile.
- Updates the Playwright CI image to
v1.62.1-noble.
| File | Description |
|---|---|
package.json |
Updates direct dependencies and tooling. |
package-lock.json |
Resolves the updated dependency graph. |
.github/workflows/run-tests.yml |
Aligns the Playwright CI container version. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| "@astrojs/check": "^0.9.10", | ||
| "@tailwindcss/vite": "^4.3.3", | ||
| "astro": "^7.1.6", | ||
| "astro": "^7.2.8", |
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.

Description
Consolidates the currently open Dependabot dependency PRs into a single, fully-tested change instead of merging them one at a time (which would cascade
package-lock.jsonconflicts and require a rebase + CI cycle per PR). Also fixes the CI break that the@playwright/testbump would otherwise cause.Related Issue
Supersedes Dependabot PRs #70, #71, #74, #75, #76, #77, #82, #83, #85, #87.
Type of Change
Changes Made
Dependency updates (pinned to the exact versions the Dependabot PRs proposed):
CI:
frontend-testsPlaywright container imagev1.61.1-noble→v1.62.1-nobleto match the new@playwright/test. Without this, the e2e job fails withbrowserType.launch: Executable doesn't exist— the same failure seen on Dependabot PR chore(deps-dev): bump the npm-development group across 1 directory with 10 updates #71.Intentionally not included:
Testing
Data Layer Changes
npm run test:unit- all tests pass (27/27, on vitest 5)npm run db:generate) for any schema change — n/aFrontend Changes
npm run test:e2e- all tests pass (21/21)data-testidattributes to interactive elements — n/anpm run build, via the e2e webServer)Also ran
npm run lint(clean) andnpm run typecheck:all(0 errors).Checklist
Additional Notes
Versions are pinned to what each Dependabot PR proposed (rather than the newest satisfying release) to keep this a faithful, reviewable consolidation of the reviewed PRs.