Skip to content

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

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

fix(deps): update all non-major dependencies#55
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 24, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@rsbuild/core (source) ^2.0.6^2.0.9 age confidence devDependencies patch
@rsbuild/plugin-react (source) ^2.0.0^2.0.1 age confidence devDependencies patch
@rslib/core (source) ^0.21.5^0.22.0 age confidence devDependencies minor
@rstest/core (source) ^0.10.0^0.10.3 age confidence devDependencies patch
@types/node (source) ^25.8.0^25.9.1 age confidence devDependencies minor
@types/node (source) ^25.0.3^25.9.1 age confidence devDependencies minor
@types/react (source) ^19.2.14^19.2.15 age confidence devDependencies patch
express (source) ^4.18.2^4.22.2 age confidence devDependencies patch
node 24.15.024.16.0 age confidence uses-with minor
pnpm (source) 11.1.211.5.0 age confidence packageManager minor
react (source) ^19.1.0^19.2.6 age confidence dependencies patch
react (source) ^19.2.4^19.2.6 age confidence dependencies patch
react-dom (source) ^19.1.0^19.2.6 age confidence dependencies patch
react-dom (source) ^19.2.4^19.2.6 age confidence dependencies patch
react-router (source) ^7.13.1^7.16.0 age confidence dependencies minor
srvx (source) ^0.9.8^0.11.16 age confidence devDependencies minor
srvx (source) ^0.11.12^0.11.16 age confidence devDependencies patch
srvx (source) ^0.11.15^0.11.16 age confidence devDependencies patch

Release Notes

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

v2.0.9

Compare Source

Highlights

Safer npm Staged Publishing

Rsbuild 2.0.9 updates the release workflow so all packages are now published through npm staged publishing, making package releases safer by staging them before final publication.

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v2.0.8...v2.0.9

v2.0.8

Compare Source

Highlights

Tailwind CSS Plugin

Rsbuild 2.0.8 introduces @rsbuild/plugin-tailwindcss, a first-party plugin for integrating Tailwind CSS v4 through @​tailwindcss/webpack.

Compared with the @tailwindcss/postcss package, it avoids running Tailwind CSS transforms through PostCSS and provides better build performance.

import { pluginTailwindcss } from '@​rsbuild/plugin-tailwindcss';

export default {
  plugins: [pluginTailwindcss()],
};

What's Changed

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

Full Changelog: web-infra-dev/rsbuild@v2.0.7...v2.0.8

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/rslib (@​rslib/core)

v0.22.0

Compare Source

Highlights

Isolated Declaration Generation

Rslib now supports generating declaration files with the experimental dts.isolated option, powered by Rspack's built-in SWC fast_dts capability.

dts.isolated emits declaration files directly during the build without running a full type check, making declaration generation significantly faster.

This makes it a good fit for monorepo projects that use a separate high-performance type-checking workflow, such as rslint --type-check.

export default {
  lib: [
    {
      dts: {
        isolated: true,
      },
    },
  ],
};
Isolated Declaration Generation

More details: dts.isolated

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.21.5...v0.22.0

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

v0.10.3

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

Full Changelog: web-infra-dev/rstest@v0.10.2...v0.10.3

v0.10.2

Compare Source

Highlights

Auto-restore mocks with using (#​1293)

Mock instances now implement Symbol.dispose, so spies are automatically restored when a using block exits — no more manual mockRestore() in afterEach.

import { test, rstest } from '@​rstest/core';

test('reads config', () => {
  using readSpy = rstest.spyOn(fs, 'readFileSync');
  // ...
}); // readSpy is restored here

What's Changed

New Features 🎉
Performance 🚀
  • perf(coverage-istanbul): optimize sourcemap URL scanning by @​9aoy in #​1296
  • perf(coverage-v8): skip unnecessary coverage conversion by @​9aoy in #​1298
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rstest@v0.10.1...v0.10.2

v0.10.1

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
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, on day 1 and 15 of the month (* 0-3 1,15 * *)
  • 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 9 times, most recently from 5b2f3a2 to dd21960 Compare May 30, 2026 10:06
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from dd21960 to d1fd71e Compare May 30, 2026 17:34
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.

0 participants