Skip to content

chore(deps): update bundlers#138

Merged
Boshen merged 2 commits intomainfrom
renovate/bundlers
Mar 13, 2026
Merged

chore(deps): update bundlers#138
Boshen merged 2 commits intomainfrom
renovate/bundlers

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 12, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rollup/plugin-commonjs (source) 29.0.029.0.2 age adoption passing confidence
@rsbuild/plugin-react (source) 1.4.51.4.6 age adoption passing confidence
@rspack/cli (source) 1.7.61.7.8 age adoption passing confidence
@rspack/core (source) 1.7.61.7.8 age adoption passing confidence
@swc/core (source) 1.15.131.15.18 age adoption passing confidence
esbuild 0.27.30.27.4 age adoption passing confidence
rolldown (source) 1.0.0-rc.51.0.0-rc.9 age adoption passing confidence
terser-webpack-plugin 5.3.165.4.0 age adoption passing confidence
vite (source) 8.0.0-beta.158.0.0 age adoption passing confidence

Release Notes

rollup/plugins (@​rollup/plugin-commonjs)

v29.0.2

2026-03-06

Bugfixes
  • commonjs: conditional exports (#​1952)

v29.0.1

2026-03-05

Bugfixes
  • commonjs: correctly replaces shorthand "global" property in object (#​1957)
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

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

v1.7.8

Compare Source

What's Changed
New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.7...v1.7.8

v1.7.7

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.6...v1.7.7

swc-project/swc (@​swc/core)

v1.15.18

Compare Source

Bug Fixes
Documentation
Features
Ci

v1.15.17

Compare Source

Documentation
Features
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).

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

v1.0.0-rc.8

Compare Source

🚀 Features
🐛 Bug Fixes
🚜 Refactor
📚 Documentation
⚡ Performance
🧪 Testing
⚙️ Miscellaneous Tasks
❤️ New Contributors

v1.0.0-rc.7

Compare Source

💥 BREAKING CHANGES
🚀 Features
🐛 Bug Fixes
🚜 Refactor
📚 Documentation
⚡ Performance
🧪 Testing
⚙️ Miscellaneous Tasks
◀️ Revert
  • fix(rolldown): increase tokio blocking threads size for watch mode (#​8517) by @​hyf0
❤️ New Contributors

v1.0.0-rc.6

Compare Source

💥 BREAKING CHANGES
  • css: remove css_entry_filenames , css_chunk_filenames and related code (#​8402) by @​hyf0
  • css: drop builtin CSS bundling to explore alternative solutions (#​8399) by @​hyf0
🚀 Features
🐛 Bug Fixes
🚜 Refactor
📚 Documentation
⚡ Performance
🧪 Testing
⚙️ Miscellaneous Tasks
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

Configuration

📅 Schedule: Branch creation - "before 11am" in timezone Asia/Shanghai, 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.

@renovate renovate bot enabled auto-merge (squash) March 12, 2026 19:01
@renovate renovate bot force-pushed the renovate/bundlers branch from 7bd44b2 to 79078ec Compare March 12, 2026 21:05
Rolldown 1.0.0-rc.9 removed experimental CSS bundling support.
Externalize CSS imports since these benchmarks focus on JS bundling.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@Boshen Boshen disabled auto-merge March 13, 2026 04:04
@Boshen Boshen enabled auto-merge (squash) March 13, 2026 04:04
@Boshen Boshen merged commit 9bad0f6 into main Mar 13, 2026
4 checks passed
@Boshen Boshen deleted the renovate/bundlers branch March 13, 2026 04:04
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