Skip to content

🚨 [security] Update all of babel7 7.8.3 → 7.29.7 (minor)#143

Open
depfu[bot] wants to merge 1 commit into
masterfrom
depfu/update/npm/group/babel7-7.29.7
Open

🚨 [security] Update all of babel7 7.8.3 → 7.29.7 (minor)#143
depfu[bot] wants to merge 1 commit into
masterfrom
depfu/update/npm/group/babel7-7.29.7

Conversation

@depfu

@depfu depfu Bot commented Jun 15, 2026

Copy link
Copy Markdown

🚨 Your current dependencies have known security vulnerabilities 🚨

This dependency update fixes known security vulnerabilities. Please see the details below and assess their impact carefully. We recommend to merge and deploy this as soon as possible!


Here is everything you need to know about this update. Please take a good look at what changed and the test results before merging this pull request.

What changed?

✳️ @​babel/core (7.8.3 → 7.29.7) · Repo · Changelog

Security Advisories 🚨

🚨 @babel/core: Arbitrary File Read via sourceMappingURL Comment

Impact

Using @babel/core to compile maliciously crafted code can allow ab attacker to read any source map from the system that is running Babel, if these conditions are all true:

  • the attacker controls the input source code
  • the attacker can read the output source code
  • the attacker knows the path of the source map file that they want to read

Users that only compile trusted code are not impacted.

Patches

The vulnerability has been fixed in @babel/core@7.29.6 and @babel/core@8.0.0-rc.6.

Workarounds

Callers can mitigate the issue without upgrading by setting inputSourceMap: false in their Babel options.

Callers can also manually extract the #sourceMappingURL comment from the input source code, validate whether the source map that it links to is allowed to be read, and if it is pass an object to inputSourceMap (passing false when it's not).

Credits

Thanks Teodor-Cristian Radoi for reporting the vulnerability.

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

✳️ @​babel/preset-env (7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/compat-data (indirect, 7.8.1 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/helper-annotate-as-pure (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

7.29.7

More info than we can show here.

7.27.3

More info than we can show here.

7.27.1

More info than we can show here.

7.25.9

More info than we can show here.

7.25.7

More info than we can show here.

7.24.7

More info than we can show here.

7.24.6

More info than we can show here.

7.22.5

More info than we can show here.

7.18.6

More info than we can show here.

7.16.7

More info than we can show here.

7.16.0

More info than we can show here.

7.15.4

More info than we can show here.

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/helper-compilation-targets (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/helper-create-regexp-features-plugin (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/helper-module-imports (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/helper-module-transforms (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/helper-remap-async-to-generator (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/helper-wrap-function (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/helpers (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Security Advisories 🚨

🚨 Babel has inefficient RegExp complexity in generated code with .replace when transpiling named capturing groups

Impact

When using Babel to compile regular expression named capturing groups, Babel will generate a polyfill for the .replace method that has quadratic complexity on some specific replacement pattern strings (i.e. the second argument passed to .replace).

Your generated code is vulnerable if all the following conditions are true:

  • You use Babel to compile regular expression named capturing groups
  • You use the .replace method on a regular expression that contains named capturing groups
  • Your code uses untrusted strings as the second argument of .replace

If you are using @babel/preset-env with the targets option, the transform that injects the vulnerable code is automatically enabled if:

  • you use duplicated named capturing groups, and target any browser older than Chrome/Edge 126, Opera 112, Firefox 129, Safari 17.4, or Node.js 23
  • you use any named capturing groups, and target any browser older than Chrome 64, Opera 71, Edge 79, Firefox 78, Safari 11.1, or Node.js 10

You can verify what transforms @babel/preset-env is using by enabling the debug option.

Patches

This problem has been fixed in @babel/helpers and @babel/runtime 7.26.10 and 8.0.0-alpha.17, please upgrade. It's likely that you do not directly depend on @babel/helpers, and instead you depend on @babel/core (which itself depends on @babel/helpers). Upgrading to @babel/core 7.26.10 is not required, but it guarantees that you are on a new enough @babel/helpers version.

Please note that just updating your Babel dependencies is not enough: you will also need to re-compile your code.

Workarounds

If you are passing user-provided strings as the second argument of .replace on regular expressions that contain named capturing groups, validate the input and make sure it does not contain the substring $< if it's then not followed by > (possibly with other characters in between).

References

This vulnerability was reported and fixed in #17173.

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-arrow-functions (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-async-to-generator (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-block-scoped-functions (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-block-scoping (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-classes (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-computed-properties (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-destructuring (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-dotall-regex (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-duplicate-keys (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-exponentiation-operator (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-for-of (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-function-name (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-literals (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-member-expression-literals (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-modules-amd (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-modules-commonjs (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-modules-systemjs (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Security Advisories 🚨

🚨 @babel/plugin-transform-modules-systemjs generates arbitrary code when compiling malicious input

Impact

Using Babel to compile code that was specifically crafted by an attacker can cause Babel to generate output code that executes arbitrary code.

Known affected plugins are:

  • @babel/plugin-transform-modules-systemjs
  • @babel/preset-env when using the modules: "systemjs" option, as it delegates to @babel/plugin-transform-modules-systemjs

No other plugins under the @babel namespace are impacted.

Users that only compile trusted code are not impacted.

Patches

The vulnerability has been fixed in @babel/plugin-transform-modules-systemjs@7.29.4.

Babel also released @babel/preset-env@7.29.5, updating its @babel/plugin-transform-modules-systemjs dependency, to simplify forcing the update if you are using @babel/preset-env directly.

Workarounds

  • Pin @babel/parser to v7.11.5. The downgrade will completely disable string module name parsing, but it would also disable other new language features and the build pipeline may fail as a result. Only do so if you are working on a legacy codebase and can not upgrade @babel/plugin-transform-modules-systemjs to v7.29.4.
  • Do not use the modules: "systemjs" option, migrate the codebase to native ES Modules or any other module formats.

Credits

Babel thanks Daniel Cervera for reporting the vulnerability.

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-modules-umd (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-new-target (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-object-super (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-parameters (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-property-literals (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-regenerator (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-shorthand-properties (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-spread (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-sticky-regex (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-template-literals (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-typeof-symbol (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ @​babel/plugin-transform-unicode-regex (indirect, 7.8.3 → 7.29.7) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ browserslist (indirect, 4.8.3 → 4.28.2) · Repo · Changelog

Security Advisories 🚨

🚨 Regular Expression Denial of Service in browserslist

The package browserslist from 4.0.0 and before 4.16.5 are vulnerable to Regular Expression Denial of Service (ReDoS) during parsing of queries.

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ caniuse-lite (indirect, 1.0.30001021 → 1.0.30001799) · Repo · Changelog

↗️ core-js-compat (indirect, 3.6.4 → 3.49.0) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ electron-to-chromium (indirect, 1.3.337 → 1.5.372) · Repo · Changelog

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ gensync (indirect, 1.0.0-beta.1 → 1.0.0-beta.2) · Repo

Sorry, we couldn't find anything useful about this release.

↗️ json5 (indirect, 2.1.1 → 2.2.3) · Repo · Changelog

Security Advisories 🚨

🚨 Prototype Pollution in JSON5 via Parse Method

The parse method of the JSON5 library before and including version 2.2.1 does not restrict parsing of keys named __proto__, allowing specially crafted strings to pollute the prototype of the resulting object.

This vulnerability pollutes the prototype of the object returned by JSON5.parse and not the global Object prototype, which is the commonly understood definition of Prototype Pollution. However, polluting the prototype of a single object can have significant security impact for an application if the object is later used in trusted operations.

Impact

This vulnerability could allow an attacker to set arbitrary and unexpected keys on the object returned from JSON5.parse. The actual impact will depend on how applications utilize the returned object and how they filter unwanted keys, but could include denial of service, cross-site scripting, elevation of privilege, and in extreme cases, remote code execution.

Mitigation

This vulnerability is patched in json5 v2.2.2 and later. A patch has also been backported for json5 v1 in versions v1.0.2 and later.

Details

Suppose a developer wants to allow users and admins to perform some risky operation, but they want to restrict what non-admins can do. To accomplish this, they accept a JSON blob from the user, parse it using JSON5.parse, confirm that the provided data does not set some sensitive keys, and then performs the risky operation using the validated data:

const JSON5 = require('json5');

const doSomethingDangerous = (props) => {
if (props.isAdmin) {
console.log('Doing dangerous thing as admin.');
} else {
console.log('Doing dangerous thing as user.');
}
};

const secCheckKeysSet = (obj, searchKeys) => {
let searchKeyFound = false;
Object.keys(obj).forEach((key) => {
if (searchKeys.indexOf(key) > -1) {
searchKeyFound = true;
}
});
return searchKeyFound;
};

const props = JSON5.parse('{"foo": "bar"}');
if (!secCheckKeysSet(props, ['isAdmin', 'isMod'])) {
doSomethingDangerous(props); // "Doing dangerous thing as user."
} else {
throw new Error('Forbidden...');
}

If the user attempts to set the isAdmin key, their request will be rejected:

const props = JSON5.parse('{"foo": "bar", "isAdmin": true}');
if (!secCheckKeysSet(props, ['isAdmin', 'isMod'])) {
  doSomethingDangerous(props);
} else {
  throw new Error('Forbidden...'); // Error: Forbidden...
}

However, users can instead set the __proto__ key to {"isAdmin": true}. JSON5 will parse this key and will set the isAdmin key on the prototype of the returned object, allowing the user to bypass the security check and run their request as an admin:

const props = JSON5.parse('{"foo": "bar", "__proto__": {"isAdmin": true}}');
if (!secCheckKeysSet(props, ['isAdmin', 'isMod'])) {
  doSomethingDangerous(props); // "Doing dangerous thing as admin."
} else {
  throw new Error('Forbidden...');
}
Release Notes

2.2.3

More info than we can show here.

2.2.2

More info than we can show here.

2.2.1

More info than we can show here.

2.2.0

More info than we can show here.

2.1.3

More info than we can show here.

2.1.2

More info than we can show here.

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ node-releases (indirect, 1.1.46 → 2.0.47) · Repo

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ regenerate (indirect, 1.4.0 → 1.4.2) · Repo

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ regexpu-core (indirect, 4.6.0 → 6.4.0) · Repo

Release Notes

6.0.0

More info than we can show here.

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ regjsparser (indirect, 0.6.2 → 0.13.2) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

🆕 @​babel/helper-define-polyfill-provider (added, 0.6.8)

🆕 @​babel/helper-globals (added, 7.29.7)

🆕 @​babel/helper-skip-transparent-expression-wrappers (added, 7.29.7)

🆕 @​babel/helper-string-parser (added, 7.29.7)

🆕 @​babel/helper-validator-identifier (added, 7.29.7)

🆕 @​babel/helper-validator-option (added, 7.29.7)

🆕 @​babel/plugin-bugfix-firefox-class-in-computed-class-key (added, 7.29.7)

🆕 @​babel/plugin-bugfix-safari-class-field-initializer-scope (added, 7.29.7)

🆕 @​babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression (added, 7.29.7)

🆕 @​babel/plugin-bugfix-safari-rest-destructuring-rhs-array (added, 7.29.7)

🆕 @​babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining (added, 7.29.7)

🆕 @​babel/plugin-bugfix-v8-static-class-fields-redefine-readonly (added, 7.29.7)

🆕 @​babel/plugin-proposal-private-property-in-object (added, 7.21.0-placeholder-for-preset-env.2)

🆕 @​babel/plugin-syntax-import-assertions (added, 7.29.7)

🆕 @​babel/plugin-syntax-import-attributes (added, 7.29.7)

🆕 @​babel/plugin-syntax-unicode-sets-regex (added, 7.18.6)

🆕 @​babel/plugin-transform-async-generator-functions (added, 7.29.7)

🆕 @​babel/plugin-transform-class-properties (added, 7.29.7)

🆕 @​babel/plugin-transform-class-static-block (added, 7.29.7)

🆕 @​babel/plugin-transform-duplicate-named-capturing-groups-regex (added, 7.29.7)

🆕 @​babel/plugin-transform-dynamic-import (added, 7.29.7)

🆕 @​babel/plugin-transform-explicit-resource-management (added, 7.29.7)

🆕 @​babel/plugin-transform-export-namespace-from (added, 7.29.7)

🆕 @​babel/plugin-transform-json-strings (added, 7.29.7)

🆕 @​babel/plugin-transform-logical-assignment-operators (added, 7.29.7)

🆕 @​babel/plugin-transform-nullish-coalescing-operator (added, 7.29.7)

🆕 @​babel/plugin-transform-numeric-separator (added, 7.29.7)

🆕 @​babel/plugin-transform-object-rest-spread (added, 7.29.7)

🆕 @​babel/plugin-transform-optional-catch-binding (added, 7.29.7)

🆕 @​babel/plugin-transform-optional-chaining (added, 7.29.7)

🆕 @​babel/plugin-transform-private-methods (added, 7.29.7)

🆕 @​babel/plugin-transform-private-property-in-object (added, 7.29.7)

🆕 @​babel/plugin-transform-regexp-modifiers (added, 7.29.7)

🆕 @​babel/plugin-transform-unicode-escapes (added, 7.29.7)

🆕 @​babel/plugin-transform-unicode-property-regex (added, 7.29.7)

🆕 @​babel/plugin-transform-unicode-sets-regex (added, 7.29.7)

🆕 @​babel/preset-modules (added, 0.1.6-no-external-plugins)

🆕 @​jridgewell/gen-mapping (added, 0.3.13)

🆕 @​jridgewell/remapping (added, 2.3.5)

🆕 @​jridgewell/resolve-uri (added, 3.1.2)

🆕 @​jridgewell/sourcemap-codec (added, 1.5.5)

🆕 @​jridgewell/trace-mapping (added, 0.3.31)

🆕 babel-plugin-polyfill-corejs2 (added, 0.4.17)

🆕 babel-plugin-polyfill-corejs3 (added, 0.14.2)

🆕 babel-plugin-polyfill-regenerator (added, 0.6.8)

🆕 baseline-browser-mapping (added, 2.10.37)

🆕 es-errors (added, 1.3.0)

🆕 escalade (added, 3.2.0)

🆕 hasown (added, 2.0.4)

🆕 is-core-module (added, 2.16.2)

🆕 lodash.debounce (added, 4.0.8)

🆕 picocolors (added, 1.1.1)

🆕 supports-preserve-symlinks-flag (added, 1.0.0)

🆕 update-browserslist-db (added, 1.2.3)

🗑️ @​babel/helper-builder-binary-assignment-operator-visitor (removed)

🗑️ @​babel/helper-call-delegate (removed)

🗑️ @​babel/helper-define-map (removed)

🗑️ @​babel/helper-explode-assignable-expression (removed)

🗑️ @​babel/helper-hoist-variables (removed)

🗑️ @​babel/helper-regex (removed)

🗑️ @​babel/helper-simple-access (removed)

🗑️ @​babel/plugin-proposal-async-generator-functions (removed)

🗑️ @​babel/plugin-proposal-dynamic-import (removed)

🗑️ @​babel/plugin-proposal-json-strings (removed)

🗑️ @​babel/plugin-proposal-nullish-coalescing-operator (removed)

🗑️ @​babel/plugin-proposal-object-rest-spread (removed)

🗑️ @​babel/plugin-proposal-optional-catch-binding (removed)

🗑️ @​babel/plugin-proposal-optional-chaining (removed)

🗑️ @​babel/plugin-proposal-unicode-property-regex (removed)

🗑️ @​babel/plugin-syntax-async-generators (removed)

🗑️ @​babel/plugin-syntax-json-strings (removed)

🗑️ @​babel/plugin-syntax-nullish-coalescing-operator (removed)

🗑️ @​babel/plugin-syntax-object-rest-spread (removed)

🗑️ @​babel/plugin-syntax-optional-catch-binding (removed)

🗑️ @​babel/plugin-syntax-optional-chaining (removed)

🗑️ @​babel/plugin-syntax-top-level-await (removed)

🗑️ babel-plugin-dynamic-import-node (removed)

🗑️ leven (removed)

🗑️ levenary (removed)

🗑️ private (removed)

🗑️ regenerator-transform (removed)


Depfu Status

Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with @depfu rebase.

All Depfu comment commands
@​depfu rebase
Rebases against your default branch and redoes this update
@​depfu recreate
Recreates this PR, overwriting any edits that you've made to it
@​depfu merge
Merges this PR once your tests are passing and conflicts are resolved
@​depfu cancel merge
Cancels automatic merging of this PR
@​depfu close
Closes this PR and deletes the branch
@​depfu reopen
Restores the branch and reopens this PR (if it's closed)
@​depfu pause
Ignores all future updates for this dependency and closes this PR
@​depfu pause [minor|major]
Ignores all future minor/major updates for this dependency and closes this PR
@​depfu resume
Future versions of this dependency will create PRs again (leaves this PR as is)

@depfu depfu Bot added the depfu label Jun 15, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants