chore(deps): update all non-major dependencies#83
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Conversation
978e047 to
0fe1778
Compare
0c183f2 to
971569a
Compare
971569a to
77ee0c8
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:
^0.19.6→^0.20.02.0.0-beta.7→2.0.0-canary-20260116^0.6.8→^0.9.424.11.1→24.14.010.24.0→10.32.1^3.7.3→^3.8.1^5.103.0→^5.105.4Release Notes
web-infra-dev/rslib (@rslib/core)
v0.20.0Compare Source
Breaking changes 🚨
Drop Node.js 18 support
Rslib v0.20 requires Node.js 20.19+ or 22.12+, Node.js 18 is no longer supported.
Rsbuild / Rspack v2
Rslib v0.20 now depends on beta version of @rsbuild/core v2 and @rspack/core v2. If you use custom Rsbuild / Rspack configurations or plugins, you may need to make corresponding adjustments.
See the Rsbuild v2 upgrade guide for all breaking changes.
Deprecate
experiments.advancedEsmexperiments.advancedEsmis now deprecated and effectively ignored. Advanced ESM behavior is the default in both bundle and bundleless mode.What you need to do:
experiments.advancedEsmfrom your configRename type
StartServerResultThe exported type
StartServerResulthas been renamed toStartDevServerResult.What's Changed
New Features 🎉
experiments.advancedEsmby @Timeless0911 in #1513Bug Fixes 🐞
Document 📖
Other Changes
53b8394by @renovate[bot] in #1520Full Changelog: web-infra-dev/rslib@v0.19.6...v0.20.0
web-infra-dev/rstest (@rstest/core)
v0.9.4Compare Source
What's Changed
Performance 🚀
Bug Fixes 🐞
Document 📖
mocking re-exported modulestip by @9aoy in #1069Other Changes
Full Changelog: web-infra-dev/rstest@v0.9.3...v0.9.4
v0.9.3Compare Source
What's Changed
New Features 🎉
test.eachby @9aoy in #1049coverage.allowExternaloption by @9aoy in #1050Bug Fixes 🐞
adapter-rsbuildtypes by @9aoy in #1055Document 📖
rstest-best-practicesskill by @9aoy in #1057Other Changes
tsgoin local by @9aoy in #1037Full Changelog: web-infra-dev/rstest@v0.9.2...v0.9.3
v0.9.2Compare Source
What's Changed
Document 📖
Other Changes
53b8394by @renovate[bot] in #1001Full Changelog: web-infra-dev/rstest@v0.9.1...v0.9.2
v0.9.1Compare Source
What's Changed
Performance 🚀
Bug Fixes 🐞
bailconfiguration should work with the test file error by @9aoy in #997Document 📖
rs.mockRequireandrs.doMockRequireAPIs by @9aoy in #1005Other Changes
de0fac2by @renovate[bot] in #1000Full Changelog: web-infra-dev/rstest@v0.9.0...v0.9.1
v0.9.0Compare Source
What's Changed
New Features 🎉
rs.waitForandrs.waitUntilutilities by @9aoy in #982toRstestConfigmethod by @9aoy in #978testListsoption to md reporter by @fi3ework in #987Performance 🚀
jititoautoby @9aoy in #992Bug Fixes 🐞
Document 📖
migrate-to-rstestskill to migration guide by @9aoy in #983Other Changes
Full Changelog: web-infra-dev/rstest@v0.8.5...v0.9.0
v0.8.5Compare Source
What's Changed
Bug Fixes 🐞
__webpack_require__.ris not a function by @9aoy in #965Full Changelog: web-infra-dev/rstest@v0.8.4...v0.8.5
v0.8.4Compare Source
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rstest@v0.8.3...v0.8.4
v0.8.3Compare Source
What's Changed
Bug Fixes 🐞
slowTestThresholdconfiguration by @9aoy in #938Other Changes
Full Changelog: web-infra-dev/rstest@v0.8.2...v0.8.3
v0.8.2Compare Source
Highlights 💡
Introducing Markdown reporter for agent 🤖
Rstest automatically detects AI coding agent (Claude Code, Cursor, Codex, opencode, etc.) and switches to Markdown output — no configuration needed.
The structured Markdown format is easier for LLMs to parse and understand compared to traditional terminal output. Each failure includes a one-click repro command so agents can quickly rerun and debug individual test cases. Output is intelligently truncated to stay within context limits even when many tests fail, saving tokens and reducing cost.
For detailed configuration options, see https://rstest.rs/guide/basic/reporters#markdown-reporter.
md-reporter.mp4
What's Changed
New Features 🎉
mdreporter for AI agent by default by @fi3ework in #911Bug Fixes 🐞
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rstest@v0.8.1...v0.8.2
v0.8.1Compare Source
What's Changed
New Features 🎉
mock: trueoption in rs.mock() by @9aoy in #907spy: trueoption inrs.mock()by @9aoy in #901mockObjectandmockedutilities by @9aoy in #881Bug Fixes 🐞
no test files foundby @9aoy in #900Document 📖
hideSkippedTestFilesandhideSkippedTestsguide by @9aoy in #893reactguide by @9aoy in #903vueguide by @9aoy in #905Other Changes
Full Changelog: web-infra-dev/rstest@v0.8.0...v0.8.1
v0.8.0Compare Source
Highlights 💡
Introducing Browser mode (experimental)
Run UI tests in real browsers (Chromium / Firefox / WebKit) via Playwright — validate real rendering/layout + browser-native APIs, debug visually in the built-in UI, and iterate faster with watch-mode re-runs on source changes.
Note: Browser mode is still experimental — we’re just getting started: more providers, more framework integrations, and, AI.
cursorful-video-1768812047098.mp4
What's Changed
New Features 🎉
rstest-nodeprocess title by @9aoy in #856hideSkippedTestFilesby @9aoy in #867Bug Fixes 🐞
providerfield required by @fi3ework in #886Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rstest@v0.7.9...v0.8.0
v0.7.9Compare Source
What's Changed
New Features 🎉
rstest initcommand by @fi3ework in #841Bug Fixes 🐞
extendsconfiguration correctly by @9aoy in #843Document 📖
lazyBarrellink by @9aoy in #840Other Changes
New Contributors
Full Changelog: web-infra-dev/rstest@v0.7.8...v0.7.9
v0.7.8Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone Asia/Shanghai, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.