Skip to content

fix(deps): update all non-major dependencies#25

Merged
fi3ework merged 2 commits into
mainfrom
renovate/all-minor-patch
May 25, 2026
Merged

fix(deps): update all non-major dependencies#25
fi3ework merged 2 commits into
mainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 30, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@actions/cache (source) ^4.0.1^4.1.0 age confidence dependencies minor
@actions/core (source) ^1.10.0^1.11.1 age confidence dependencies patch
@antfu/ni ^0.20.0^0.23.2 age confidence devDependencies minor
@fontsource/geist-sans (source) ^5.0.3^5.2.5 age confidence dependencies patch
@radix-ui/react-slot (source) ^1.1.0^1.2.4 age confidence dependencies patch
@rsbuild/core (source) ^2.0.6^2.0.7 age confidence devDependencies patch
@rslint/core ^0.5.0^0.5.3 age confidence devDependencies patch
@tanstack/react-virtual (source) ^3.13.23^3.13.25 age confidence dependencies patch
@types/node (source) ^24.10.1^24.12.4 age confidence devDependencies minor
@types/react (source) ^18.3.3^18.3.29 age confidence devDependencies patch
@types/react-dom (source) ^18.3.0^18.3.7 age confidence devDependencies patch
@types/semver (source) ^7.3.13^7.7.1 age confidence devDependencies minor
actions/setup-node v6.0.0v6.4.0 age confidence action minor
autoprefixer ^10.4.19^10.5.0 age confidence devDependencies minor
bumpp ^10.3.2^10.4.1 age confidence devDependencies minor
class-variance-authority ^0.7.0^0.7.1 age confidence dependencies patch
clsx ^2.0.0^2.1.1 age confidence dependencies patch
execa ^7.1.1^7.2.0 age confidence dependencies patch
lucide-react (source) ^0.356.0^0.577.0 age confidence dependencies minor
node (source) v2222.22.3 age confidence minor
node 2222.22.3 age confidence uses-with minor
node-fetch ^3.3.1^3.3.2 age confidence dependencies patch
postcss (source) ^8.4.39^8.5.15 age confidence devDependencies patch
react-router-dom (source) ^7.0.2^7.15.1 age confidence dependencies minor
semver ^7.3.8^7.8.1 age confidence devDependencies minor
simple-git-hooks ^2.8.1^2.13.1 age confidence devDependencies minor
tailwind-merge ^2.3.0^2.6.1 age confidence dependencies patch
tailwindcss (source) ^3.4.6^3.4.19 age confidence devDependencies patch
tsx (source) ^4.19.2^4.22.3 age confidence devDependencies minor
typescript (source) ^5.5.4^5.9.3 age confidence devDependencies patch
verdaccio (source) ^6.1.5^6.7.1 age confidence devDependencies minor
yaml (source) ^2.8.1^2.9.0 age confidence dependencies minor

Release Notes

actions/toolkit (@​actions/cache)

v4.1.0

  • Remove client side 10GiB cache size limit check & update twirp client #​2118

v4.0.5

v4.0.4

⚠️ Faulty patch release. Upgrade to 4.0.5 instead.

  • Optimized cache dependencies by moving @protobuf-ts/plugin to dev dependencies #​2106
  • Improved cache service availability determination for different cache service versions (v1 and v2) #​2100
  • Enhanced server error handling: 5xx HTTP errors are now logged as errors instead of warnings #​2099
  • Fixed cache hit logging to properly distinguish between exact key matches and restore key matches #​2101

v4.0.3

  • Added masking for Shared Access Signature (SAS) cache entry URLs #​1982
  • Improved debugging by logging both the cache version alongside the keys requested when a cache restore fails #​1994

v4.0.2

  • Wrap create failures in ReserveCacheError #​1966
antfu-collective/ni (@​antfu/ni)

v0.23.2

Compare Source

No significant changes

    View changes on GitHub

v0.23.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.23.0

Compare Source

   🚨 Breaking Changes
    View changes on GitHub

v0.22.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.22.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.22.2

Compare Source

No significant changes

    View changes on GitHub

v0.22.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.22.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.12

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.21.11

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.21.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.21.9

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.8

Compare Source

   🚀 Features
    View changes on GitHub

v0.21.7

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.6

Compare Source

   🚀 Features
    View changes on GitHub

v0.21.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.4

Compare Source

   🚀 Features
    View changes on GitHub

v0.21.3

Compare Source

No significant changes

    View changes on GitHub

v0.21.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.21.1

Compare Source

v0.21.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
radix-ui/primitives (@​radix-ui/react-slot)

v1.2.4

web-infra-dev/rsbuild (@​rsbuild/core)

v2.0.7

Compare Source

Highlights
Web Worker Query Imports

Rsbuild now supports importing worker scripts with ?worker, ?worker&inline, and ?inline&worker:

import MyWorker from './worker.ts?worker';
import InlineWorker from './worker.ts?worker&inline';

const worker = new MyWorker();
const inlineWorker = new InlineWorker({ name: 'inline-worker' });
Automatic Dependency Externalization

output.autoExternal reads dependencies from the root package.json and generates output.externals rules for matching packages and subpath imports. This is useful for Node.js and SSR bundles where runtime dependencies should stay external.

export default {
  output: {
    target: 'node',
    autoExternal: true,
  },
};
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.3

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Documentation 📖
Other Changes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Asia/Shanghai)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f212d77 to 14146f6 Compare April 3, 2026 07:20
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 03694b4 to 9803393 Compare April 13, 2026 11:26
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a1ba0f5 to 17464ab Compare April 18, 2026 04:25
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 42020db to 2e523db Compare April 29, 2026 11:40
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 6c1fc9b to 8eb7d21 Compare May 7, 2026 05:41
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 2fc3cd6 to 292e99a Compare May 14, 2026 18:47
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 292e99a to c90eb95 Compare May 16, 2026 17:13
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 22aba23 to 5581223 Compare May 19, 2026 07:49
@renovate renovate Bot removed the dependencies label May 19, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 15 times, most recently from ca5d56b to 21446ff Compare May 25, 2026 06:32
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 21446ff to 9fbd86e Compare May 25, 2026 07:18
`@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.
@fi3ework fi3ework merged commit e1ff9f5 into main May 25, 2026
25 of 33 checks passed
@fi3ework fi3ework deleted the renovate/all-minor-patch branch May 25, 2026 09:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant