Skip to content

Bump eslint from 9.39.4 to 10.1.0#50

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/eslint-10.1.0
Open

Bump eslint from 9.39.4 to 10.1.0#50
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/eslint-10.1.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 27, 2026

Bumps eslint from 9.39.4 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 27, 2026
@vercel
Copy link
Copy Markdown

vercel bot commented Mar 27, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
personal-site Ready Ready Preview, Comment Apr 1, 2026 2:44pm

@algotyrnt
Copy link
Copy Markdown
Owner

@copilot draft an issue to resolve failing ci check workflow

Copy link
Copy Markdown

Copilot AI commented Mar 31, 2026

@copilot draft an issue to resolve failing ci check workflow

Here's the drafted issue to resolve the failing CI Check workflow:


Title: Fix CI Check failure: ESLint 10.x incompatible with eslint-plugin-react used by eslint-config-next

Labels: bug, dependencies, ci


Summary

The CI Check workflow is failing after bumping eslint from 9.39.4 to 10.1.0. ESLint 10 introduced breaking API changes that are not yet supported by the plugins bundled inside eslint-config-next.

Error

TypeError: Error while loading rule 'react/display-name': contextOrFilename.getFilename is not a function
Process completed with exit code 2.

Root Cause

eslint-config-next@16.2.1 bundles eslint-plugin-react@7.37.5 and eslint-plugin-jsx-a11y@6.10.2, both of which declare peer dependency support only for eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.x. ESLint 10 renamed/removed the getFilename() context API, which causes a hard runtime failure when ESLint 10 loads these plugins.

Affected Files

  • package.jsoneslint version ^10.1.0
  • eslint.config.js — imports eslint-config-next/core-web-vitals and eslint-config-next/typescript

Steps to Reproduce

  1. Checkout branch dependabot/npm_and_yarn/eslint-10.1.0
  2. Run npm ci && npm run lint
  3. Observe the TypeError: contextOrFilename.getFilename is not a function error

Resolution Options

Option Description Effort
Option A (Recommended) Revert eslint to ^9.39.4 until eslint-config-next ships ESLint 10 support Low
Option B Close this dependabot PR and wait for eslint-config-next to update its bundled plugins to support ESLint 10 Low
Option C Upgrade next to a version that ships eslint-config-next with ESLint 10-compatible plugins (when available) Medium

Option A is the quickest fix — pin eslint back to ^9.39.4 in package.json and close this dependabot PR.

References


The most immediate fix is to close this PR and keep eslint at 9.x until eslint-config-next (part of the Next.js project) officially supports ESLint 10.

Copilot AI requested a review from algotyrnt March 31, 2026 09:26
@algotyrnt
Copy link
Copy Markdown
Owner

closing due to #54

@algotyrnt algotyrnt closed this Mar 31, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 31, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/eslint-10.1.0 branch March 31, 2026 09:32
@algotyrnt algotyrnt restored the dependabot/npm_and_yarn/eslint-10.1.0 branch April 1, 2026 14:38
@algotyrnt algotyrnt reopened this Apr 1, 2026
@algotyrnt
Copy link
Copy Markdown
Owner

@dependabot rebase

Bumps [eslint](https://github.com/eslint/eslint) from 9.39.4 to 10.1.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.4...v10.1.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-version: 10.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
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.

2 participants