Skip to content

Bump @typescript-eslint/parser from 8.66.0 to 8.67.0 - #2736

Merged
Akanksha Jain (jainakanksha-msft) merged 4 commits into
mainfrom
dependabot/npm_and_yarn/typescript-eslint/parser-8.67.0
Aug 18, 2026
Merged

Bump @typescript-eslint/parser from 8.66.0 to 8.67.0#2736
Akanksha Jain (jainakanksha-msft) merged 4 commits into
mainfrom
dependabot/npm_and_yarn/typescript-eslint/parser-8.67.0

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubAug 13, 2026

Copy link
Copy Markdown
Contributor

Bumps @typescript-eslint/parser from 8.66.0 to 8.67.0.

Release notes

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

v8.67.0

8.67.0 (2026-08-10)

🚀 Features

  • typescript-eslint: export basic globs for using tseslint (#12105)

❤️ Thank You

See GitHub Releases for more information.

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

Changelog

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

8.67.0 (2026-08-10)

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.

Commits

@dependabotdependabotBot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 13, 2026
CopilotAI lite review requested due to automatic review settings August 13, 2026 18:33
@dependabotdependabotBot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 13, 2026

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Copilot wasn't able to review any files in this pull request.


💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

@jainakanksha-msft

Copy link
Copy Markdown
Member

Dependabot (@dependabot) rebase

Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 8.66.0 to 8.67.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.67.0/packages/parser)
---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.67.0
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
CopilotAI review requested due to automatic review settings August 17, 2026 08:24
@dependabot
dependabotBotforce-pushed the dependabot/npm_and_yarn/typescript-eslint/parser-8.67.0 branch from ebddc31 to 61ba20cCompareAugust 17, 2026 08:24

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Copilot wasn't able to review any files in this pull request.

@jainakanksha-msft

Copy link
Copy Markdown
Member

Copilot This PR was opened by Dependabot. Please take it the rest of the way before it's ready for human review:

  1. Impact analysis — identify what changed (package name, old → new version) from the PR diff/description, search the codebase for where that dependency is actually used, and summarize what could be affected.
  2. Fix build/conflict issues — run npm ci --legacy-peer-deps, npm run build, and npm run lint; resolve any merge conflicts, build errors, or lint errors that surface.
  3. Tests — add or update tests under tests/** to cover the changed usage, and make sure they meaningfully validate the change (not just re-assert the version bump).
  4. Run the suite — run the relevant npm run test:* script(s) for the affected area (e.g. test:blob, test:queue, test:table) and keep fixing until they pass.
  5. Changelog — append one bullet to ChangeLog.md under ## Upcoming ReleaseGeneral:, matching the existing style and tone of the entries already there (package name in backticks, old → new version, why, and a one-line summary of any code changes made).
  6. Comments — review any existing PR comments and review threads, including resolved/hidden ones, and address anything actionable.
  7. Self-rate — rate this work 1-10 against: correctness, test coverage, changelog accuracy, build/lint health, and comment resolution.
  8. Iterate — if it's not a 10, keep improving until it is before finishing.
  9. Summary — post a final comment explaining why this update matters, what the impact/risk is, and what could go wrong if it weren't applied, along with your self-rating and reasoning.

Co-authored-by: jainakanksha-msft <181211853+jainakanksha-msft@users.noreply.github.com>
CopilotAI review requested due to automatic review settings August 17, 2026 08:29
@dependabot
dependabotBot removed the request for review from CopilotAugust 17, 2026 08:29

CopilotAI commented Aug 17, 2026

Copy link
Copy Markdown
Contributor

Copilot This PR was opened by Dependabot. Please take it the rest of the way before it's ready for human review:

  1. Impact analysis — identify what changed (package name, old → new version) ...

Addressed in feadc9c. This lockfile-only parser update (8.66.0 → 8.67.0) affects TypeScript lint parsing through eslint.config.js, not Azurite runtime behavior. Added an ESLint configuration smoke test using TypeScript syntax, and added the changelog entry. npm ci --legacy-peer-deps, npm run build, npm run lint, the focused parser test, and npm run test all pass (846 passing, 4 pending); CodeQL reports no alerts. Without the update, parser fixes remain unavailable and future TypeScript linting compatibility could degrade. Self-rating: 10/10 for correctness, coverage, changelog accuracy, build/lint health, and comment resolution.

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 2 out of 3 changed files in this pull request and generated no new comments.

Suppressed comments (1)

tests/eslintConfig.test.ts:13

  • This test asserts only errorCount === 0. If ESLint ends up ignoring the provided filePath, ESLint can still return errorCount = 0 (while emitting a warning like "File ignored...") and the test would pass without actually validating the parser/config. Consider also asserting warningCount === 0 (or that result.messages is empty) so the smoke test fails when the file is ignored or any warnings are produced.
 assert.strictEqual(result.errorCount, 0, JSON.stringify(result.messages));

@jainakanksha-msft

Copy link
Copy Markdown
Member

Pull request overview

Copilot reviewed 2 out of 3 changed files in this pull request and generated no new comments.

Suppressed comments (1)
tests/eslintConfig.test.ts:13

  • This test asserts only errorCount === 0. If ESLint ends up ignoring the provided filePath, ESLint can still return errorCount = 0 (while emitting a warning like "File ignored...") and the test would pass without actually validating the parser/config. Consider also asserting warningCount === 0 (or that result.messages is empty) so the smoke test fails when the file is ignored or any warnings are produced.
 assert.strictEqual(result.errorCount, 0, JSON.stringify(result.messages));

Copilot, please handle this

Co-authored-by: jainakanksha-msft <181211853+jainakanksha-msft@users.noreply.github.com>
CopilotAI review requested due to automatic review settings August 18, 2026 08:04
@dependabot
dependabotBot removed the request for review from CopilotAugust 18, 2026 08:04

CopilotAI commented Aug 18, 2026

Copy link
Copy Markdown
Contributor

Pull request overview

Copilot reviewed 2 out of 3 changed files in this pull request and generated no new comments.

...

Added a warningCount === 0 assertion in 5913e3c, so ignored input or any ESLint warning now fails the smoke test. The focused test, build, and lint pass.

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 2 out of 3 changed files in this pull request and generated no new comments.

Suppressed comments (1)

ChangeLog.md:9

  • The changelog entry describes this as a devDependency bump from 8.66.0 to 8.67.0, but package.json still specifies @typescript-eslint/parser as ^8.65.0. To avoid implying that the dependency spec was changed, consider wording this as an update to the lockfile-resolved version.
- Bumped `@typescript-eslint/parser` dev dependency from 8.66.0 to 8.67.0; added an ESLint TypeScript parsing smoke test to validate the updated parser configuration.

@jainakanksha-msft

Copy link
Copy Markdown
Member

Pull request overview

Copilot reviewed 2 out of 3 changed files in this pull request and generated no new comments.

Suppressed comments (1)
ChangeLog.md:9

  • The changelog entry describes this as a devDependency bump from 8.66.0 to 8.67.0, but package.json still specifies @typescript-eslint/parser as ^8.65.0. To avoid implying that the dependency spec was changed, consider wording this as an update to the lockfile-resolved version.
- Bumped `@typescript-eslint/parser` dev dependency from 8.66.0 to 8.67.0; added an ESLint TypeScript parsing smoke test to validate the updated parser configuration.
```@copilot, please check this

Co-authored-by: jainakanksha-msft <181211853+jainakanksha-msft@users.noreply.github.com>
CopilotAI review requested due to automatic review settings August 18, 2026 08:34
@dependabot
dependabotBot removed the request for review from CopilotAugust 18, 2026 08:34

CopilotAI commented Aug 18, 2026

Copy link
Copy Markdown
Contributor

Pull request overview

Copilot reviewed 2 out of 3 changed files in this pull request and generated no new comments.

...

Updated the entry in 6586154 to describe the lockfile-resolved version change rather than a manifest dependency-spec bump. The focused parser smoke test passes.

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 2 out of 3 changed files in this pull request and generated no new comments.

@jainakanksha-msft
Akanksha Jain (jainakanksha-msft) merged commit 64edae5 into mainAug 18, 2026
46 checks passed
@dependabot
dependabotBot deleted the dependabot/npm_and_yarn/typescript-eslint/parser-8.67.0 branch August 18, 2026 09:26
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filejavascriptPull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@jainakanksha-msft