Skip to content

chore(deps): update all non-major dependencies#438

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#438
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented May 6, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@babel/core (source) ^7.29.0^7.29.7 age confidence
@babel/helper-module-imports (source) ^7.28.6^7.29.7 age confidence
@babel/helper-module-transforms (source) ^7.28.6^7.29.7 age confidence
@babel/helper-plugin-utils (source) ^7.28.6^7.29.7 age confidence
@babel/helper-simple-access (source) ^7.27.1^7.29.7 age confidence
@babel/plugin-proposal-decorators (source) ^7.29.0^7.29.7 age confidence
@babel/plugin-syntax-import-assertions (source) ^7.28.6^7.29.7 age confidence
@babel/plugin-syntax-jsx (source) ^7.28.6^7.29.7 age confidence
@babel/plugin-transform-explicit-resource-management (source) ^7.28.6^7.29.7 age confidence
@babel/plugin-transform-export-namespace-from (source) ^7.27.1^7.29.7 age confidence
@babel/plugin-transform-react-jsx (source) ^7.28.6^7.29.7 age confidence
@babel/plugin-transform-typescript (source) ^7.28.6^7.29.7 age confidence
@babel/preset-typescript (source) ^7.28.5^7.29.7 age confidence
@babel/template (source) ^7.28.6^7.29.7 age confidence
@babel/traverse (source) ^7.29.0^7.29.7 age confidence
@babel/types (source) ^7.29.0^7.29.7 age confidence
@rspack/cli (source) ^2.0.1^2.0.8 age confidence
@rspack/core (source) ^2.0.1^2.0.8 age confidence
@types/node (source) ^25.6.0^25.9.3 age confidence
@typescript/native-preview (source) 7.0.0-dev.20260505.17.0.0-dev.20260612.1 age confidence
@vitest/coverage-v8 (source) ^4.1.5^4.1.8 age confidence
acorn ^8.16.0^8.17.0 age confidence
eslint (source) ^10.3.0^10.5.0 age confidence
pnpm (source) 10.30.310.34.3 age confidence
preact (source) ^10.29.1^10.29.2 age confidence
preact-render-to-string ^6.6.7^6.7.0 age confidence
prettier (source) ^3.8.3^3.8.4 age confidence
react (source) ^19.2.5^19.2.7 age confidence
react-dom (source) ^19.2.5^19.2.7 age confidence
rolldown (source) 1.0.0-rc.181.1.1 age confidence
solid-js (source) ^1.9.12^1.9.13 age confidence
terser-webpack-plugin ^5.5.0^5.6.1 age confidence
tinyexec ^1.1.2^1.2.4 age confidence
ts-loader ^9.5.7^9.6.0 age confidence
vitest (source) ^4.1.5^4.1.8 age confidence
vue (source) ^3.5.33^3.5.38 age confidence

Release Notes

babel/babel (@​babel/core)

v7.29.7

Compare Source

v7.29.7 (2026-05-25)

Re-release all packages with npm provenance attestations

v7.29.6

Compare Source

v7.29.6 (2026-05-25)

🐛 Bug Fix
Committers: 3
web-infra-dev/rspack (@​rspack/cli)

v2.0.8

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspack@v2.0.7...v2.0.8

v2.0.7

Compare Source

[!WARNING]
v2.0.7 has been deprecated because it may generate incorrect Rspack build outputs.

Please do not install or use v2.0.7. Upgrade to v2.0.8 instead, which was released as the fix for this issue.

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v2.0.6...v2.0.7

v2.0.6

Compare Source

Highlights

React Server Components: enforce server-only / client-only boundaries

RSC builds now validate the server-only and client-only marker packages. Importing a client-only module from a server-graph module (or a server-only module from a client-graph module) is reported as a diagnostic. This marker-package validation always runs and is independent of disableClientApiChecks, which now only scopes the React client-API checks.

// server component (server graph)
import 'client-only'; // ❌ reported: client-only imported in a server module

// client component (client graph)
import 'server-only'; // ❌ reported: server-only imported in a client module
Expose DeterministicModuleIdsPlugin

The webpack-compatible deterministic module id plugin is now exposed through the JS API as rspack.ids.DeterministicModuleIdsPlugin, giving you fine-grained control over module ids for long-term caching. It supports the webpack options test, maxLength, salt, fixedLength, and failOnConflict.

const rspack = require('@​rspack/core');

