Skip to content

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

Merged
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch
Mar 9, 2026
Merged

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 8, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@rslib/core (source) ^0.18.2^0.19.6 age confidence devDependencies minor
@rspack/core (source) ^1.6.5^1.7.7 age confidence devDependencies minor
@rstest/core (source) ^0.6.8^0.9.1 age confidence devDependencies minor
@types/node (source) ^24.10.1^24.12.0 age confidence devDependencies minor
bumpp ^10.3.2^10.4.1 age confidence devDependencies minor
fs-extra 11.3.211.3.4 age confidence devDependencies patch
node 24.11.124.14.0 age confidence uses-with minor
pnpm (source) 10.24.010.31.0 age confidence packageManager minor
semver 7.7.37.7.4 age confidence devDependencies patch

Release Notes

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

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

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

v1.7.7

Compare Source

What's Changed
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.6...v1.7.7

v1.7.6

Compare Source

What's Changed

Bug Fixes 🐞
Document Updates 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.5...v1.7.6

v1.7.5

Compare Source

What's Changed
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.4...v1.7.5

v1.7.4

Compare Source

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

Full Changelog: web-infra-dev/rspack@v1.7.3...v1.7.4

v1.7.3

Compare Source

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

Full Changelog: web-infra-dev/rspack@v1.7.2...v1.7.3

v1.7.2

Compare Source

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

Full Changelog: web-infra-dev/rspack@v1.7.1...v1.7.2

v1.7.1

Compare Source

What's Changed
New Features 🎉
  • feat(module-federation): enhance manifest generation and shared module handling by @​2heal1 in #​12399
Bug Fixes 🐞
Refactor 🔨
Document Updates 📖

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 becomes conflicted, 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 enabled auto-merge (squash) March 8, 2026 17:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ac26d22 to a7b1679 Compare March 9, 2026 02:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a7b1679 to 2a67674 Compare March 9, 2026 10:57
@renovate renovate bot merged commit 611797c into main Mar 9, 2026
4 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch March 9, 2026 11:06
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