Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Nov 30, 2025

Bumps the dev-dependencies group with 17 updates in the / directory:

Package From To
@antfu/eslint-config 5.4.1 6.2.0
@antv/g6 4.8.25 5.0.50
@eslint-react/eslint-plugin 1.53.1 2.3.9
@inquirer/prompts 7.10.1 8.0.1
@npmcli/run-script 9.1.0 10.0.3
@size-limit/file 11.2.0 12.0.0
@types/jsdom 21.1.7 27.0.0
antd-token-previewer 2.0.8 3.0.0
eslint-plugin-react-hooks 5.2.0 7.0.1
glob 11.1.0 13.0.0
immer 10.2.0 11.0.1
jsdom 26.1.0 27.2.0
open 10.2.0 11.0.0
ora 8.2.0 9.0.0
react-intersection-observer 9.16.0 10.0.0
size-limit 11.2.0 12.0.0
webpack-bundle-analyzer 4.10.2 5.0.1

Updates @antfu/eslint-config from 5.4.1 to 6.2.0

Release notes

Sourced from @​antfu/eslint-config's releases.

v6.2.0

   🚀 Features

    View changes on GitHub

v6.1.0

   🚀 Features

    View changes on GitHub

v6.0.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @antv/g6 from 4.8.25 to 5.0.50

Release notes

Sourced from @​antv/g6's releases.

5.0.49

What's Changed

New Contributors

Full Changelog: antvis/G6@5.0.48...5.0.49

5.0.48

What's Changed

... (truncated)

Commits

Updates @eslint-react/eslint-plugin from 1.53.1 to 2.3.9

Release notes

Sourced from @​eslint-react/eslint-plugin's releases.

v2.3.9 (2025-11-26)

What's Changed

✨ New

🐞 Fixes

New Contributors

Full Changelog: Rel1cx/eslint-react@v2.3.7...v2.3.9

v2.3.7 (2025-11-21)

What's Changed

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.3.5...v2.3.7

v2.3.5 (2025-11-13)

What's Changed

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.3.4...v2.3.5

v2.3.4 (2025-11-10)

What's Changed

✨ New

🐞 Fixes

... (truncated)

Changelog

Sourced from @​eslint-react/eslint-plugin's changelog.

v2.3.9 (2025-11-26)

✨ New

🐞 Fixes

New Contributors

Full Changelog: Rel1cx/eslint-react@v2.3.7...v2.3.9

v2.3.7 (2025-11-21)

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.3.5...v2.3.7

v2.3.5 (2025-11-13)

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.3.4...v2.3.5

v2.3.4 (2025-11-10)

✨ New

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.3.1...v2.3.4

v2.3.1 (2025-11-02)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​eslint-react/eslint-plugin since your current version.


Updates @inquirer/prompts from 7.10.1 to 8.0.1

Release notes

Sourced from @​inquirer/prompts's releases.

@​inquirer/prompts@​8.0.0

Release Notes

🚨 Breaking Changes

This is a major release that modernizes the codebase for Node.js ≥ 20.

ESM Only - No More CommonJS Support

Impact: All packages are now ESM-only. CommonJS imports are no longer supported.

If you're on modern Node versions (≥ 20), this should be transparent and have no impact.

Node.js Version Requirement

Minimum Node.js version is now 20.x

Node.js versions below 20 are no longer supported. Please upgrade to Node.js 20 or later.

Node min versions: >=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0

Deprecated APIs Removed

The following deprecated APIs have been removed after being deprecated in previous releases:

list prompt alias removed (affects inquirer package only)

The list alias has been removed from the inquirer package. This only impacts users of the legacy inquirer package, not users of @inquirer/prompts or individual prompt packages.

// ❌ No longer available (inquirer package only)
import inquirer from 'inquirer';
const answer = await inquirer.prompt([
  { type: 'list', name: 'choice', message: 'Pick one:', choices: ['a', 'b'] }
]);
// ✅ Use 'select' instead
import inquirer from 'inquirer';
const answer = await inquirer.prompt([
{ type: 'select', name: 'choice', message: 'Pick one:', choices: ['a', 'b'] }
]);

helpMode theme property removed

// ❌ No longer available
const answer = await select({
  theme: { helpMode: 'never' }
});
</tr></table>

... (truncated)

