chore: consolidate major dev-dependency upgrades (TypeScript 6, testing-library/react 16, jsdom 29)#14
Merged
Merged
Conversation
Consolidate three parked Dependabot major-version dev-dependency upgrades that pass full local validation into a single change. Key changes: - typescript ~5.8.0 -> ~6.0.3 (root) - @testing-library/react ^14.0.0 -> ^16.3.2 (packages/app) - jsdom ^27.1.0 -> ^29.1.1 (root) Validated with yarn tsc:full, CI=true yarn test:all, yarn build:backend, and yarn build:all, all green. Supersedes Dependabot PRs #6, #7, and #8. Claude-Session: https://claude.ai/code/session_01NMSkwUcaTmZr7S5XmV2aFG
ecv
approved these changes
Jul 2, 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.
Summary
Consolidates three parked Dependabot major dev-dependency upgrades into a single change. Each was validated end-to-end locally against the current
main; all three passed the full gauntlet, so all three are included here.This supersedes the individual Dependabot PRs #6, #7, and #8 — they can be closed in favor of this one.
Included upgrades
Validation
Ran against Node 22 / Yarn 4.13.0 after
yarn install:yarn tsc:full— pass (full, non-incremental typecheck,--skipLibCheck false; exercises TypeScript 6.0.3 across the repo)CI=true yarn test:all— pass (2 suites, 7 tests; exercises @testing-library/react 16 rendering under the jsdom 29 test environment)yarn build:backend— passyarn build:all— passyarn lint:allreports 2 pre-existing errors onmainunrelated to these bumps:@backstage/themeis imported inpackages/appbut not declared in itspackage.json(@backstage/no-undeclared-imports). These are present onmainbefore any change here and are not introduced or affected by these upgrades. Worth fixing separately.Excluded upgrades
None. The concern going in was that TypeScript 6 might be incompatible with the pinned
@backstage/cli(0.36.3), which would have forced excluding it. In practice the full typecheck, test suite, and both builds all pass with TypeScript 6.0.3, so it is kept.Notes
@backstage/clistill declares ajsdom: ^27.1.0peer range, soyarn installemits a non-fatal peer-dependency notice for the jsdom 29 bump. The test environment runs correctly on jsdom 29 regardless; the notice is informational.