Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 1, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@prefresh/core (source) ^1.5.3 -> ^1.5.7 age confidence devDependencies patch
@prefresh/utils (source) ^1.2.0 -> ^1.2.1 age confidence devDependencies patch
@rslib/core (source) ^0.4.0 -> ^0.12.4 age confidence devDependencies minor
@rspack/core (source) 1.2.2 -> 1.5.1 age confidence devDependencies minor
@rspack/test-tools (source) 1.2.2 -> 1.5.1 age confidence devDependencies minor
@swc/helpers (source) 0.5.15 -> 0.5.17 age confidence devDependencies patch
@swc/plugin-prefresh (source) ^6.2.0 -> ^6.3.2 age confidence devDependencies minor
@types/node (source) ^22.13.0 -> ^22.18.0 age confidence devDependencies minor
execa 9.5.2 -> 9.6.0 age confidence devDependencies minor
fs-extra 11.3.0 -> 11.3.1 age confidence devDependencies patch
node 20 -> 20.19.4 age confidence uses-with minor
pnpm (source) 9.15.4 -> 9.15.9 age confidence packageManager patch
preact (source) ^10.25.4 -> ^10.27.1 age confidence devDependencies minor
semver 7.7.0 -> 7.7.2 age confidence devDependencies patch
simple-git-hooks ^2.11.1 -> ^2.13.1 age confidence devDependencies minor
ts-jest (source) 29.2.5 -> 29.4.1 age confidence devDependencies minor
typescript (source) 5.7.3 -> 5.9.2 age confidence devDependencies minor

Release Notes

preactjs/prefresh (@​prefresh/core)

v1.5.7

Compare Source

Patch Changes

v1.5.6

Compare Source

Patch Changes

v1.5.5

Compare Source

Patch Changes

v1.5.4

Compare Source

Patch Changes
preactjs/prefresh (@​prefresh/utils)

v1.2.1

Compare Source

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

v0.12.4

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.12.3...v0.12.4

v0.12.3

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.12.2...v0.12.3

v0.12.2

Compare Source

What's Changed

New Features 🎉
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.12.1...v0.12.2

v0.12.1

Compare Source

What's Changed

New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rslib@v0.12.0...v0.12.1

v0.12.0

Compare Source

Highlights 💡

Drop support for Node 16

Node.js 16 reached its end-of-life on September 11, 2023. Many other npm packages in the ecosystem have also dropped support for Node 16, including webpack-dev-server, css-loader, sass-loader, and so on, which makes maintaining compatibility increasingly challenging. Therefore, we have decided to drop Node 16 support starting from Rslib v0.12 to ensure better compatibility with the modern ecosystem.

Package v0.11 v0.12
@​rslib/core >=16.7.0 >=18.12.0

Rslib v0.11 based on Rsbuild/Rspack v1.4 and Rslib v0.12 based on Rsbuild/Rspack v1.5:

Package v1.4 v1.5
@​rspack/core >=16.0.0 >=18.12.0
@​rsbuild/core >=16.10.0 >=18.12.0

⚠️ This is a breaking change for users still running Node.js 16. Users will need to upgrade to Node.js 18.12.0 or later to use Rslib v0.12.

For users currently using Node.js 16:

  1. Upgrade to Node.js 18.12.0 or later (Node.js 22 LTS is recommended)
  2. Update your CI/CD pipelines to use the new Node.js version

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.11.2...v0.12.0

v0.11.2

Compare Source

What's Changed

Trusted Publishing

All Rslib npm packages are now published based on npm's trusted publishing, making Rslib's npm packages more secure and transparent.

See:

Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.11.1...v0.11.2

v0.11.1

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.11.0...v0.11.1

v0.11.0

Compare Source

Breaking changes 🚨

redirect.asset

Boolean values are no longer supported for redirect.asset, see the documentation of redirect.asset for more details. (#​1119)

Please note the following changes that may require adjustments to your configurations:

export default defineConfig({
  lib: [
    {
      redirect: {
-       asset: true,
+       asset: {
+         path: true,
+         extension: true,
+       },
      },
    },
  ],
});
export default defineConfig({
  lib: [
    {
      redirect: {
-       asset: false,
+       asset: {
+         path: false,
+         extension: false,
+       },
      },
    },
  ],
});

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.10.6...v0.11.0

v0.10.6

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.10.5...v0.10.6

v0.10.5

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.10.4...v0.10.5

v0.10.4

Compare Source

What's Changed

New Features 🎉

In order to fix an issue where require.cache caused unexpected ESM output

Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.10.3...v0.10.4

v0.10.3

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

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

v0.10.2

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

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

v0.10.1

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.10.0...v0.10.1

v0.10.0

Compare Source

Highlights ✨

New ESM Output

We have simplified the ESM output to improve readability and reduce bundle size. See the comparison in the figure below.

Rslib ESM Output

Compared with v0.9.2, additional optimization for import default has been included.

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.9.2...v0.10.0

v0.9.2

Compare Source

Highlights ✨

We have simplified the ESM output, see the comparison in the figure below.

No __webpack_exports__ and __WEBPACK_EXTERNAL_MODULE_ now!

ESM output

What's Changed

New Features 🎉
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.9.1...v0.9.2

v0.9.1

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.9.0...v0.9.1

v0.9.0

Compare Source

Highlights ✨

This release brings exciting new features to Rslib:

Vue support

Rslib now provides support for building Vue component libraries by integrating unplugin-vue. Checkout Solution - Vue to learn how to build a Vue component library using Rslib. Additionally, storybook-vue3-rsbuild is provided for Vue3 Storybook support.

Vue support

What's Changed

New Features 🎉
Performance 🚀
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.8.0...v0.9.0

v0.8.0

Compare Source

Highlights ✨

IIFE Format Support

Set format to 'iife' to generate IIFE JavaScript output which stands for "immediately-invoked function expression" and is intended to be run in the browser, see IIFE for more details.

source code

// parent-sdk is marked as externals
// externals: ['parent-sdk']
import { version } from 'parent-sdk';
alert(version);

output

(
  () => {
    'use strict';
    const external_parent_sdk_namespaceObject = globalThis['parent-sdk'];
    alert(external_parent_sdk_namespaceObject.version);
  },
)();

What's Changed

New Features 🎉
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.7.1...v0.8.0

v0.7.1

Compare Source

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 from 4c2180e to f16f092 Compare March 1, 2025 07:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 62df5f8 to 21d0f4d Compare March 10, 2025 06:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 48f9238 to f685c43 Compare March 11, 2025 13:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from f0ae04e to 4b29ad9 Compare March 27, 2025 11:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 39608ec to b5d3ef2 Compare April 3, 2025 15:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 7b5ac38 to 7f83ee9 Compare April 8, 2025 10:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from ca1581c to 92b1b67 Compare July 28, 2025 18:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 63ceac3 to 42f3ea9 Compare August 5, 2025 09:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b4d66fa to 3b7423e Compare August 10, 2025 13:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from acb3c80 to 4863d11 Compare August 20, 2025 16:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 006e983 to f5f2ff2 Compare August 28, 2025 16:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f5f2ff2 to f51bd27 Compare August 31, 2025 11:27
Copy link
Contributor Author

renovate bot commented Sep 1, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

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