chore(deps): update all non-major dependencies - #1930
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/all-non-major
branch
5 times, most recently
from
September 20, 2026 04:54
d63c426 to
adf5e27
Compare
renovate
Bot
force-pushed
the
renovate/all-non-major
branch
from
September 21, 2026 09:47
adf5e27 to
39f0e4e
Compare
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.
This PR contains the following updates:
^8.0.5→^8.0.6~2.2.6→~2.2.8^2.0.21→^2.0.22^2.0.21→^2.0.22^2.0.21→^2.0.22^2.0.21→^2.0.22^2.0.21→^2.0.22^2.0.21→^2.0.22^2.0.21→^2.0.22^2.0.21→^2.0.22^0.11.12→^0.12.0^0.11.12→^0.12.0^10.4.1→^10.4.2^24.13.4→^24.13.6^2.5.0→^2.5.1^1.3.1→^1.4.1^4.76.0→^4.78.112.4.1→12.5.1>=12.4.1→>=12.5.1^3.9.6→^3.9.8^1.0.5→^1.0.7^0.7.4→^0.7.6^3.4.2→^3.6.0^3.4.2→^3.6.0^3.4.2→^3.6.0^5.57.0→^5.57.1^4.23.13→^4.23.15^3.5.42→^3.5.43Release Notes
babel/babel (@babel/core)
v8.0.6Compare Source
👓 Spec Compliance
babel-helper-validator-identifier,babel-parser🐛 Bug Fix
babel-parserbabel-helper-string-parser,babel-parser🏠 Internal
babel-code-frame,babel-core,babel-generator,babel-helper-create-class-features-plugin,babel-helper-module-transforms,babel-parser,babel-plugin-bugfix-safari-rest-destructuring-rhs-array,babel-plugin-proposal-destructuring-private,babel-plugin-proposal-discard-binding,babel-plugin-transform-regenerator,babel-plugin-transform-typescript,babel-preset-env,babel-traverse,babel-typesbabel-parserbabel-corebabel-build-external-helpers,babel-cli,babel-code-frame,babel-core,babel-generator,babel-helper-compilation-targets,babel-helper-create-class-features-plugin,babel-helper-globals,babel-helper-string-parser,babel-helper-transform-fixture-test-runner,babel-helper-validator-identifier,babel-node,babel-parser,babel-plugin-transform-async-generator-functions,babel-plugin-transform-runtime,babel-register,babel-runtime-corejs3,babel-traverse🏃♀️ Performance
babel-helper-compilation-targets,babel-helper-transform-fixture-test-runnerlru-cachewithflru(@nicolo-ribaudo)web-infra-dev/rsbuild (@rsbuild/core)
v2.2.8Compare Source
What's Changed
New Features 🎉
Performance 🚀
Refactor 🔨
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v2.2.7...v2.2.8
v2.2.7Compare Source
What's Changed
New Features 🎉
Other Changes
Full Changelog: web-infra-dev/rsbuild@v2.2.6...v2.2.7
web-infra-dev/rspress (@rspress/core)
v2.0.22Compare Source
What's Changed
New Features 🎉
Headcomponent for metadata links inLlmsHint🔗 by @sanjaiyan-dev in #3672Bug Fixes 🐞
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rspress@v2.0.21...v2.0.22
web-infra-dev/rstest (@rstest/adapter-rslib)
v0.12.0Compare Source
Read the Rstest 0.12 announcement for the full story.
Breaking Changes
If you only use the
rstestCLI with a config file, no code changes are needed.JavaScript API
The experimental JavaScript API is redesigned in 0.12, in one step before 1.0. See Rstest instance for the new API.
runRstestis removed. Create an instance withcreateRstestinstead.runCLImoves from@rstest/coreto@rstest/core/api.TestRunResulthas the same shape as the reporter'sonTestRunEndpayload, andstatus: 'pass' | 'fail' | 'error'replacesok.Custom reporters
See Reporter API for details.
onTestRunEndnow receivessummary, andunhandledErrorsis a requiredSerializedError[]instead of an optionalError[].filterRerunTestPathsis renamed torerunTestPaths.onExitis now also called after a run, list, or merge finishes normally, not only on an abnormal exit.Peer dependency range
The adapters,
@rstest/browser-react,@rstest/coverage-istanbul,@rstest/coverage-v8, and@rstest/playwrightnow require@rstest/core@^0.12.0. Upgrade all@rstest/*packages together.Test environment prebundle
testEnvironment.prebundlenow defaults to'auto'. If a test environment behaves differently after the upgrade, set it tofalse. See Environment prebundle.Highlights
Rstest 0.12 adds E2E and Module Federation testing support, makes large test suites faster with VM pools and test environment prebundle, and introduces a new JavaScript API.
E2E testing support
@rstest/playwright integrates Playwright into Rstest, so unit tests, component tests, and E2E tests share one config, one set of commands, and the same reporters. Use
definePlaywrightConfigto get the same defaults as Playwright and customize them when needed. See E2E testing.Module Federation testing support
With the @module-federation/rstest plugin, tests import remote modules the same way a consumer application does. Rstest loads the real exposed modules and resolves shared dependencies, so integration problems between consumer and producer show up in unit tests. It works in Node, jsdom, happy-dom, and browser mode. See Module Federation.
New
vmThreadsandvmForkspoolsThe new vmThreads and vmForks pools reuse workers across test files and create a fresh
vm.Contextfor each file. Each file still gets its own JavaScript realm and module graph, while worker startup, dependency resolution, and V8 compilation are shared. This helps most in suites with many jsdom / happy-dom test files.On a jsdom benchmark project of 2,400 files and 20,000 tests (15 workers, every process starting from an empty cache):
forksvmThreadsTo limit the memory of a single worker, set pool.memoryLimit. Rstest replaces a worker once it exceeds the threshold. See Choose a pool type before switching.
Faster jsdom / happy-dom loading
Test environment prebundle is now enabled by default. Previously, every worker resolved and executed each module file of jsdom or happy-dom one by one. Rstest now builds the environment into one ESM bundle that all workers share.
On a benchmark of 100 files and 1,000 tests:
A new JavaScript API
createRstest makes it easier to integrate Rstest into tools, IDEs, and other Node.js programs. It shares the same core execution capabilities as the
rstestcommand, so you can run tests, watch, list tests, and merge blob reports from code. See Rstest instance.What's Changed
Breaking Changes 🍭
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rstest@v0.11.12...v0.12.0
testing-library/dom-testing-library (@testing-library/dom)
v10.4.2Compare Source
Bug Fixes
vuejs/test-utils (@vue/test-utils)
v2.5.1Compare Source
What's Changed
New Contributors
Full Changelog: vuejs/test-utils@v2.5.0...v2.5.1
Rich-Harris/magic-string (magic-string)
v1.4.1Compare Source
Bug Fixes
v1.4.0Compare Source
Bug Fixes
Features
Performance Improvements
1.3.2 (2026-09-15)
Bug Fixes
1.3.1 (2026-09-10)
v1.3.2Compare Source
Bug Fixes
Features
Performance Improvements
1.3.2 (2026-09-15)
Bug Fixes
1.3.1 (2026-09-10)
streamich/memfs (memfs)
v4.78.1Compare Source
What's Changed
.queryPermission()by @streamich in #1295Full Changelog: streamich/memfs@v4.78.0...v4.78.1
v4.78.0Compare Source
What's Changed
cpmodule by @streamich in #1294Full Changelog: streamich/memfs@v4.77.0...v4.78.0
v4.77.0Compare Source
What's Changed
Full Changelog: streamich/memfs@v4.76.0...v4.77.0
pnpm/pnpm (pnpm)
v12.5.1: pnpm 12.5.1Compare Source
Patch Changes
pnpm now reports an unknown task setting in
pnpm-workspace.yamland carries on. It used to refuse to start, so a project could not use a task setting that only the pnpm version itspackageManagerpins reads. The setting is still an error when the running pnpm is that pinned version.Python interpreter installation now retries historical release metadata requests. It caches the release list for up to 24 hours and refreshes it once after a lookup miss. When a release omits the current platform, the search samples at most eight other releases before reporting that t
Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.