Skip to content

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

Merged
chenjiahan merged 1 commit intomainfrom
renovate/all-minor-patch
Aug 4, 2025
Merged

chore(deps): update all non-major dependencies#4
chenjiahan merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 4, 2025

This PR contains the following updates:

Package Change Age Confidence
@rslib/core (source) ^0.1.1 -> ^0.11.1 age confidence
@types/node (source) ^22.10.1 -> ^22.17.0 age confidence
rslog ^1.2.3 -> ^1.2.10 age confidence
simple-git-hooks ^2.11.1 -> ^2.13.1 age confidence
tinyglobby ^0.2.10 -> ^0.2.14 age confidence
typescript (source) ^5.7.2 -> ^5.9.2 age confidence

Release Notes

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

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

Highlights ✨

In 0.7.0, due to breaking changes in @ast-grep/napi, Ubuntu 20 is not supported if user enable dts generation.

This version revert this.

What's Changed

Document 📖
Other Changes

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

v0.7.0

Compare Source

Highlights ✨

banner
First blog for Rslib 📚

Check out our first blog for Rslib: Rslib: Build library with Rspack

We are excited to introduce Rslib — a library development tool based on Rspack. Developed by ByteDance Web Infra Team, Rslib helps developers create JavaScript libraries and UI component libraries in a simple and intuitive way while enjoying the ultimate development experience brought by Rspack and Rsbuild.

Breaking changes 🚨

Reverted in v0.7.1.

Due to breaking changes in @ast-grep/napi, Ubuntu 20 is not supported now if user enable dts generation.

Update to Ubuntu 22 or higher if possible, reference: ast-grep/ast-grep@96f5500.

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.9...v0.7.0

v0.6.9

Compare Source

What's Changed

New Features 🎉
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.8...v0.6.9

v0.6.8

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.7...v0.6.8

v0.6.7

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.6...v0.6.7

v0.6.6

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.5...v0.6.6

v0.6.5

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.4...v0.6.5

v0.6.4

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.3...v0.6.4

v0.6.3

Compare Source

What's Changed

Performance 🚀
Bug Fixes 🐞
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.6.2...v0.6.3

v0.6.2

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 force-pushed the renovate/all-minor-patch branch from a7a6f08 to 79f20b3 Compare August 4, 2025 13:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 79f20b3 to 75227d8 Compare August 4, 2025 13:14
@chenjiahan chenjiahan merged commit edad702 into main Aug 4, 2025
5 checks passed
@chenjiahan chenjiahan deleted the renovate/all-minor-patch branch August 4, 2025 13:36
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