chore(deps): update all non-major dependencies#130
Merged
Conversation
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
3 times, most recently
from
July 16, 2026 09:15
d29b2a4 to
21d3324
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
July 17, 2026 10:26
21d3324 to
4e3ee61
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.23.1→^0.23.2^0.6.4→^0.7.02.1.2→2.1.42.1.2→2.1.4^0.10.6→^0.11.2^24.13.2→^24.13.311.9.0→11.13.1^3.9.4→^3.9.5Release Notes
web-infra-dev/rslib (@rslib/core)
v0.23.2Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
Full Changelog: web-infra-dev/rslib@v0.23.1...v0.23.2
web-infra-dev/rslint (@rslint/core)
v0.7.0Compare Source
Highlights
Closer ESLint compatibility
Global declarations from
languageOptions.globalsand/* global */comments are now handled consistently across native rules. Target discovery,.gitignorebehavior, and recommended presets for JavaScript, TypeScript, React, import, promise, and Unicorn are also aligned more closely with upstream behavior.Faster linting and LSP feedback
Config discovery now runs in Go, source snapshots are reused across programs, ESLint-plugin pre-pass work is parallelized, single-file LSP linting targets files directly, and comment scans are shared across rules—reducing repeated work, especially in large repositories.
What's Changed
New Features 🎉
prefer-comparison-matcherrule by @eryue0220 in #1236no-restricted-jest-methodsrule by @eryue0220 in #1224no-interpolation-in-snapshotsrule by @eryue0220 in #1284Performance 🚀
Bug Fixes 🐞
classselector must not infer names from anonymous class expressions by @swwind in #1278Refactor 🔨
Other Changes
448614fby @fansenze in #1283New Contributors
Full Changelog: web-infra-dev/rslint@v0.6.5...v0.7.0
v0.6.5Compare Source
What's Changed
New Features 🎉
no-unneeded-async-expect-functionrule by @eryue0220 in #1160no-conditional-expectrule by @eryue0220 in #1167no-restricted-matchersrule by @eryue0220 in #1169Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rslint@v0.6.4...v0.6.5
web-infra-dev/rspack (@rspack/cli)
v2.1.4Compare Source
Highlights
Fine-grained
import.metaparser optionsmodule.parser.javascript.importMetanow accepts an object so each knownimport.metaproperty can be configured independently, on top of the existingtrue/false/'preserve-unknown'values. Properties set tofalseare preserved for runtime evaluation, omitted properties keep their default behavior, and unknown properties are preserved. Both webpack-compatible keys (dirname,filename,main,url,webpack,webpackContext) and Rspack-specific keys (rspackHash,rspackPublicPath,glob, ...) are supported.Static worker URL output
module.parser.javascript.workernow accepts an object form withaliasandurl, alongside the existingbooleanandstring[]forms. Withurl: 'new-url-relative'andoutput.moduleenabled, Rspack emits a staticnew URL()expression fornew Worker(new URL(..., import.meta.url))instead of runtime code, honoringoutput.publicPathandoutput.workerPublicPath.What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Other Changes
New Contributors
Full Changelog: web-infra-dev/rspack@v2.1.3...v2.1.4
v2.1.3Compare Source
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Other Changes
d6bd70b(#14646 by @stormslowly)Full Changelog: web-infra-dev/rspack@v2.1.2...v2.1.3
web-infra-dev/rstest (@rstest/core)
v0.11.2Compare Source
Highlights
Your last run now makes the next one faster
Rstest remembers how each test file did last run, and uses it two ways.
Failures come back first — no flag needed. Previously failed files now run first, so a broken test shows up at the start instead of the end. Slowest files go out first too, trimming wall-clock time on CI where workers are scarce.
Or skip the passing files with
--onlyFailures. When one change breaks several files,-fruns only what failed, so each fix-and-verify round stays short. Once nothing is failing, the next-fgoes back to the full suite instead of running nothing.npx rstest -f # onlyFailures: running 2 of 14 test files (12 deselected).See onlyFailures for details.
Rsbuild plugins can now read your Rstest config
getRstestConfiggives an Rsbuild plugin the resolved config for the environment it's building — the project's settings merged with run-level ones likepool,reporters, andshard. Useful for tailoring plugin behavior per project.See Read Rstest config in Rsbuild plugins for details.
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rstest@v0.11.1...v0.11.2
v0.11.1Compare Source
Highlights
New Playwright integration package
This release adds
@rstest/playwright, providing Playwright-style browser automation fixtures such asbrowser,context,page,request, andserve, plus Playwright-style async assertions integrated with Rstestexpect.Rsbuild plugins can modify Rstest config
Rsbuild plugins can now use the exposed Rstest API to modify the current Rstest project config through
modifyRstestConfig, making it easier for Rsbuild ecosystem plugins to customize test behavior in a scoped and validated way.