module.exports = {
  optimization: { moduleIds: false },
  plugins: [
    new rspack.ids.DeterministicModuleIdsPlugin({
      maxLength: 5,
      failOnConflict: true,
    }),
  ],
};
CSS Modules: preserve composes cascade order

CSS Modules now use a shared topological sort to keep the source order of composes, so composed declarations land in the output cascade in the order you authored them. This fixes subtle specificity surprises when composing local class names across modules.

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v2.0.5...v2.0.6

v2.0.5

Compare Source

Highlights

Support import.meta.glob

Rspack now supports import.meta.glob, a file-system import API already available in Vite and Turbopack. We chose to align with this ecosystem behavior.

const pages = import.meta.glob('./pages/**/*.tsx', {
  eager: true,
  import: 'default',
  query: { layout: 'docs' },
  base: './pages',
});
More controllable CSS module parsing

CSS modules can now control parsing for @import, animations, custom idents, and dashed idents through module.parser, so projects can match existing CSS Modules behavior more closely while migrating to Rspack.

export default {
  module: {
    parser: {
      'css/module': {
        import: true,
        animation: true,
        customIdents: true,
        dashedIdents: true,
      },
    },
  },
};

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v2.0.4...v2.0.5

v2.0.4

Compare Source

Highlights 💡

  • Inline const with module declarations (#​14032): Previously, Rspack only inlined constant exports from leaf modules in the module graph. Now constant exports from any module can be inlined, even when that module also imports or re-exports other modules. In rare circular-reference cases this can make a TDZ error disappear, but we do not expect real projects to rely on TDZ errors, so Rspack prioritizes the optimization.

    // constants.js
    import './setup';
    
    export const ENABLE_EXPERIMENT = false;
    
    // entry.js
    import { ENABLE_EXPERIMENT } from './constants';
    
    if (ENABLE_EXPERIMENT) {
      runExperiment();
    }
    
    // Before: constants.js is not a leaf module, so the branch could keep
    // reading the imported binding.
    if (ENABLE_EXPERIMENT) {
      runExperiment();
    }
    
    // Now: the constant can still be inlined, so dead branches are easier
    // to remove.
    if (false) {
      runExperiment();
    }
  • Tree shake namespace default reexport (#​13980): Previously, the import * as a from './a'; export default a; pattern did not tree-shake a through the default export. Now Rspack further analyzes the default-exported namespace object and can remove unused exports from the original namespace module.

    // a.js
    export function used() {}
    export function unused() {}
    
    // bridge.js
    import * as a from './a';
    export default a;
    
    // app.js
    import a from './bridge';
    
    a.used();
    
    // Before: both used and unused could be kept in the bundle.
    // Now: unused can be tree-shaken.
  • CSS global module type (#​13988): css/global is useful when most selectors in a stylesheet should stay global, but you still want CSS Modules features for selected local selectors. This makes it easier to migrate existing global CSS gradually without turning every class name into a local scoped name.

    export default {
      module: {
        rules: [{ test: /\.global\.css$/i, type: 'css/global' }],
      },
    };
    /* style.global.css */
    .button {
      color: red;
    }
    
    :local(.title) {
      font-weight: 600;
    }

    .button stays global, while .title is renamed as a local class.

  • CSS Modules local ident options (#​14009): CSS Modules now support local ident hash options such as hash function, digest, digest length, and salt. These options make generated class names more configurable and better aligned with webpack-compatible CSS Modules setups.

    export default {
      module: {
        rules: [{ test: /\.module\.css$/i, type: 'css/module' }],
        generator: {
          'css/module': {
            localIdentName: '[name]__[local]__[hash]',
            localIdentHashFunction: 'xxhash64',
            localIdentHashDigest: 'hex',
            localIdentHashDigestLength: 8,
            localIdentHashSalt: 'my-salt',
          },
        },
      },
    };

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "after 1am and before 5am"
  • Automerge
    • "after 2am and before 5am"

🚦 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.

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 01f9b4c to 94b631a Compare May 12, 2026 13:37
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from e9ed04c to 7accc98 Compare May 19, 2026 19:31
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 3ca160f to 13e1541 Compare May 22, 2026 11:48
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 12b726a to a6bf3b6 Compare May 31, 2026 02:54
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 4121722 to 495498e Compare June 8, 2026 12:47
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 15fa0aa to d617c36 Compare June 15, 2026 08:53
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from d617c36 to 5a31386 Compare June 16, 2026 01:44
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.

0 participants