Commits
  • cce79ce chore: Publish new release
  • b1101a8 fix: Replace lerna with lerna-lite (Fix #1894)
  • aaedbec fix: yarn cache
  • 676685d Publish
  • 06268e4 Chore(deps): Bump js-yaml from 3.14.1 to 3.14.2
  • 74d2695 chore: Bump all dependencies to latest
  • 0d18ada BREAKING: dropping CJS dual module export (now ESM only) (#1856)
  • d75643f chore: Remove all deprecated code
  • caf53b9 breaking: Drop yoctocolors in favor of styleText (Node built-in util)
  • 4a16c34 breaking(*): Set officially supported Node version >=20
  • See full diff in compare view

Updates @npmcli/run-script from 9.1.0 to 10.0.3

Release notes

Sourced from @​npmcli/run-script's releases.

v10.0.3

10.0.3 (2025-11-13)

Dependencies

Chores

v10.0.2

10.0.2 (2025-10-24)

Dependencies

Chores

v10.0.1

10.0.1 (2025-10-23)

Dependencies

Chores

v10.0.0

10.0.0 (2025-09-02)

⚠️ BREAKING CHANGES

  • run-script now supports node ^20.17.0 || >=22.9.0

Bug Fixes

Dependencies

Chores

Changelog

Sourced from @​npmcli/run-script's changelog.

10.0.3 (2025-11-13)

Dependencies

Chores

10.0.2 (2025-10-24)

Dependencies

Chores

10.0.1 (2025-10-23)

Dependencies

Chores

10.0.0 (2025-09-02)

⚠️ BREAKING CHANGES

  • run-script now supports node ^20.17.0 || >=22.9.0

Bug Fixes

Dependencies

Chores

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​npmcli/run-script since your current version.


Updates @size-limit/file from 11.2.0 to 12.0.0

Release notes

Sourced from @​size-limit/file's releases.

12.0.0

  • Moved jiti to optional dependency.
  • Removed chokidar dependency in favor of fs.watch.
  • Removed Node.js 18 support.
  • Updated open & esbuild dependencies.
  • Fixed docs (by @​nlopin & @​just-boris).
Changelog

Sourced from @​size-limit/file's changelog.

12.0.0

  • Moved jiti to optional dependency.
  • Removed chokidar dependency in favor of fs.watch.
  • Removed Node.js 18 support.
  • Updated open & esbuild dependencies.
  • Fixed docs (by @​nlopin & @​just-boris).
Commits

Updates @types/jsdom from 21.1.7 to 27.0.0

Commits

Updates antd-token-previewer from 2.0.8 to 3.0.0

Release notes

Sourced from antd-token-previewer's releases.

v3.0.0-alpha.3

  • fix import path (#221) df44e7a

ant-design/antd-token-previewer@v3.0.0-alpha.2...v3.0.0-alpha.3

v3.0.0-alpha.2

  • chore: upgrade to React 19 (#220) b92278e

ant-design/antd-token-previewer@v3.0.0-alpha.1...v3.0.0-alpha.2

v3.0.0-alpha.1

  • feat: Modify the theme editor theme color selection position (#219) 59e3565
  • ci: update ver 2a05294
  • fix: The Ghost Button of the theme is not visible (#218) d00fcab

ant-design/antd-token-previewer@v3.0.0-alpha.0...v3.0.0-alpha.1

v3.0.0-alpha.0

  • chore: bump cssinjs (#217) 273d732

ant-design/antd-token-previewer@v2.0.8...v3.0.0-alpha.0

Commits

Updates eslint-plugin-react-hooks from 5.2.0 to 7.0.1

Changelog

Sourced from eslint-plugin-react-hooks's changelog.

7.0.1

  • Disallowed passing inline useEffectEvent values as JSX props to guard against accidental propagation. (#34820 by @​jf-eirinha)
  • Switch to export = so eslint-plugin-react-hooks emits correct types for consumers in Node16 ESM projects. (#34949 by @​karlhorky)
  • Tightened the typing of configs.flat so the configs export is always defined. (#34950 by @​poteto)
  • Fix named import runtime errors. (#34951, #34953 by @​karlhorky)

7.0.0

This release slims down presets to just 2 configurations (recommended and recommended-latest), and all compiler rules are enabled by default.

  • Breaking: Removed recommended-latest-legacy and flat/recommended configs. The plugin now provides recommended (legacy and flat configs with all recommended rules), and recommended-latest (legacy and flat configs with all recommended rules plus new bleeding edge experimental compiler rules). (@​poteto in #34757)

6.1.1

Note: 6.1.0 accidentally allowed use of recommended without flat config, causing errors when used with ESLint v9's defineConfig() helper. This has been fixed in 6.1.1.

6.1.0

Note: Version 6.0.0 was mistakenly released and immediately deprecated and untagged on npm. This is the first official 6.x major release and includes breaking changes.

  • Breaking: Require Node.js 18 or newer. (@​michaelfaith in #32458)
  • Breaking: Flat config is now the default recommended preset. Legacy config moved to recommended-legacy. (@​michaelfaith in #32457)
  • New Violations: Disallow calling use within try/catch blocks. (@​poteto in #34040)
  • New Violations: Disallow calling useEffectEvent functions in arbitrary closures. (@​jbrown215 in #33544)
  • Handle React.useEffect in addition to useEffect in rules-of-hooks. (@​Ayc0 in #34076)
  • Added react-hooks settings config option that to accept additionalEffectHooks that are used across exhaustive-deps and rules-of-hooks rules. (@​jbrown215) in #34497

6.0.0

Accidentally released. See 6.1.0 for the actual changes.

Commits

Updates glob from 11.1.0 to 13.0.0

Changelog

Sourced from glob's changelog.

changeglob

13

  • Move the CLI program out to a separate package, glob-bin. Install that if you'd like to continue using glob from the command line.

12

  • Remove the unsafe --shell option. The --shell option is now ONLY supported on known shells where the behavior can be implemented safely.

11.1

GHSA-5j98-mcp5-4vw2

  • Add the --shell option for the command line, with a warning that this is unsafe. (It will be removed in v12.)
  • Add the --cmd-arg/-g as a way to safely add positional arguments to the command provided to the CLI tool.
  • Detect commands with space or quote characters on known shells, and pass positional arguments to them safely, avoiding shell:true execution.

11.0

  • Drop support for node before v20

10.4

  • Add includeChildMatches: false option
  • Export the Ignore class

10.3

  • Add --default -p flag to provide a default pattern
  • exclude symbolic links to directories when follow and nodir are both set

10.2

  • Add glob cli

10.1

  • Return '.' instead of the empty string '' when the current working directory is returned as a match.
  • Add posix: true option to return / delimited paths, even on

... (truncated)

Commits

Updates immer from 10.2.0 to 11.0.1

Release notes

Sourced from immer's releases.

v11.0.1

11.0.1 (2025-11-28)

Bug Fixes

v11.0.0

11.0.0 (2025-11-23)

Performance Improvements

  • Rewrite finalization system to use a callback approach instead of tree traversal (#1183) (d6c1202)

BREAKING CHANGES

  • enable loose iteration by default

  • Simplify some iteration checks

  • Allow passing type to get/set utils to skip archetype lookup

  • Convert assigned_ to Map

  • Enable loose ...

    Description has been truncated

…ates

Bumps the dev-dependencies group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@antfu/eslint-config](https://github.com/antfu/eslint-config) | `5.4.1` | `6.2.0` |
| [@antv/g6](https://github.com/antvis/g6) | `4.8.25` | `5.0.50` |
| [@eslint-react/eslint-plugin](https://github.com/Rel1cx/eslint-react/tree/HEAD/packages/plugins/eslint-plugin) | `1.53.1` | `2.3.9` |
| [@inquirer/prompts](https://github.com/SBoudrias/Inquirer.js) | `7.10.1` | `8.0.1` |
| [@npmcli/run-script](https://github.com/npm/run-script) | `9.1.0` | `10.0.3` |
| [@size-limit/file](https://github.com/ai/size-limit) | `11.2.0` | `12.0.0` |
| [@types/jsdom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsdom) | `21.1.7` | `27.0.0` |
| [antd-token-previewer](https://github.com/ant-design/antd-token-previewer) | `2.0.8` | `3.0.0` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `5.2.0` | `7.0.1` |
| [glob](https://github.com/isaacs/node-glob) | `11.1.0` | `13.0.0` |
| [immer](https://github.com/immerjs/immer) | `10.2.0` | `11.0.1` |
| [jsdom](https://github.com/jsdom/jsdom) | `26.1.0` | `27.2.0` |
| [open](https://github.com/sindresorhus/open) | `10.2.0` | `11.0.0` |
| [ora](https://github.com/sindresorhus/ora) | `8.2.0` | `9.0.0` |
| [react-intersection-observer](https://github.com/thebuilder/react-intersection-observer) | `9.16.0` | `10.0.0` |
| [size-limit](https://github.com/ai/size-limit) | `11.2.0` | `12.0.0` |
| [webpack-bundle-analyzer](https://github.com/webpack/webpack-bundle-analyzer) | `4.10.2` | `5.0.1` |



Updates `@antfu/eslint-config` from 5.4.1 to 6.2.0
- [Release notes](https://github.com/antfu/eslint-config/releases)
- [Commits](antfu/eslint-config@v5.4.1...v6.2.0)

Updates `@antv/g6` from 4.8.25 to 5.0.50
- [Release notes](https://github.com/antvis/g6/releases)
- [Changelog](https://github.com/antvis/G6/blob/v5/CHANGELOG.md)
- [Commits](https://github.com/antvis/g6/commits)

Updates `@eslint-react/eslint-plugin` from 1.53.1 to 2.3.9
- [Release notes](https://github.com/Rel1cx/eslint-react/releases)
- [Changelog](https://github.com/Rel1cx/eslint-react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/Rel1cx/eslint-react/commits/v2.3.9/packages/plugins/eslint-plugin)

Updates `@inquirer/prompts` from 7.10.1 to 8.0.1
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/@inquirer/[email protected]...@inquirer/[email protected])

Updates `@npmcli/run-script` from 9.1.0 to 10.0.3
- [Release notes](https://github.com/npm/run-script/releases)
- [Changelog](https://github.com/npm/run-script/blob/main/CHANGELOG.md)
- [Commits](npm/run-script@v9.1.0...v10.0.3)

Updates `@size-limit/file` from 11.2.0 to 12.0.0
- [Release notes](https://github.com/ai/size-limit/releases)
- [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md)
- [Commits](ai/size-limit@11.2.0...12.0.0)

Updates `@types/jsdom` from 21.1.7 to 27.0.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jsdom)

Updates `antd-token-previewer` from 2.0.8 to 3.0.0
- [Release notes](https://github.com/ant-design/antd-token-previewer/releases)
- [Commits](ant-design/antd-token-previewer@v2.0.8...v3.0.0)

Updates `eslint-plugin-react-hooks` from 5.2.0 to 7.0.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

Updates `glob` from 11.1.0 to 13.0.0
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v11.1.0...v13.0.0)

Updates `immer` from 10.2.0 to 11.0.1
- [Release notes](https://github.com/immerjs/immer/releases)
- [Commits](immerjs/immer@v10.2.0...v11.0.1)

Updates `jsdom` from 26.1.0 to 27.2.0
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md)
- [Commits](jsdom/jsdom@26.1.0...27.2.0)

Updates `open` from 10.2.0 to 11.0.0
- [Release notes](https://github.com/sindresorhus/open/releases)
- [Commits](sindresorhus/open@v10.2.0...v11.0.0)

Updates `ora` from 8.2.0 to 9.0.0
- [Release notes](https://github.com/sindresorhus/ora/releases)
- [Commits](sindresorhus/ora@v8.2.0...v9.0.0)

Updates `react-intersection-observer` from 9.16.0 to 10.0.0
- [Release notes](https://github.com/thebuilder/react-intersection-observer/releases)
- [Commits](thebuilder/react-intersection-observer@v9.16.0...v10.0.0)

Updates `size-limit` from 11.2.0 to 12.0.0
- [Release notes](https://github.com/ai/size-limit/releases)
- [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md)
- [Commits](ai/size-limit@11.2.0...12.0.0)

Updates `webpack-bundle-analyzer` from 4.10.2 to 5.0.1
- [Changelog](https://github.com/webpack/webpack-bundle-analyzer/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack-bundle-analyzer@v4.10.2...v5.0.1)

---
updated-dependencies:
- dependency-name: "@antfu/eslint-config"
  dependency-version: 6.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@antv/g6"
  dependency-version: 5.0.50
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@eslint-react/eslint-plugin"
  dependency-version: 2.3.9
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@inquirer/prompts"
  dependency-version: 8.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@npmcli/run-script"
  dependency-version: 10.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@size-limit/file"
  dependency-version: 12.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@types/jsdom"
  dependency-version: 27.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: antd-token-previewer
  dependency-version: 3.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: eslint-plugin-react-hooks
  dependency-version: 7.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: glob
  dependency-version: 13.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: immer
  dependency-version: 11.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: jsdom
  dependency-version: 27.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: open
  dependency-version: 11.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: ora
  dependency-version: 9.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: react-intersection-observer
  dependency-version: 10.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: size-limit
  dependency-version: 12.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: webpack-bundle-analyzer
  dependency-version: 5.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 30, 2025
@github-actions
Copy link

github-actions bot commented Nov 30, 2025

Visual Regression Build for PR # Failed ❌

Potential causes:

@github-actions
Copy link

github-actions bot commented Nov 30, 2025

Preview failed

@github-actions
Copy link

size-limit report 📦

Path Size
dist/antd.min.js 445.15 KB
dist/antd-with-locales.min.js 532.67 KB

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Dec 1, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 1, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-dependencies-e157a4d2bc branch December 1, 2025 08:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant