Skip to content

dependabot npm update(deps-dev): bump the development-dependencies group with 3 updates#7

Merged
blwatkins merged 1 commit intomainfrom
dependabot/npm_and_yarn/main/development-dependencies-9889e795d8
Apr 2, 2026
Merged

dependabot npm update(deps-dev): bump the development-dependencies group with 3 updates#7
blwatkins merged 1 commit intomainfrom
dependabot/npm_and_yarn/main/development-dependencies-9889e795d8

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 2, 2026

Bumps the development-dependencies group with 3 updates: eslint, eslint-plugin-es-x and webpack-cli.

Updates eslint from 10.0.2 to 10.1.0

Release notes

Sourced from eslint's releases.

v10.1.0

Features

  • ff4382b feat: apply fix for no-var in TSModuleBlock (#20638) (Tanuj Kanti)
  • 0916995 feat: Implement api support for bulk-suppressions (#20565) (Blake Sager)

Bug Fixes

  • 2b8824e fix: Prevent no-var autofix when a variable is used before declaration (#20464) (Amaresh S M)
  • e58b4bf fix: update eslint (#20597) (renovate[bot])

Documentation

  • b7b57fe docs: use correct JSDoc link in require-jsdoc.md (#20641) (mkemna-clb)
  • 58e4cfc docs: add deprecation notice partial (#20639) (Milos Djermanovic)
  • 7143dbf docs: update v9 migration guide for @eslint/js usage (#20540) (fnx)
  • 035fc4f docs: note that globalReturn applies only with sourceType: "script" (#20630) (Milos Djermanovic)
  • e972c88 docs: merge ESLint option descriptions into type definitions (#20608) (Francesco Trotta)
  • 7f10d84 docs: Update README (GitHub Actions Bot)
  • aeed007 docs: open playground link in new tab (#20602) (Tanuj Kanti)
  • a0d1a37 docs: Add AI Usage Policy (#20510) (Nicholas C. Zakas)

Chores

  • a9f9cce chore: update dependency eslint-plugin-unicorn to ^63.0.0 (#20584) (Milos Djermanovic)
  • 1f42bd7 chore: update prettier to 3.8.1 (#20651) (루밀LuMir)
  • c0a6f4a chore: update dependency @​eslint/json to ^1.2.0 (#20652) (renovate[bot])
  • cc43f79 chore: update dependency c8 to v11 (#20650) (renovate[bot])
  • 2ce4635 chore: update dependency @​eslint/json to v1 (#20649) (renovate[bot])
  • f0406ee chore: update dependency markdownlint-cli2 to ^0.21.0 (#20646) (renovate[bot])
  • dbb4c95 chore: remove trunk (#20478) (sethamus)
  • c672a2a test: fix CLI test for empty output file (#20640) (kuldeep kumar)
  • c7ada24 ci: bump pnpm/action-setup from 4.3.0 to 4.4.0 (#20636) (dependabot[bot])
  • 07c4b8b test: fix RuleTester test without test runners (#20631) (Francesco Trotta)
  • 079bba7 test: Add tests for isValidWithUnicodeFlag (#20601) (Manish chaudhary)
  • 5885ae6 ci: unpin Node.js 25.x in CI (#20615) (Copilot)
  • f65e5d3 chore: update pnpm/action-setup digest to b906aff (#20610) (renovate[bot])

v10.0.3

Bug Fixes

  • e511b58 fix: update eslint (#20595) (renovate[bot])
  • f4c9cf9 fix: include variable name in no-useless-assignment message (#20581) (sethamus)
  • ee9ff31 fix: update dependency minimatch to ^10.2.4 (#20562) (Milos Djermanovic)

Documentation

  • 9fc31b0 docs: Update README (GitHub Actions Bot)
  • 4efaa36 docs: add info box for eslint-plugin-eslint-comments (#20570) (DesselBane)
  • 23b2759 docs: add v10 migration guide link to Use docs index (#20577) (Pixel998)
  • 80259a9 docs: Remove deprecated eslintrc documentation files (#20472) (Copilot)
  • 9b9b4ba docs: fix typo in no-await-in-loop documentation (#20575) (Pixel998)
  • e7d72a7 docs: document TypeScript 5.3 minimum supported version (#20547) (sethamus)

Chores

  • ef8fb92 chore: package.json update for eslint-config-eslint release (Jenkins)

... (truncated)

Commits

Updates eslint-plugin-es-x from 9.5.0 to 9.6.0

Release notes

Sourced from eslint-plugin-es-x's releases.

v9.6.0

Minor Changes

  • feat: add TypeScript type declarations (#338)

    Converts lib/index.js to lib/index.ts so that tsc automatically generates dist/index.d.ts during npm run build. The public API surface is typed as:

    • meta: { name: string; version: string }
    • configs: each of the 128 config names exposed as a literal key — flat configs typed as Linter.Config, legacy configs as Linter.LegacyConfig
    • rules: Record<string, Rule.RuleModule>

    IDE autocomplete works on plugin.configs['flat/...'] and invalid config keys are type errors. The declaration stays in sync automatically — no separate .d.ts to maintain.

    Closes #280

  • chore: the published js files have been moved from lib to dist. (#327)

  • Add es-x/no-date-prototype-totemporalinstant rule (#332)

  • Add es-x/no-nonstandard-temporal-duration-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-duration-prototype-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-instant-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-instant-prototype-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-now-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plaindate-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plaindate-prototype-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plaindatetime-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plaindatetime-prototype-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plainmonthday-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plainmonthday-prototype-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plaintime-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plaintime-prototype-properties rule (#332)

... (truncated)

Changelog

Sourced from eslint-plugin-es-x's changelog.

9.6.0

Minor Changes

  • feat: add TypeScript type declarations (#338)

    Converts lib/index.js to lib/index.ts so that tsc automatically generates dist/index.d.ts during npm run build. The public API surface is typed as:

    • meta: { name: string; version: string }
    • configs: each of the 128 config names exposed as a literal key — flat configs typed as Linter.Config, legacy configs as Linter.LegacyConfig
    • rules: Record<string, Rule.RuleModule>

    IDE autocomplete works on plugin.configs['flat/...'] and invalid config keys are type errors. The declaration stays in sync automatically — no separate .d.ts to maintain.

    Closes #280

  • chore: the published js files have been moved from lib to dist. (#327)

  • Add es-x/no-date-prototype-totemporalinstant rule (#332)

  • Add es-x/no-nonstandard-temporal-duration-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-duration-prototype-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-instant-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-instant-prototype-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-now-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plaindate-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plaindate-prototype-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plaindatetime-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plaindatetime-prototype-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plainmonthday-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plainmonthday-prototype-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plaintime-properties rule (#332)

  • Add es-x/no-nonstandard-temporal-plaintime-prototype-properties rule (#332)

... (truncated)

Commits

Updates webpack-cli from 6.0.1 to 7.0.2

Release notes

Sourced from webpack-cli's releases.

webpack-cli@7.0.2

Patch Changes

webpack-cli@7.0.1

Patch Changes

webpack-cli@7.0.0

Major Changes

  • The minimum supported version of Node.js is 20.9.0. (by @​alexander-akait in #4677)

  • Use dynamic import to load webpack.config.js, fallback to interpret only when configuration can't be load by dynamic import. Using dynamic imports allows you to take advantage of Node.js's built-in TypeScript support. (by @​alexander-akait in #4677)

  • Removed the --node-env argument in favor of the --config-node-env argument. (by @​alexander-akait in #4677)

  • The version command only output versions right now. (by @​alexander-akait in #4677)

  • Removed deprecated API, no action required unless you use import cli from "webpack-cli";/const cli = require("webpack-cli");. (by @​alexander-akait in #4677)

Patch Changes

Changelog

Sourced from webpack-cli's changelog.

7.0.2

Patch Changes

7.0.1

Patch Changes

7.0.0

Major Changes

  • The minimum supported version of Node.js is 20.9.0. (by @​alexander-akait in #4677)

  • Use dynamic import to load webpack.config.js, fallback to interpret only when configuration can't be load by dynamic import. Using dynamic imports allows you to take advantage of Node.js's built-in TypeScript support. (by @​alexander-akait in #4677)

  • Removed the --node-env argument in favor of the --config-node-env argument. (by @​alexander-akait in #4677)

  • The version command only output versions right now. (by @​alexander-akait in #4677)

  • Removed deprecated API, no action required unless you use import cli from "webpack-cli";/const cli = require("webpack-cli");. (by @​alexander-akait in #4677)

Patch Changes

Commits
Maintainer changes

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


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…oup with 3 updates

Bumps the development-dependencies group with 3 updates: [eslint](https://github.com/eslint/eslint), [eslint-plugin-es-x](https://github.com/eslint-community/eslint-plugin-es-x) and [webpack-cli](https://github.com/webpack/webpack-cli).


Updates `eslint` from 10.0.2 to 10.1.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.0.2...v10.1.0)

Updates `eslint-plugin-es-x` from 9.5.0 to 9.6.0
- [Release notes](https://github.com/eslint-community/eslint-plugin-es-x/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-es-x@v9.5.0...v9.6.0)

Updates `webpack-cli` from 6.0.1 to 7.0.2
- [Release notes](https://github.com/webpack/webpack-cli/releases)
- [Changelog](https://github.com/webpack/webpack-cli/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webpack/webpack-cli/compare/webpack-cli@6.0.1...webpack-cli@7.0.2)

---
updated-dependencies:
- dependency-name: eslint
  dependency-version: 10.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-es-x
  dependency-version: 9.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: webpack-cli
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 2, 2026

Labels

The following labels could not be found: npm. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot added the dependencies Additions or improvements to dependencies label Apr 2, 2026
@dependabot dependabot bot requested a review from blwatkins as a code owner April 2, 2026 01:34
@dependabot dependabot bot added the dependencies Additions or improvements to dependencies label Apr 2, 2026
@blwatkins blwatkins merged commit 6ea4872 into main Apr 2, 2026
7 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/main/development-dependencies-9889e795d8 branch April 2, 2026 01:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Additions or improvements to dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant