chore(deps): consolidate 15 Dependabot bumps and auto-merge future ones - #213
Merged
Merged
Conversation
Replaces PRs #196-#210 with a single verified update across the five demo packages. Every bump is applied at the version Dependabot proposed, with one deviation: jsdom lands on 29.1.1 rather than the 30.0.1 in #209, because jsdom 30 requires Node ^22.22.2 while CI and every package engine field target Node 20. On 30.0.1 the vitest jsdom environment fails to boot ("webidl.util.markAsUncloneable is not a function"); 29.1.1 is the newest release that still supports Node 20. Verified locally on Node 20.20.2 -- all five packages' own test scripts, plus strava-explorer lint and the real-world-reasoning-agent vite 8 build, plus root check:labs, check:content, and test:labs. Going forward, dependabot-auto-merge.yml enables GitHub auto-merge on Dependabot PRs so branch protection merges them once CI is green. Majors are excluded and get a review-me comment instead -- the jsdom case above is precisely the failure a green-tests gate does not catch on its own. dependabot.yml now groups each ecosystem's weekly minor and patch bumps into one PR so this backlog cannot rebuild. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This was referenced Aug 15, 2026
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.
Replaces the 15 open Dependabot PRs (#196–#210) with one verified update, and sets up auto-merge so the backlog does not rebuild.
Dependency bumps
demos/aqi-mapdemos/isochronesdemos/strava-explorerdemos/strava-explorerdemos/strava-explorerdemos/hairstyle-ai-studiodemos/hairstyle-ai-studiodemos/hairstyle-ai-studiodemos/hairstyle-ai-studiodemos/hairstyle-ai-studiodemos/real-world-reasoning-agentdemos/real-world-reasoning-agentdemos/real-world-reasoning-agentdemos/real-world-reasoning-agentdemos/real-world-reasoning-agentOne deviation: jsdom 29.1.1, not 30.0.1
PR #209 proposed jsdom 30.0.1. That release requires
node ^22.22.2 || ^24.15.0 || >=26.0.0, while CI pins Node 20 and every packageenginesfield targets Node 20/20.19. On 30.0.1 the vitest jsdom environment fails to boot on Node 20:29.1.1 is the newest jsdom that still supports Node 20 (
^20.19.0 || ^22.13.0 || >=24.0.0). Taking jsdom 30 would require moving CI and the Dockerfile to Node 22+ first — worth doing, but it is a separate change from a dependency sweep.Auto-merge going forward
.github/workflows/dependabot-auto-merge.yml— on a Dependabot PR, enables GitHub auto-merge (squash). Branch protection still gates the actual merge behind every required check inci.yml, so a red build leaves the PR open exactly as today. Majors are excluded and get a "review me" comment instead — the jsdom case above is precisely the break a green-tests gate does not catch on its own..github/dependabot.yml— each ecosystem now groups its weekly minor and patch bumps into a single PR. Fifteen one-line PRs cost more review attention than the updates were worth.Repo-level "Allow auto-merge" must be on for the workflow to take effect.
Verification
Run locally on Node 20.20.2, all green:
demos/aqi-map—npm test(node --test + build)demos/isochrones—npm test(node --test + build)demos/strava-explorer—npm run lint,npm test(38 passed),npm run builddemos/hairstyle-ai-studio—npm run check(typecheck + vitest + build)demos/real-world-reasoning-agent—npm test(typecheck + 505 vitest tests + source check),npm run build(vite 8)npm run check:labs,npm run check:content,npm run test:labs(48 passed)🤖 Generated with Claude Code