Skip to content
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

chore(deps): update dependency @rspack/core to v0.5.7 #2192

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 15, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rspack/core (source) 0.5.0 -> 0.5.7 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

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

v0.5.7

Compare Source

What's Changed
Highlights
Support experimental SWC wasm plugins for builtin:swc-loader

Aligned wasm plugin architecture with JavaScript swc-loader.
Check out the detail at swc plugins.

{
  loader: "builtin:swc-loader",
  options: {
    jsc: {
      experimental: {
        plugins: [
          [
            "@​swc/plugin-remove-console",
            {
              exclude: ["error"],
            },
          ],
        ],
      },
    },
  },
};

Great work done by @​dm33tri 🎉.

Exciting New Features 🎉
Bug Fixes 🐞
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspack@v0.5.6...v0.5.7

v0.5.6

Compare Source

What's Changed

Highlight

Improve HMR performance around 60%

Introducing sourcemap caching has improved the compilation speed of HMR (Hot Module Replacement), typically resulting in an improvement of around 60%. benchmark of rspack

Performance Improvements ⚡
Exciting New Features 🎉
Bug Fixes 🐞
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v0.5.5...v0.5.6

v0.5.5

Compare Source

What's Changed
Highlight
Added diagnostic suggestions for extension-less module resolutions

This added suggestions for potential files that can be resolved while the bundler's configuration may not be correct. This might also be helpful for those whose project was migrated from lower versions.

Project tree:

<PROJECT_ROOT>/
├─ a.txt
└─ index.js

Resolve error:

ERROR in ./index.js
  × Resolve error: Can't resolve './a' in '/'
   ╭────
 1 │ import a from './a';
   ·               ──────
   ╰────
  help: Found the module './a.txt' exists, but its extension is not listed in the `resolve.extensions`. Here are some possible solutions:

        1. add the extension `".txt"` to `resolve.extensions` in your rspack configuration
        2. use '../a.txt' instead of './a'

The error suggests to add the extension ".txt" to resolve.extensions, as, by default, rspack does not support for extension-less module requests like "txt".

Kudos to @​luhc228.

Performance Improvements ⚡
Exciting New Features 🎉
Bug Fixes 🐞
Other Changes
New Contributors

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

v0.5.4

Compare Source

What's Changed
Highlight
  • Support alias require:
// commonjs file
const alias = require
alias('./foo') // now `foo.js` will be bundled
Performance Improvements ⚡
Exciting New Features 🎉
Bug Fixes 🐞
Other Changes

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

v0.5.3

Compare Source

What's Changed

Highlights

Fix: build gets stuck at seal when using Module Federation with shared option

When using ModuleFederationPlugin with shared option, build may get stuck. See #​5494

Performance Improvements ⚡
Exciting New Features 🎉
Bug Fixes 🐞

Configuration

📅 Schedule: Branch creation - "before 8am on Friday" (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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@zhoushaw zhoushaw closed this Mar 18, 2024
Copy link
Contributor Author

renovate bot commented Mar 18, 2024

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (0.5.7). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate bot deleted the renovate/rspack-core-0.x branch March 18, 2024 02:05
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