Skip to content

fix(deps): update all non-major dependencies #29

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

Merged
merged 1 commit into from
Apr 11, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 11, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@farmfe/core 1.7.1 -> 1.7.2 age adoption passing confidence
@rsbuild/core (source) ^1.3.1 -> ^1.3.5 age adoption passing confidence
@rsbuild/plugin-react (source) ^1.1.1 -> ^1.2.0 age adoption passing confidence
@rspack/cli (source) ^1.3.0 -> ^1.3.4 age adoption passing confidence
@rspack/core (source) ^1.3.0 -> ^1.3.4 age adoption passing confidence
@rspack/plugin-react-refresh ^1.0.1 -> ^1.2.0 age adoption passing confidence
@types/node (source) ^22.13.14 -> ^22.14.0 age adoption passing confidence
@types/react (source) ^19.0.12 -> ^19.1.0 age adoption passing confidence
@types/react-dom (source) ^19.0.4 -> ^19.1.2 age adoption passing confidence
pnpm (source) 10.7.0 -> 10.8.0 age adoption passing confidence
puppeteer (source) ^24.4.0 -> ^24.6.1 age adoption passing confidence
react-router-dom (source) ^7.4.1 -> ^7.5.0 age adoption passing confidence
typescript (source) ^5.8.2 -> ^5.8.3 age adoption passing confidence
vite (source) ^6.2.4 -> ^6.2.6 age adoption passing confidence
webpack ^5.98.0 -> ^5.99.5 age adoption passing confidence

Release Notes

farm-fe/farm (@​farmfe/core)

v1.7.2

Compare Source

Patch Changes
  • e0a9e48: fix treeshake assign expr reference
web-infra-dev/rsbuild (@​rsbuild/core)

v1.3.5

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v.1.3.4...v1.3.5

v1.3.3

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

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

v1.3.2

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

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

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

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

rspack-contrib/rspack-plugin-react-refresh (@​rspack/plugin-react-refresh)

v1.2.0

Compare Source

What's Changed

Full Changelog: rspack-contrib/rspack-plugin-react-refresh@v1.1.1...v1.2.0

v1.1.1

Compare Source

What's Changed

Full Changelog: rspack-contrib/rspack-plugin-react-refresh@v1.1.0...v1.1.1

v1.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: rspack-contrib/rspack-plugin-react-refresh@v1.0.3...v1.1.0

v1.0.3

Compare Source

Full Changelog: rspack-contrib/rspack-plugin-react-refresh@v1.0.2...v1.0.3

v1.0.2

Compare Source

What's Changed

New Contributors

Full Changelog: rspack-contrib/rspack-plugin-react-refresh@v1.0.1...v1.0.2

pnpm/pnpm (pnpm)

v10.8.0

Compare Source

Minor Changes
  • Experimental. A new hook is supported for updating configuration settings. The hook can be provided via .pnpmfile.cjs. For example:

    module.exports = {
      hooks: {
        updateConfig: (config) => ({
          ...config,
          nodeLinker: "hoisted",
        }),
      },
    };
  • Now you can use the pnpm add command with the --config flag to install new configurational dependencies #​9377.

Patch Changes
  • Do not hang indefinitely, when there is a glob that starts with !/ in pnpm-workspace.yaml. This fixes a regression introduced by #​9169.
  • pnpm audit --fix should update the overrides in pnpm-workspace.yaml.
  • pnpm link should update overrides in pnpm-workspace.yaml, not in package.json #​9365.

v10.7.1: pnpm 10.7.1

Compare Source

Patch Changes

  • pnpm config set should convert the settings to their correct type before adding them to pnpm-workspace.yaml #​9355.
  • pnpm config get should read auth related settings via npm CLI #​9345.
  • Replace leading ~/ in a path in .npmrc with the home directory #​9217.

Platinum Sponsors

Bit Bit Syntax

Gold Sponsors

Discord u|screen
JetBrains Nx
CodeRabbit Route4Me
Workleap Stackblitz
puppeteer/puppeteer (puppeteer)

v24.6.1

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
Bug Fixes

v24.6.0

Compare Source

Features
Dependencies
  • The following

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.

@chenjiahan chenjiahan merged commit 2330bbd into main Apr 11, 2025
4 of 6 checks passed
@chenjiahan chenjiahan deleted the renovate/all-minor-patch branch April 11, 2025 02:24
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