fix(deps): update all non-major dependencies#25
Merged
Conversation
f212d77 to
14146f6
Compare
03694b4 to
9803393
Compare
a1ba0f5 to
17464ab
Compare
42020db to
2e523db
Compare
6c1fc9b to
8eb7d21
Compare
2fc3cd6 to
292e99a
Compare
292e99a to
c90eb95
Compare
22aba23 to
5581223
Compare
ca5d56b to
21446ff
Compare
21446ff to
9fbd86e
Compare
`@antfu/ni` ≥ 0.21 changed two public APIs that the runner relies on:
- `AGENTS` is now an `Agent[]` array instead of a `Record<Agent, ...>` map,
so the agent validation in `runWorkflow` threw
`Invalid agent pnpm. Allowed values: 0, 1, 2, ..., 6` for every suite.
Use `AGENTS.includes(...)` and join the array directly in the error.
- `getCommand(...)` now returns a `ResolvedCommand` object
(`{ command, args }`) instead of a serialized shell string. Wrap every
call site in the new `serializeCommand(...)` helper so the existing
`\${...}` interpolation in the `$` template tag keeps producing valid
shell. The new serializer also quotes any arg containing whitespace,
which would break multi-word tasks like \`test -u\` and the
\`--filter @rspack/binding move-binding\` rspack build step — pass
those as separate argv tokens instead of one space-joined string.
Also derive the \`Agent\` type from \`typeof AGENTS[number]\` since the
package no longer exports it.
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:
^4.0.1→^4.1.0^1.10.0→^1.11.1^0.20.0→^0.23.2^5.0.3→^5.2.5^1.1.0→^1.2.4^2.0.6→^2.0.7^0.5.0→^0.5.3^3.13.23→^3.13.25^24.10.1→^24.12.4^18.3.3→^18.3.29^18.3.0→^18.3.7^7.3.13→^7.7.1v6.0.0→v6.4.0^10.4.19→^10.5.0^10.3.2→^10.4.1^0.7.0→^0.7.1^2.0.0→^2.1.1^7.1.1→^7.2.0^0.356.0→^0.577.0v22→22.22.322→22.22.3^3.3.1→^3.3.2^8.4.39→^8.5.15^7.0.2→^7.15.1^7.3.8→^7.8.1^2.8.1→^2.13.1^2.3.0→^2.6.1^3.4.6→^3.4.19^4.19.2→^4.22.3^5.5.4→^5.9.3^6.1.5→^6.7.1^2.8.1→^2.9.0Release Notes
actions/toolkit (@actions/cache)
v4.1.0v4.0.5v4.0.4@protobuf-ts/pluginto dev dependencies #2106v4.0.3v4.0.2antfu-collective/ni (@antfu/ni)
v0.23.2Compare Source
No significant changes
View changes on GitHub
v0.23.1Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v0.23.0Compare Source
🚨 Breaking Changes
parseNietc. now returnResolvedCommandobject instead of string, migrate totinyexec- by @userquin, Ben McCann and @antfu in #231 (3d323)View changes on GitHub
v0.22.4Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.22.3Compare Source
🐞 Bug Fixes
@jsdevtools/ez-spawn, fix #224 - by @antfu in #224 (af1b1)View changes on GitHub
v0.22.2Compare Source
No significant changes
View changes on GitHub
v0.22.1Compare Source
🚀 Features
🐞 Bug Fixes
bun xinstead ofbunx- by @MAttila42 in #219 (13282)View changes on GitHub
v0.22.0Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v0.21.12Compare Source
🐞 Bug Fixes
yarn@>1andpnpm@<7- by @auvred in antfu#190 (2fbce)View changes on GitHub
v0.21.11Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.21.10Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.21.9Compare Source
🚀 Features
🐞 Bug Fixes
-vflag not working foryarn@berry- by @Dimava in antfu#175 (9e3c9)View changes on GitHub
v0.21.8Compare Source
🚀 Features
args- by @antfu (7a165)View changes on GitHub
v0.21.7Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v0.21.6Compare Source
🚀 Features
nusupport for bun - by @jatindotdev in antfu#167 (63b6a)View changes on GitHub
v0.21.5Compare Source
🚀 Features
getCliCommandfunction - by @ghengeveld and @antfu in antfu#164 (17d8e)🐞 Bug Fixes
View changes on GitHub
v0.21.4Compare Source
🚀 Features
View changes on GitHub
v0.21.3Compare Source
No significant changes
View changes on GitHub
v0.21.2Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.21.1Compare Source
v0.21.0Compare Source
🚨 Breaking Changes
nixtonlx- by @antfu (ee46d)🚀 Features
🐞 Bug Fixes
🏎 Performance
View changes on GitHub
radix-ui/primitives (@radix-ui/react-slot)
v1.2.4web-infra-dev/rsbuild (@rsbuild/core)
v2.0.7Compare Source
Highlights
Web Worker Query Imports
Rsbuild now supports importing worker scripts with
?worker,?worker&inline, and?inline&worker:Automatic Dependency Externalization
output.autoExternalreads dependencies from the rootpackage.jsonand generatesoutput.externalsrules for matching packages and subpath imports. This is useful for Node.js and SSR bundles where runtime dependencies should stay external.What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rsbuild@v2.0.6...v2.0.7
web-infra-dev/rslint (@rslint/core)
v0.5.3Compare Source
What's Changed
New Features 🎉
prefer-to-berule by @eryue0220 in #870no-identical-titlerule by @eryue0220 in #875no-commented-out-testsrule by @eryue0220 in #931Bug Fixes 🐞
Refactor 🔨
Documentation 📖
experimentalExcludeRoutePathsAPI by @elecmonkey in #879Other Changes
dcc16d9by @fansenze in #873092b34fby @fansenze in #901Configuration
📅 Schedule: (in timezone Asia/Shanghai)
* 0-3 * * 1)🚦 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.