Skip to content

chore(deps): update all non-major dependencies#34

Merged
renovate[bot] merged 1 commit into
mainfrom
renovate/all-minor-patch
May 24, 2026
Merged

chore(deps): update all non-major dependencies#34
renovate[bot] merged 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented May 24, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@rsbuild/core (source) ^2.0.6^2.0.7 age confidence
@rsbuild/plugin-react (source) ^1.4.1^1.4.6 age confidence
@rslib/core (source) 0.18.00.21.5 age confidence
@rslib/core (source) ^0.14.0^0.21.5 age confidence
@rspress/core (source) ^2.0.0-beta.33^2.0.12 age confidence
@rspress/plugin-api-docgen (source) ^2.0.0-beta.33^2.0.12 age confidence
@rspress/plugin-preview (source) ^2.0.0-beta.33^2.0.12 age confidence
@rstest/core (source) ^0.10.0^0.10.2 age confidence
@types/node (source) ^24.5.2^24.12.4 age confidence
@types/react (source) ^19.1.13^19.2.15 age confidence
@types/react (source) ^19.2.2^19.2.15 age confidence
@types/react (source) ^19.2.14^19.2.15 age confidence
pnpm (source) 11.1.211.2.2 age confidence
react (source) ^19.1.1^19.2.6 age confidence
react (source) ^19.2.0^19.2.6 age confidence
typescript (source) ^5.9.2^5.9.3 age confidence

Release Notes

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

v0.21.5

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Other Changes
New Contributors

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

v0.21.4

Compare Source

What's Changed
New Features 🎉
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.21.3...v0.21.4

v0.21.3

Compare Source

What's Changed

New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rslib@v0.21.2...v0.21.3

v0.21.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.21.1...v0.21.2

v0.21.1

Compare Source

What's Changed
Bug Fixes 🐞
Other Changes
New Contributors

Full Changelog: web-infra-dev/rslib@v0.21.0...v0.21.1

v0.21.0

Compare Source

Highlights 💡

Single Executable Applications

Rslib now supports building Node.js single executable applications with the experimental experiments.exe option.

export default {
  lib: [
    {
      format: 'esm',
      experiments: {
        exe: true,
      },
    },
  ],
};

More details: experiments.exe

Best Practices Skill

Rslib now provides a best practices skill, which can be used when writing, reviewing, or troubleshooting Rslib projects.

  • In an existing project:
npx skills add rstackjs/agent-skills --skill rslib-best-practices
  • When creating a new project:
npx -y create-rslib@latest my-project -t react --skill rslib-best-practices

More details: AI - Agent Skills

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.20.3...v0.21.0

v0.20.3

Compare Source

What's Changed

Other Changes

Full Changelog: web-infra-dev/rslib@v0.20.2...v0.20.3

v0.20.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.20.1...v0.20.2

v0.20.1

Compare Source

What's Changed

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

Full Changelog: web-infra-dev/rslib@v0.20.0...v0.20.1

v0.20.0

Compare 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.advancedEsm

experiments.advancedEsm is now deprecated and effectively ignored. Advanced ESM behavior is the default in both bundle and bundleless mode.

What you need to do:

  • Remove experiments.advancedEsm from your config
  • Verify the output behaviour
Rename type StartServerResult

The exported type StartServerResult has been renamed to StartDevServerResult.

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.19.6...v0.20.0

v0.19.6

Compare Source

What's Changed

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, 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 merged commit 3d7d138 into main May 24, 2026
3 checks passed
@renovate renovate Bot deleted the renovate/all-minor-patch branch May 24, 2026 21:58
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