Skip to content

chore(deps): update rspack monorepo to v1.3.5#289

Merged
Robot-Inventor merged 1 commit intomainfrom
renovate/rspack-monorepo
Apr 20, 2025
Merged

chore(deps): update rspack monorepo to v1.3.5#289
Robot-Inventor merged 1 commit intomainfrom
renovate/rspack-monorepo

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Feb 25, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rspack/cli (source) 1.2.5 -> 1.3.5 age adoption passing confidence
@rspack/core (source) 1.2.5 -> 1.3.5 age adoption passing confidence

Release Notes

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

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 🎉
Bug Fixes 🐞
Document Updates 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v1.3.4...v1.3.5

v1.3.4

Compare Source

What's Changed

Performance Improvements ⚡
Bug Fixes 🐞
Document Updates 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v1.3.3...v1.3.4

v1.3.3

Compare Source

What's Changed

Exciting New Features 🎉
Bug Fixes 🐞
Document Updates 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v1.3.2...v1.3.3

v1.3.2

Compare Source

What's Changed

Exciting New Features 🎉
Bug Fixes 🐞
Document Updates 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v1.3.1...v1.3.2

v1.3.1

Compare Source

Highlights

🚀 Support running JavaScript loader in parallel

Added a way to run JavaScript loader in parallel driven by worker_threads, using the max thread available on the OS.

This feature is still experimental. To enable parallelism, set Rule.use.parallel = true and experiments.parallelLoader = true:

module.exports = {
  module: {
    rules: [
      {
          test: /\.less$/,
          use: [
             {
                loader: "less-loader",
+               parallel: true,
                options: { ... }
             }
          ]
          type: "css"
      }
    ]
  },
  experiments: {
      css: true,
+     parallelLoader: true
  }
}

In big projects like 100x antd.less, we got 2.26x performance boost. (Tested on Apple M2 Max, 64G)

Related PR: https://github.com/web-infra-dev/rspack/pull/9807

⚠️ Fixed some critical bugs in 1.3.0

What's Changed

Exciting New Features 🎉
Bug Fixes 🐞
Document Updates 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v1.3.0...v1.3.1

v1.3.0

Compare Source

What's Changed

See Announcing Rspack 1.3 for more details.

Breaking Changes 🛠
Performance Improvements ⚡
Exciting New Features 🎉
Bug Fixes 🐞
Document Updates 📖
Other Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 these updates again.


  • 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/rspack-monorepo branch 2 times, most recently from c2f9335 to 29de47c Compare March 3, 2025 16:49
@renovate renovate bot changed the title chore(deps): update rspack monorepo to v1.2.6 chore(deps): update rspack monorepo to v1.2.7 Mar 3, 2025
@renovate renovate bot force-pushed the renovate/rspack-monorepo branch from 29de47c to 731d724 Compare March 11, 2025 13:47
@renovate renovate bot changed the title chore(deps): update rspack monorepo to v1.2.7 chore(deps): update rspack monorepo to v1.2.8 Mar 11, 2025
@renovate renovate bot force-pushed the renovate/rspack-monorepo branch 2 times, most recently from ccbf219 to 57faaae Compare March 17, 2025 17:02
@renovate renovate bot force-pushed the renovate/rspack-monorepo branch from 57faaae to 91f43d5 Compare March 28, 2025 11:30
@renovate renovate bot changed the title chore(deps): update rspack monorepo to v1.2.8 chore(deps): update rspack monorepo to v1.3.0 Mar 28, 2025
@renovate renovate bot force-pushed the renovate/rspack-monorepo branch 2 times, most recently from e87c8cf to 5e22aac Compare April 1, 2025 17:10
@renovate renovate bot changed the title chore(deps): update rspack monorepo to v1.3.0 chore(deps): update rspack monorepo to v1.3.1 Apr 1, 2025
@renovate renovate bot force-pushed the renovate/rspack-monorepo branch from 5e22aac to 823ee65 Compare April 3, 2025 14:53
@renovate renovate bot changed the title chore(deps): update rspack monorepo to v1.3.1 chore(deps): update rspack monorepo to v1.3.2 Apr 3, 2025
@renovate renovate bot force-pushed the renovate/rspack-monorepo branch from 823ee65 to 5551704 Compare April 8, 2025 12:38
@renovate renovate bot changed the title chore(deps): update rspack monorepo to v1.3.2 chore(deps): update rspack monorepo to v1.3.3 Apr 8, 2025
@renovate renovate bot force-pushed the renovate/rspack-monorepo branch from 5551704 to 672f2c6 Compare April 9, 2025 07:55
@renovate renovate bot changed the title chore(deps): update rspack monorepo to v1.3.3 chore(deps): update rspack monorepo to v1.3.4 Apr 9, 2025
@renovate renovate bot force-pushed the renovate/rspack-monorepo branch from 672f2c6 to d0c8d91 Compare April 15, 2025 11:46
@renovate renovate bot changed the title chore(deps): update rspack monorepo to v1.3.4 chore(deps): update rspack monorepo to v1.3.5 Apr 15, 2025
@Robot-Inventor Robot-Inventor merged commit d640958 into main Apr 20, 2025
5 of 6 checks passed
@Robot-Inventor Robot-Inventor deleted the renovate/rspack-monorepo branch April 20, 2025 14:20
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