build(deps-dev): bump the devdependencies group across 1 directory with 9 updates - #687
Merged
lmorchard merged 2 commits intoSep 15, 2026
Merged
Conversation
…th 9 updates Bumps the devdependencies group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [prettier](https://github.com/prettier/prettier) | `3.9.5` | `3.9.6` | | [tsx](https://github.com/privatenumber/tsx) | `4.23.1` | `4.23.13` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.2` | `26.4.0` | | [jsdom](https://github.com/jsdom/jsdom) | `29.1.1` | `30.0.1` | | [@types/jsdom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsdom) | `28.0.3` | `30.0.0` | | [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.9.1` | `7.0.1` | | [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.3.2` | `16.3.3` | | [@testing-library/user-event](https://github.com/testing-library/user-event) | `14.6.1` | `14.6.6` | | [wxt](https://github.com/wxt-dev/wxt) | `0.20.27` | `0.21.4` | Updates `prettier` from 3.9.5 to 3.9.6 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@3.9.5...3.9.6) Updates `tsx` from 4.23.1 to 4.23.13 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs) - [Commits](privatenumber/tsx@v4.23.1...v4.23.13) Updates `@types/node` from 26.1.2 to 26.4.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `jsdom` from 29.1.1 to 30.0.1 - [Release notes](https://github.com/jsdom/jsdom/releases) - [Commits](jsdom/jsdom@v29.1.1...v30.0.1) Updates `@types/jsdom` from 28.0.3 to 30.0.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jsdom) Updates `@testing-library/jest-dom` from 6.9.1 to 7.0.1 - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - [Commits](testing-library/jest-dom@v6.9.1...v7.0.1) Updates `@testing-library/react` from 16.3.2 to 16.3.3 - [Release notes](https://github.com/testing-library/react-testing-library/releases) - [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md) - [Commits](testing-library/react-testing-library@v16.3.2...v16.3.3) Updates `@testing-library/user-event` from 14.6.1 to 14.6.6 - [Release notes](https://github.com/testing-library/user-event/releases) - [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md) - [Commits](testing-library/user-event@v14.6.1...v14.6.6) Updates `wxt` from 0.20.27 to 0.21.4 - [Release notes](https://github.com/wxt-dev/wxt/releases) - [Commits](wxt-dev/wxt@wxt-v0.20.27...wxt-v0.21.4) --- updated-dependencies: - dependency-name: prettier dependency-version: 3.9.6 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: devdependencies - dependency-name: tsx dependency-version: 4.23.13 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: devdependencies - dependency-name: "@types/node" dependency-version: 26.4.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: devdependencies - dependency-name: jsdom dependency-version: 30.0.1 dependency-type: direct:development update-type: version-update:semver-major dependency-group: devdependencies - dependency-name: "@types/jsdom" dependency-version: 30.0.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: devdependencies - dependency-name: "@testing-library/jest-dom" dependency-version: 7.0.1 dependency-type: direct:development update-type: version-update:semver-major dependency-group: devdependencies - dependency-name: "@testing-library/react" dependency-version: 16.3.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: devdependencies - dependency-name: "@testing-library/user-event" dependency-version: 14.6.6 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: devdependencies - dependency-name: wxt dependency-version: 0.21.4 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: devdependencies ... Signed-off-by: dependabot[bot] <support@github.com>
wxt 0.21 breaks the extension build and typecheck in three ways: 1. `wxt/testing` moved to `wxt/testing/vitest-plugin`, so vitest.config.ts could not resolve `WxtVitest`. 2. The build now runs on vite 8 / rolldown, which errors on a named import that resolves to a type-only export instead of silently erasing it. That broke the release build with `[MISSING_EXPORT] "Logger" is not exported by "../core/src/core.ts"`. Every value import of a type is now a type-only import, which `verbatimModuleSyntax` (newly enabled by wxt's generated tsconfig) flags for us. 3. wxt's generated tsconfig also turns on noUncheckedIndexedAccess, noImplicitOverride and noFallthroughCasesInSwitch. Those produce ~45 pre-existing findings across core and the extension, which is more than a dependency bump should take on, so the extension tsconfig opts out of them for now. verbatimModuleSyntax stays on: it is the check that catches the rolldown failure above.
lmorchard
force-pushed
the
dependabot/npm_and_yarn/devdependencies-00b4c3a632
branch
from
September 15, 2026 21:19
5774a25 to
67d40f9
Compare
lmorchard
enabled auto-merge (squash)
September 15, 2026 21:20
lmorchard
disabled auto-merge
September 15, 2026 21:23
lmorchard
deleted the
dependabot/npm_and_yarn/devdependencies-00b4c3a632
branch
September 15, 2026 21:23
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.
Bumps the devdependencies group with 9 updates in the / directory:
3.9.53.9.64.23.14.23.1326.1.226.4.029.1.130.0.128.0.330.0.06.9.17.0.116.3.216.3.314.6.114.6.60.20.270.21.4Updates
prettierfrom 3.9.5 to 3.9.6Release notes
Sourced from prettier's releases.
Changelog
Sourced from prettier's changelog.
... (truncated)
Commits
8f0c950Release 3.9.6e910764Update changelogec3f1c7Update typescript-eslint to v8.65.0 (#19675)73d2efcUpdate Yuku parser to v0.7.0 (#19664)dd5e24ePreserve quotes forTSMethodSignaturenodes namednew(#19621)c03ab4eUpdate dependency eslint-plugin-unicorn to v72 (#19633)b74dd53Update Yuku parser to v0.6.5 (#19654)f1b594eUpdate dependency eslint-plugin-simple-import-sort to v14 (#19655)0d9dfb6Update Yuku parser to v0.6.4 (#19650)3bbb815Removetypescript-onlydirectory (#19636)Updates
tsxfrom 4.23.1 to 4.23.13Release notes
Sourced from tsx's releases.
... (truncated)
Commits
28e1f12fix(cache): bound shared transform cache memory (#835)ed9d330fix: shimimport.metawhen tokens are split by comments or newlines (#829)651f5betest: cover CommonJS TypeScript import.meta pathsbd3bc64test: cover CommonJS loader source fallback55cbecefix: preserve async ESM require fallback6c5ba85docs: document CommonJS default interopec1bcd5fix: support nyc coverage discovery (#710)b6e5b48docs: clarify CommonJS default imports2f55884fix: map Node test locationsde935d5docs: document Node source-map stack formattingUpdates
@types/nodefrom 26.1.2 to 26.4.0Commits
Updates
jsdomfrom 29.1.1 to 30.0.1Release notes
Sourced from jsdom's releases.
Commits
658448530.0.10c51df6Update dependencies and dev dependencies32adb34Bump@asamuzakjp/dom-selector70f014aSpeed up range operations on large documents250d7eePartially fix getComputedStyle with calc()20a01fc30.0.08c8e583Precompute WPT expectation matchesf32245cBump Node.js floor and dependencies03ef23bAdd background-position longhandsded056fTest CSS.escape() with numeric IDsUpdates
@types/jsdomfrom 28.0.3 to 30.0.0Commits
Updates
@testing-library/jest-domfrom 6.9.1 to 7.0.1Release notes
Sourced from @testing-library/jest-dom's releases.
Commits
3782c78fix: declare vitest as an optional peer dependency (#733)1e39089feat: add toContainAnyBy* and toContainOneBy* query matcherscae44dffeat: add toContainAnyBy* and toContainOneBy* query matchers (#731)55c07ceci: switch release to npm trusted publishing (#726)213256fdocs: move toHaveSelection from the deprecated section (#717)Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for
@testing-library/jest-domsince your current version.Updates
@testing-library/reactfrom 16.3.2 to 16.3.3Release notes
Sourced from @testing-library/react's releases.
Commits
20ce75ffix: Avoid act() re-entrant when dispatching events (#1468)be9d81ddocs: fix typos in comments and types (#1446)Updates
@testing-library/user-eventfrom 14.6.1 to 14.6.6Release notes
Sourced from @testing-library/user-event's releases.
Commits
71a5475fix: default pointer event pointerType to empty string instead of the string ...43efda7fix: tab retargeting if focus moved during keydown (#1296)d7e80e3fix: keyboard event repeat property (#1312)43d8e6cci: remove broken npm backfill step (#1322)1d18b1ffix(release): manually release a patch version (#1321)232f3e6docs: add migration note and clean up README badges (#1320)83e2b22ci: remove deprecated CodeSandbox CI (#1318)e8da819ci: publish to npm via OIDC trusted publishing (#1317)13fa4bcci: stop lint errors from blocking release (#1316)c3cec18chore(ci): make releases work with full git history (#1315)Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for
@testing-library/user-eventsince your current version.Updates
wxtfrom 0.20.27 to 0.21.4Release notes
Sourced from wxt's releases.
... (truncated)
Commits
8fea9b4chore(release): wxt v0.21.49cb69c8chore(deps): inline funtion for cli spinner (#2567)d95b34echore(deps): Replacefilesizewith DIY function (#2589)55b79e8chore(deps): inlineget-port-please(#2576)8ab673efix: don't setuse_dynamic_urlon browsers that don't support it (#2581)aeb16e7docs: Updated outdated defaults for webExt chromium prefs9271f2cfix: skip keyboard shortcuts for non-interactive stdin (#2563)abfff67fix:autoImportsimport path of eslint.config.js (#2561)ba848f0ci: Only open dependabot PRs for major version updatese724217fix(i18n): don't treat mustache-style {{tokens}} as named substitutions (#2486)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions