Skip to content

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

Merged
chenjiahan merged 1 commit intomainfrom
renovate/all-minor-patch
Mar 15, 2026
Merged

fix(deps): update all non-major dependencies#110
chenjiahan merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 15, 2026

This PR contains the following updates:

Package Change Age Confidence
@mantine/core (source) ^8.3.16^8.3.17 age confidence
@rsbuild/plugin-react (source) ^1.4.5^1.4.6 age confidence
@vitejs/plugin-react (source) ^5.1.4^5.2.0 age confidence
esbuild ^0.27.3^0.27.4 age confidence
pnpm (source) 10.32.010.32.1 age confidence
rolldown (source) ^1.0.0-rc.8^1.0.0-rc.9 age confidence
terser-webpack-plugin ^5.3.17^5.4.0 age confidence
vite (source) ^8.0.0-beta.18^8.0.0 age confidence
vuetify (source) ^4.0.1^4.0.2 age confidence

Release Notes

mantinedev/mantine (@​mantine/core)

v8.3.17

Compare Source

Last 8.x release

This is the last 8.x release. You are welcome to test 9.0 alpha version and provide feedback before its release on March 31.

https://alpha.mantine.dev/changelog/9-0-0/

Changes

  • [@mantine/core] Stepper: Fix Google Translate compatibility issues (#​8744)
  • [@mantine/hooks] use-list-state: Add memoization to all handlers (#​8739)
web-infra-dev/rsbuild (@​rsbuild/plugin-react)

v1.4.6

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.4.5...v1.4.6

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v5.2.0

Compare Source

evanw/esbuild (esbuild)

v0.27.4

Compare Source

  • Fix a regression with CSS media queries (#​4395, #​4405, #​4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @&#8203;media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    
    /* Old output (incorrect) */
    @&#8203;media only screen and (min-width: 10px) or (min-height: 10px) {
      a {
        color: red;
      }
    }
    
    /* New output (correct) */
    @&#8203;media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a {
        color: red;
      }
    }
  • Fix an edge case with the inject feature (#​4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#​4329, #​4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

    The primary issue is that V8 has an implementation-specific maximum string length, so using the JSON.parse API with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of using JSON.parse when the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly.

    However, hitting this case is potentially a sign that something else is wrong. Ideally you wouldn't be building something so enormous that the build metadata can't even fit inside a JavaScript string. You may want to consider optimizing your project, or breaking up your project into multiple parts that are built independently. Another option could potentially be to use esbuild's command-line API instead of its JavaScript API, which is more efficient (although of course then you can't use JavaScript plugins, so it may not be an option).

pnpm/pnpm (pnpm)

v10.32.1: pnpm 10.32.1

Compare Source

Patch Changes

  • Fix a regression where pnpm-workspace.yaml without a packages field caused all directories to be treated as workspace projects. This broke projects that use pnpm-workspace.yaml only for settings (e.g. minimumReleaseAge) without defining workspace packages #​10909.

Platinum Sponsors

Bit

Gold Sponsors

Sanity Discord Vite
SerpApi CodeRabbit Stackblitz
Workleap Nx
rolldown/rolldown (rolldown)

v1.0.0-rc.9

Compare Source

💥 BREAKING CHANGES
🚀 Features
🐛 Bug Fixes
💼 Other
🚜 Refactor
📚 Documentation
⚡ Performance
🧪 Testing
  • replace heavy filename_with_hash test with targeted hash fixtures (#​8597) by @​Boshen
⚙️ Miscellaneous Tasks
◀️ Revert
webpack/terser-webpack-plugin (terser-webpack-plugin)

v5.4.0

Compare Source

Features
  • added ability to minimizer JSON using jsonMinify (#​657) (29ac915)
5.3.17 (2026-03-03)
Bug Fixes
  • update serialize-javascript (37c490c)
5.3.16 (2025-12-11)
Bug Fixes
5.3.15 (2025-12-05)
Bug Fixes
  • catch error when loading minimizers (#​639) (586af0a)
  • respect errors and warnings from minimizer without code (8607f79)
5.3.14 (2025-03-06)
Bug Fixes
5.3.13 (2025-03-05)
Bug Fixes
5.3.12 (2025-02-27)
Bug Fixes
  • allows minimizers to set worker thread support and don't use worker thread for swc and esbuild (#​619) (15ddaab)
5.3.11 (2024-12-13)
Bug Fixes
  • avoid the deprecation message (0341ad1)
5.3.10 (2023-12-28)
Bug Fixes
5.3.9 (2023-05-17)
Bug Fixes
5.3.8 (2023-05-06)
Bug Fixes
5.3.7 (2023-03-08)
Bug Fixes
5.3.6 (2022-08-29)
Bug Fixes
  • allow disable compress options for terser and swc (#​514) (52c1aef)
5.3.5 (2022-08-16)
Bug Fixes
5.3.4 (2022-08-12)
Bug Fixes
  • respect environment options for terser and swc compress options (#​509) (29bbc3a)
5.3.3 (2022-06-02)
Fixes
  • fix broken release
5.3.2 (2022-06-02)
Chore
  • switched to @jridgewell/source-map for error generation
5.3.1 (2022-02-01)
Bug Fixes
vitejs/vite (vite)

v8.0.0

Compare Source

Features
Bug Fixes
vuetifyjs/vuetify (vuetify)

v4.0.2

Compare Source

🚀 Features
🔧 Bug Fixes
🧪 Labs
  • VAvatarGroup: ❗ change the limit behavior to cover overflow item (e580ebc), closes #​22702 #​22703
  • VCommandPalette: add closeOnSelect prop and before-select event (#​22634) (d534f79)
  • VCommandPalette: correct name of the inner component (bfed30c)

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), 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 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 c12e723 into main Mar 15, 2026
7 checks passed
@chenjiahan chenjiahan deleted the renovate/all-minor-patch branch March 15, 2026 01:17
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