Skip to content

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

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rslib/core (source) ^0.4.0 -> ^0.6.3 age adoption passing confidence
@rspack/core (source) 1.2.2 -> 1.3.5 age adoption passing confidence
@rspack/test-tools (source) 1.2.2 -> 1.3.5 age adoption passing confidence
@swc/helpers (source) 0.5.15 -> 0.5.17 age adoption passing confidence
@swc/plugin-prefresh (source) ^6.2.0 -> ^6.3.2 age adoption passing confidence
@types/node (source) ^22.13.0 -> ^22.14.1 age adoption passing confidence
pnpm (source) 9.15.4 -> 9.15.9 age adoption passing confidence
preact (source) ^10.25.4 -> ^10.26.5 age adoption passing confidence
semver 7.7.0 -> 7.7.1 age adoption passing confidence
simple-git-hooks ^2.11.1 -> ^2.12.1 age adoption passing confidence
ts-jest (source) 29.2.5 -> 29.3.2 age adoption passing confidence
typescript (source) 5.7.3 -> 5.8.3 age adoption passing confidence

Release Notes

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

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

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

v0.6.1

Compare Source

What's Changed

New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.0...v0.6.1

v0.6.0

Compare Source

Highlights ✨

This release brings exciting new features and improvements to Rslib:

  • New default library type for CJS: Rslib changes the default value of output.library.type for CJS from commonjs to commonjs-static. Now, individual exports will be set as properties on module.exports and the output can be statically analyzable, thus named exports are importable into ESM via Node.js. This is useful when source code is written in ESM and the output should be compatible with both CJS and ESM. (#​819)

    Named exports are importable into ESM via Node.js

    • Input:
    export function doSomething() {}
    • Output:
    function doSomething() {}
    // …
    exports.doSomething = __webpack_exports__.doSomething;
    • Consumption (CJS):
    const { doSomething } = require('./output.cjs'); // doSomething => [Function: doSomething]
    • Consumption (ESM):
    import { doSomething } from './output.cjs'; // doSomething => [Function: doSomething]
  • Show code frame for type errors: Rslib now shows full context and code frame of tsc diagnostics in the terminal when generating declaration files. This makes it easier to understand and fix issues in the source code. (#​847)

    image

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.5.5...v0.6.0

v0.5.5

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.5.4...v0.5.5

v0.5.4

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.5.3...v0.5.4

v0.5.3

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

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

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

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

v1.3.5

Compare Source

Rspack comes to Next.js 🎉

We’re excited to introduce next-rspack, a community-driven plugin bringing direct Rspack support to Next.js.

See the Rspack joins the Next.js ecosystem blog for details.

What's Changed
Performance Improvements ⚡
Exciting New Features 🎉

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 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 6 times, most recently from b8bb2ce to 4d0dd4b Compare April 14, 2025 07:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4d0dd4b to bf68278 Compare April 15, 2025 12:30
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