chore(deps-dev): bump @typescript-eslint/parser from 6.21.0 to 8.59.1 in /apps/desktop#128
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
dde043b to
4303a3f
Compare
4303a3f to
afdc5d6
Compare
afdc5d6 to
89e04ec
Compare
89e04ec to
9e4b3de
Compare
|
PR author is in the excluded authors list. |
| "@types/ws": "^8.18.1", | ||
| "@typescript-eslint/eslint-plugin": "^6.21.0", | ||
| "@typescript-eslint/parser": "^6.21.0", | ||
| "@typescript-eslint/parser": "^8.58.2", |
There was a problem hiding this comment.
[🟡 Medium] [🔵 Bug]
@typescript-eslint/eslint-plugin remains on ^6.21.0 (line 112) while this PR upgrades @typescript-eslint/parser to ^8.58.2 (line 113). The plugin's peerDependencies declare @typescript-eslint/parser: ^6.0.0, so a v8 parser is outside its supported range. These two packages share internal data structures (scope-manager, types, typescript-estree) that must be version-aligned — mixing major versions can cause lint crashes or silent rule misbehavior.
// apps/desktop/package.json
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^8.58.2",Either upgrade both to v8 or keep both on v6.
9e4b3de to
358c1c8
Compare
| "@types/ws": "^8.18.1", | ||
| "@typescript-eslint/eslint-plugin": "^6.21.0", | ||
| "@typescript-eslint/parser": "^6.21.0", | ||
| "@typescript-eslint/parser": "^8.59.0", |
There was a problem hiding this comment.
[🟡 Medium] [🔵 Bug]
@typescript-eslint/eslint-plugin remains on ^6.21.0 (line 111) while this PR upgrades @typescript-eslint/parser to ^8.59.0 (line 112). The plugin's peerDependencies declare @typescript-eslint/parser: ^6.0.0, so a v8 parser is outside its supported range. These two packages share internal data structures (scope-manager, types, typescript-estree) that must be version-aligned — mixing major versions causes lint crashes or silent rule misbehavior.
// apps/desktop/package.json
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^8.59.0",Either upgrade both to v8 or keep both on v6.
358c1c8 to
1b72ff8
Compare
1b72ff8 to
f3bfba1
Compare
|
Deployment failed with the following error: Learn More: https://vercel.com/arul28s-projects?upgradeToPro=build-rate-limit |
| "@types/ws": "^8.18.1", | ||
| "@typescript-eslint/eslint-plugin": "^6.21.0", | ||
| "@typescript-eslint/parser": "^6.21.0", | ||
| "@typescript-eslint/parser": "^8.59.0", |
There was a problem hiding this comment.
[🟠 High] [🔵 Bug]
The parser is bumped to ^8.59.0 while @typescript-eslint/eslint-plugin remains at ^6.21.0 (line 117). The typescript-eslint project requires these packages to be on the same major version — they share internal packages (scope-manager, types, typescript-estree) whose structures differ across majors. With this mismatch, the v6 plugin receives AST nodes shaped by the v8 parser, which can cause lint rules to silently misfire, produce false positives/negatives, or throw at runtime. The lockfile now installs duplicate v6 and v8 copies of @typescript-eslint/scope-manager, types, and visitor-keys.
// apps/desktop/package.json
"@typescript-eslint/eslint-plugin": "^6.21.0", // ← still v6
"@typescript-eslint/parser": "^8.59.0", // ← bumped to v8Both packages must be bumped together. Either bump @typescript-eslint/eslint-plugin to ^8.59.0 as well, or keep the parser at ^6.21.0.
f04442d to
ae4d2fe
Compare
ae4d2fe to
8474a7a
Compare
|
Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting |
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 6.21.0 to 8.59.1. - [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.1/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-version: 8.58.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
8474a7a to
89ba88d
Compare
Bumps @typescript-eslint/parser from 6.21.0 to 8.59.1.
Release notes
Sourced from
@typescript-eslint/parser's releases.... (truncated)
Changelog
Sourced from
@typescript-eslint/parser's changelog.... (truncated)
Commits
5245793chore(release): publish 8.59.1ea9ae4fchore(release): publish 8.59.090c2803chore(release): publish 8.58.2be6b49afix: remove tsbuildinfo cache file from published packages (#12187)5311ed3chore(release): publish 8.58.14933417chore(release): publish 8.58.08cde2d0feat: support TypeScript 6 (#12124)be4d54dchore(release): publish 8.57.2c7c38aachore(release): publish 8.57.12c6aeeechore(release): publish 8.57.0Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for
@typescript-eslint/parsersince your current version.