Skip to content

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

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

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

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@napi-rs/image ^1.11.2^1.12.0 age confidence dependencies minor
@playwright/test (source) ^1.57.0^1.58.2 age confidence devDependencies minor
@rsbuild/core (source) ^2.0.0-beta.6^2.0.0-canary-20260309140114 age confidence devDependencies patch
@rslib/core (source) ^0.18.2^0.20.0 age confidence devDependencies minor
@types/node (source) ^24.10.1^24.12.0 age confidence devDependencies minor
node 24.11.124.14.0 age confidence uses-with minor
playwright (source) ^1.57.0^1.58.2 age confidence devDependencies minor
pnpm (source) 10.24.010.32.0 age confidence packageManager minor
svgo (source) ^3.3.2^3.3.3 age confidence dependencies patch

Release Notes

Brooooooklyn/Image (@​napi-rs/image)

v1.12.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/Brooooooklyn/Image/compare/@napi-rs/image@1.11.2...@​napi-rs/image@1.12.0

microsoft/playwright (@​playwright/test)

v1.58.2

Compare Source

v1.58.1

Compare Source

Highlights

#​39036 fix(msedge): fix local network permissions
#​39037 chore: update cft download location
#​38995 chore(webkit): disable frame sessions on fronzen builds

Browser Versions
  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.0

Compare Source

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

v2.0.0-beta.8

Compare Source

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

Full Changelog: web-infra-dev/rsbuild@v2.0.0-beta.7...v2.0.0-beta.8

v2.0.0-beta.7

Compare Source

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

Full Changelog: web-infra-dev/rsbuild@v2.0.0-beta.6...v2.0.0-beta.7

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

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

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

v0.19.5

Compare Source

What's Changed

Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.19.4...v0.19.5

v0.19.4

Compare Source

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

Full Changelog: web-infra-dev/rslib@v0.19.3...v0.19.4

v0.19.3

Compare Source

What's Changed

Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.19.2...v0.19.3

v0.19.2

Compare Source

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

Full Changelog: web-infra-dev/rslib@v0.19.1...v0.19.2

v0.19.1

Compare Source

What's Changed

Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.19.0...v0.19.1

v0.19.0

Compare Source

Highlights 💡

New JavaScript API

This release introduces a new, comprehensive JavaScript API for Rslib.

[!CAUTION]
This is a Breaking Change. The previously exposed informal API has been removed. You can switch to the new JavaScript API and refer to the docs below to re-integrate.

See the API docs for details:

Usage
  1. Install Rslib: install the @rslib/core package:
npm add @​rslib/core -D
  1. Create an Rslib instance: call the createRslib method to create an Rslib instance:
import { createRslib } from '@​rslib/core';

const rslib = await createRslib();
  1. Call Rslib instance methods: use the rslib.build method which will build production outputs:
await rslib.build();
Advanced ESM Output

In previous versions, Rslib integrated Rspack's EsmLibraryPlugin through an experimental configuration of experiments.advancedEsm, aiming to optimize the quality of ESM outputs. Now, we are pleased to announce that this plugin has been stabilized.

In this release, the EsmLibraryPlugin is enabled by default by setting experiments.advancedEsm to true in bundle mode. Developers can directly obtain ESM output that is high-quality, more friendly to static analysis, and supports code splitting without any additional configuration.

Better Rstest Integration

Rslib now supports seamless integration with Rstest.

By using the official @​rstest/adapter-rslib, you can directly reuse your Rslib build configurations (such as resolve.alias and source.define) within Rstest. This enables zero-config testing for Rslib projects, ensuring your test environment perfectly mirrors your build environment while eliminating the overhead of maintaining duplicate configurations.

// rstest.config.ts
import { defineConfig } from '@​rstest/core';
import { withRslibConfig } from '@​rstest/adapter-rslib';

export default defineConfig({
  extends: withRslibConfig({}),
  // Additional Rstest-specific configurations
  // ...
});

More details: https://rstest.rs/guide/integration/rslib

What's Changed

New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.6...v0.19.0

v0.18.6

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.5...v0.18.6

v0.18.5

Compare Source

What's Changed
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.4...v0.18.5

v0.18.4

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.3...v0.18.4

v0.18.3

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.2...v0.18.3

actions/node-versions (node)

v24.14.0: 24.14.0

[Compare Source](https://redirect.github.com/ac


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone Asia/Shanghai, 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 8 times, most recently from d9f575a to 0e7430f Compare February 9, 2026 06:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 35795ae to d4c20d7 Compare February 14, 2026 09:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from cb743b7 to 512dcd9 Compare February 24, 2026 00:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 3b9a905 to f030e86 Compare March 2, 2026 09:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from a6c3821 to 4f9676b Compare March 6, 2026 06:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from c7990e4 to b5f98da Compare March 10, 2026 05:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b5f98da to a5ace5d Compare March 10, 2026 13:53
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