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 patch updates (patch) #63

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 5, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rspack/cli (source) ^0.3.6 -> ^0.3.14 age adoption passing confidence
@visulima/find-cache-dir (source) ^1.0.6 -> ^1.0.10 age adoption passing confidence
@visulima/package (source) ^3.0.7 -> ^3.0.11 age adoption passing confidence
@visulima/packem (source) ^1.0.0-alpha.81 -> ^1.0.0-alpha.126 age adoption passing confidence
caniuse-lite ^1.0.30001651 -> ^1.0.30001662 age adoption passing confidence
favicons ^7.0.1 -> ^7.0.2 age adoption passing confidence
husky ^9.1.5 -> ^9.1.6 age adoption passing confidence
lint-staged ^15.2.9 -> ^15.2.10 age adoption passing confidence
pkg-pr-new (source) ^0.0.20 -> ^0.0.25 age adoption passing confidence
publint (source) ^0.2.10 -> ^0.2.11 age adoption passing confidence
rollup (source) ^3 -> ^3.0.1 age adoption passing confidence
rollup (source) ^4.21.0 -> ^4.21.3 age adoption passing confidence
sort-package-json ^2.10.0 -> ^2.10.1 age adoption passing confidence
taze ^0.16.6 -> ^0.16.9 age adoption passing confidence
unplugin ^1.12.2 -> ^1.12.4 age adoption passing confidence
vite (source) ^5.4.2 -> ^5.4.6 age adoption passing confidence

Release Notes

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

v0.3.14

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspack@v0.3.13...v0.3.14

v0.3.13

Compare Source

Highlight

This version contains a hotfix of https://github.com/web-infra-dev/rspack/issues/4643

What's Changed

Exciting New Features 🎉
Bug Fixes 🐞
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v0.3.12...v0.3.13

v0.3.12

Compare Source

Highlight

[!CAUTION]
Don't use this version, use 0.3.13 instead, this version contains a serious bug related https://github.com/web-infra-dev/rspack/issues/4643643

support EntryDescription.library

Bundling this entry as a library, and allows you to configure the library format through this option, enabling the generation of different module formats (CommonJS, global variable, ESModule, etc.). This flexibility ensures that your code can be easily used in various environments. Additionally, this feature serves as a prerequisite for Module Federation.

What's Changed

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

New Contributors

Full Changelog: web-infra-dev/rspack@v0.3.11...v0.3.12

v0.3.11

Compare Source

Highlights

Support WarnCaseSensitiveModulesPlugin

support WarnCaseSensitiveModulesPlugin

Fix issue when optional expression has an imported variable

The bug fix in this release ensures that optional chaining works flawlessly. For more details, you could refer to https://github.com/web-infra-dev/rspack/pull/4502

support asset info source filename

Now compilation.getAsset(chunkFile) can return sourceFilename correctly.

bump swc

Bump swc-core from 0.86.9 to 0.86.33

What's Changed

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

New Contributors

Full Changelog: web-infra-dev/rspack@v0.3.10...v0.3.11

v0.3.10

Highlights

monaco-editor-webpack-plugin support

Support monaco-editor-webpack-plugin, you can see example using monaco-editor-webpack-plugin in example-monaco-editor-webpack-plugin
WebWorkerTemplatePlugin and LimitChunkCountPlugin are supported at the same time. Really appreciate for @​SyMind 's great work!

Optimized performance for builtin:swc-loader

builtin:swc-loader can now pass AST back to rspack core. Check out performance between legacy transforming and transforming with builtin:swc-loader

Support Compiler.compile()

We have implemented support for Compiler.compile to ensure smooth operation of childCompiler

Support dynamicImportMode: "eager"

For runtime that does not support dynamically loading JavaScript chunks, module.parser.javascript.dynamicImportMode: "eager" is exactly what you're looking for.

What's Changed

Exciting New Features 🎉
Bug Fixes 🐞
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v0.3.8...v0.3.10

v0.3.8

Compare Source

Highlights

Top-level await

Support top-level await and enabled by default, or you can disable this by experiments.topLevelAwait = false.
Top-level await can only be used in ECMAScript Module (type: "javascript/esm"), with this feature you can use await at top-level, await resources, await import, etc.

const db = await import('./db.js');
const connection = await db.connect();

What's Changed

Exciting New Features 🎉
Bug Fixes 🐞
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v0.3.7...v0.3.8

v0.3.7

Compare Source

Highlights

experiments.rspackFuture.newResolver

This feature enables the new resolver implementation provided by oxc, which is 5 times faster than the previous resolver implementation.
The new resolver also supports tsconfig project references defined in tsconfig-paths-webpack-plugin, which handles the support of nested paths alias inside project references.
To fully opt-in this feature, use the following configuration or see resolve.tsConfig for details.

module.exports = {
  resolve: {
    tsconfig: {
      configFile: path.resolve(__dirname, './tsconfig.json'),
      references: 'auto'
    },
  }
  experiments: {
    rspackFuture: {
      newResolver: true
    }
  }
}
styled-components support

This feature enables the builtin:swc-loader to provide compile-time support for styled-components. Now you can configure it through options.rspackExperiments.styledComponents.

/** @​type {import('@​rspack/core').Configuration}*/
module.exports = {
  module: {
    rules: [
      {
        test: /\.jsx?$/,
        loader: "builtin:swc-loader",
        options: {
          jsc: {
            parser: {
              syntax: "ecmascript",
              jsx: true
            }
          },
          rspackExperiments: {
            styledComponents: {
              displayName: true

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 10:00 before 19:00 every weekday except after 13:00 before 14:00" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

 **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/anolilab/unplugin-favicons).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41OS4yIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYzogZGVwZW5kZW5jaWVzIl19-->

@renovate renovate bot requested a review from prisis as a code owner September 5, 2024 13:22
@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label Sep 5, 2024
Copy link
Contributor Author

renovate bot commented Sep 5, 2024

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

Copy link
Contributor

github-actions bot commented Sep 5, 2024

Thank you for following the naming conventions! 🙏

Copy link

socket-security bot commented Sep 5, 2024

@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 7 times, most recently from 1352a06 to 54292ef Compare September 13, 2024 09:25
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 5 times, most recently from 481f650 to 9b038f4 Compare September 18, 2024 08:01
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from 9b038f4 to ebabbf4 Compare September 19, 2024 10:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c: dependencies Pull requests that adds/updates a dependency
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants