Skip to content

build(deps): bump @typescript-eslint/parser from 6.17.0 to 8.59.0#1300

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/typescript-eslint/parser-8.59.0
Open

build(deps): bump @typescript-eslint/parser from 6.17.0 to 8.59.0#1300
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/typescript-eslint/parser-8.59.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 4, 2026

Bumps @typescript-eslint/parser from 6.17.0 to 8.59.0.

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.59.0

8.59.0 (2026-04-20)

🚀 Features

  • eslint-plugin: [no-unnecessary-type-assertion] report more cases based on assignability (#11789)

❤️ Thank You

  • Ulrich Stark

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.58.2

8.58.2 (2026-04-13)

🩹 Fixes

  • remove tsbuildinfo cache file from published packages (#12187)
  • eslint-plugin: [no-unnecessary-condition] use assignability checks in checkTypePredicates (#12147)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.58.1

8.58.1 (2026-04-08)

🩹 Fixes

  • eslint-plugin: [no-unused-vars] fix false negative for type predicate parameter (#12004)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.58.0

8.58.0 (2026-03-30)

... (truncated)

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.59.0 (2026-04-20)

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.58.2 (2026-04-13)

🩹 Fixes

  • remove tsbuildinfo cache file from published packages (#12187)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.58.1 (2026-04-08)

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.58.0 (2026-03-30)

🚀 Features

  • support TypeScript 6 (#12124)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.57.2 (2026-03-23)

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​typescript-eslint/parser since your current version.


Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 6.17.0 to 8.59.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.59.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 4, 2026
Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dependabot merge

@codacy-production
Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

🟢 Metrics 0 complexity · 0 duplication

Metric Results
Complexity 0
Duplication 0

View in Codacy

AI Reviewer: first review requested successfully. AI can make mistakes. Always validate suggestions.

Run reviewer

TIP This summary will be updated as you push new changes.

Copy link
Copy Markdown

@codacy-production codacy-production Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR upgrades @typescript-eslint/parser to v8.59.0, which introduces breaking changes regarding environment requirements and peer dependencies. While the PR is up to standards according to Codacy, there are two significant issues that should be addressed before merging:

  1. Peer Dependency Mismatch: The new parser requires eslint ^8.57.0, but the manifest still specifies ^8.56.0.
  2. Node.js Engine Conflict: New transitive dependencies (e.g., eslint-visitor-keys v5.0.1) require Node versions >=20.19.0, which conflicts with the project's current >=20.0.0 requirement.

Updating these fields in package.json is necessary to prevent installation failures and peer dependency warnings in CI/CD environments.

About this PR

  • The updated lockfile includes several packages that have been marked as deprecated, including eslint v8.57.1 and @humanwhocodes/config-array. While these are transitive or resolved versions, be aware that future upgrades to ESLint v9+ will likely be required to resolve these deprecations.
1 comment outside of the diff
package.json

line 61 🟡 MEDIUM RISK
The project's Node.js requirement of >=20.0.0 is now broader than its transitive dependencies. Specifically, eslint-visitor-keys (v5.0.1) requires ^20.19.0 || ^22.13.0 || >=24. Update the engines.node field in package.json to ^20.19.0 || >=22.0.0 to align with the requirements of the new dependencies and prevent installation failures on older Node 20 patches.

Test suggestions

  • Execute the project's linting process (e.g., 'npm run lint') to ensure no new parsing errors or rule regressions are introduced.
  • Verify that 'npm install' or 'npm ci' completes without peer dependency warnings, specifically regarding the ESLint version mismatch.
  • Validate the application on a Node.js 20.0.0 environment to ensure compatibility with transitive dependencies requiring higher minor versions (e.g., Node 20.19.0).
Prompt proposal for missing tests
Consider implementing these tests if applicable:
1. Execute the project's linting process (e.g., 'npm run lint') to ensure no new parsing errors or rule regressions are introduced.
2. Verify that 'npm install' or 'npm ci' completes without peer dependency warnings, specifically regarding the ESLint version mismatch.
3. Validate the application on a Node.js 20.0.0 environment to ensure compatibility with transitive dependencies requiring higher minor versions (e.g., Node 20.19.0).

TIP Improve review quality by adding custom instructions
TIP How was this review? Give us feedback

Comment thread package.json
"dependencies": {
"@nodelib/fs.walk": "^2.0.0",
"@typescript-eslint/parser": "^6.17.0",
"@typescript-eslint/parser": "^8.59.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟡 MEDIUM RISK

The @typescript-eslint/parser v8.59.0 requires eslint version ^8.57.0 or higher as a peer dependency, but package.json currently specifies ^8.56.0. Update the eslint dependency to at least ^8.57.0 to satisfy the peer dependency of the new parser and prevent warnings in environments performing strict manifest validation.

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.

0 participants