Skip to content

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

Merged
chenjiahan merged 3 commits intomainfrom
renovate/all-minor-patch
Mar 1, 2025
Merged

chore(deps): update all non-major dependencies#27
chenjiahan merged 3 commits intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@rslib/core (source) ^0.1.3 -> ^0.5.2 age adoption passing confidence devDependencies minor
@types/node (source) ~16.18.121 -> ~16.18.126 age adoption passing confidence devDependencies patch
node (source) >=14.17.6 -> >=14.21.3 age adoption passing confidence engines minor
pnpm (source) 9.14.4 -> 9.15.6 age adoption passing confidence packageManager minor
typescript (source) ~5.7.2 -> ~5.8.2 age adoption passing confidence devDependencies minor

Release Notes

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

v0.5.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.5.1...v0.5.2

v0.5.1

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.5.0...v0.5.1

v0.5.0

Compare Source

Highlights ✨

This release brings exciting new features and improvements to Rslib:

  • Support DTS Redirect: Rslib now supports to control the redirect of the import paths in output TypeScript declaration files. (#​742)

    • redirect.dts.path: Redirect the import path in the DTS output file to the corresponding relative path based on the compilerOptions.paths configured in tsconfig.json.
    // For `compilerOptions.paths` set to `{ "@​/*": ["src/*"] }` in `tsconfig.json`
    import { foo } from '@​/foo'; // source code of './src/bar.ts' ↓
    import { foo } from './foo'; // expected output of './dist/bar.d.ts'
    
    import { foo } from '@​/foo'; // source code of './src/utils/index.ts' ↓
    import { foo } from '../foo'; // expected output './dist/utils/index.d.ts'
    • redirect.dts.extension: Redirect the import path in the DTS output file to the corresponding JavaScript extension which can be resolved to corresponding DTS file.
    // For `.d.mts` TypeScript Declaration files
    import { foo } from './foo'; // source code of './src/bar.ts' ↓
    import { foo } from './foo.mjs'; // expected output of './dist/bar.d.mts'
    
    import { foo } from './foo.ts'; // source code of './src/bar.ts' ↓
    import { foo } from './foo.mjs'; // expected output of './dist/bar.d.mts'
  • Support outBase in Bundleless Mode: When building a project where source files exist across multiple directories with bundleless mode, the output directory structure will be replicated relative to the outBase directory in the output directory, see lib.outBase for more details. (#​745)

  • Add Documents about Assets: Documents related to asset module have been added for common scenarios in component library development, see Import static assets, Import SVGR and Import JSON files for more details. (#​741)

  • Support pkg.pr.new: With pkg.pr.new, each of commits in main branch will trigger an instant preview release without publishing anything to NPM. This enables users to access features and bug-fixes without the need to wait for release cycles. (#​766)

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.4.1...v0.5.0

v0.4.1

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.4.0...v0.4.1

v0.4.0

Compare Source

Highlights ✨

This release brings exciting new features and improvements to Rslib:

  • Import Static Assets: Rslib now supports importing static assets like images (including SVG to React component conversion), fonts, audio, and video directly into your library code. This feature ensures correct outputs in both bundle and bundleless modes, making it easier than ever to develop libraries with static assets. (#​684 #​705)
  • Enhanced Bundleless Mode:
    • Supports emitting CSS source maps in bundleless mode. (#​698)
    • Supports using Stylus within your bundleless libraries, expanding your styling options. (#​707)
    • Supports adding banners and footers to CSS files in bundleless mode. (#​712)

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.3.2...v0.4.0

v0.3.2

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.3.1...v0.3.2

v0.3.1

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.3.0...v0.3.1

v0.3.0

Compare Source

What's Changed

Highlights ✨

This release brings some improvements and new features, addressing common scenarios and enhancing the overall user experience:

  • Enhanced Style File Redirection: Support for redirect.style.path and redirect.style.extension to configure the redirection of the import paths of style files. (#​618)
  • Optimized JavaScript File Redirection: Fix some cases about redirection of the import paths of output JavaScript files. (#​615 #​624)
  • Improved Bundleless Mode:
    • Support handling file additions and removals in watch mode. (#​642)
    • Refined source.entry configuration, defaulting to src/** and excluding .d.ts files from being treated as entry points. (#​636 #​647)
Breaking changes 🚨

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

  • Boolean values are no longer supported for redirect.style, see the documentation of redirect.style for more details. (#​618)
  • The autoExternal configuration is no longer effective in bundleless mode, see the documentation of autoExternal for more details. (#​624)
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.2.2...v0.3.0

v0.2.2

Compare Source

What's Changed

Other Changes

Full Changelog: web-infra-dev/rslib@v0.2.1...v0.2.2

v0.2.1

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.2.0...v0.2.1

v0.2.0

Compare Source

What's Changed

Highlights ✨

Comparing with 0.1.0, we have fixed many bugs and added numerous features for common scenarios, including but not limited to:

  • Enhanced support for resolving external modules, improving the redirect of paths for bundleless mode. See lib.redirect. (#​535)
  • Introduced support for loading .env files. See Environment Variables. (#​518)
  • Optimized code compression to retain only essential comments, resulting in smaller output sizes. (#​522)
  • Added support for watching rslib.config to trigger rebuilds. (#​489)
  • Improved documentation and completed the translation of the Chinese documentation. See https://lib.rsbuild.dev/zh/index.
Breaking changes 🚨
  • rslib mf dev has been changed to rslib mf-dev command in #​590, checkout the documentation of mf-dev for more details.
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.1.5...v0.2.0

v0.1.5

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.1.4...v0.1.5

v0.1.4

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖

Configuration

📅 Schedule: Branch creation - "* 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
Copy link
Copy Markdown
Contributor Author

renovate bot commented Mar 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.

@chenjiahan chenjiahan merged commit 02e8667 into main Mar 1, 2025
3 checks passed
@chenjiahan chenjiahan deleted the renovate/all-minor-patch branch March 1, 2025 08:07
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