Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 28, 2025

Bumps @typescript-eslint/eslint-plugin from 8.36.0 to 8.39.0.

Release notes

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

v8.39.0

8.39.0 (2025-08-04)

🚀 Features

  • update to TypeScript 5.9.2 (#11445)
  • eslint-plugin: [naming-convention] add enumMember PascalCase default option (#11127)
  • eslint-plugin: add no-unnecessary-type-conversion to strict-type-checked ruleset (#11427)
  • eslint-plugin: [only-throw-error] support yield/await expressions (#11417)

🩹 Fixes

  • eslint-plugin: [prefer-optional-chain] ignore check option for most RHS of a chain (#11272)
  • eslint-plugin: [no-unsafe-assignment] add an unsafeObjectPattern message (#11403)

❤️ Thank You

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

v8.38.0

8.38.0 (2025-07-21)

🚀 Features

  • typescript-estree: forbid optional chain in TemplateTaggedLiteral (#11391)

🩹 Fixes

  • disallow extra properties in rule options (#11397)
  • eslint-plugin: [consistent-generic-constructors] resolve conflict with isolatedDeclarations if enabled in constructor option (#11351)
  • typescript-eslint: infer tsconfigRootDir with v8 API (#11412)
  • typescript-eslint: error on nested extends in tseslint.config() (#11361)
  • typescript-estree: ensure the token type of the property name is Identifier (#11329)

❤️ Thank You

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

... (truncated)

Changelog

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

8.39.0 (2025-08-04)

🚀 Features

  • eslint-plugin: [only-throw-error] support yield/await expressions (#11417)
  • eslint-plugin: add no-unnecessary-type-conversion to strict-type-checked ruleset (#11427)
  • update to TypeScript 5.9.2 (#11445)
  • eslint-plugin: [naming-convention] add enumMember PascalCase default option (#11127)

🩹 Fixes

  • eslint-plugin: [no-unsafe-assignment] add an unsafeObjectPattern message (#11403)
  • eslint-plugin: [prefer-optional-chain] ignore check option for most RHS of a chain (#11272)

❤️ Thank You

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

8.38.0 (2025-07-21)

🩹 Fixes

  • disallow extra properties in rule options (#11397)
  • eslint-plugin: [consistent-generic-constructors] resolve conflict with isolatedDeclarations if enabled in constructor option (#11351)

❤️ Thank You

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

8.37.0 (2025-07-14)

🩹 Fixes

  • eslint-plugin: [unified-signatures] fix false positives for ignoreOverloadsWithDifferentJSDoc option (#11381)

❤️ Thank You

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

Commits
  • c98d513 chore(release): publish 8.39.0
  • a8def4b fix(eslint-plugin): [no-unsafe-assignment] add an unsafeObjectPattern messa...
  • 422e3e2 feat(eslint-plugin): [only-throw-error] support yield/await expressions (#11417)
  • e901ad8 fix(eslint-plugin): revert #11127 (#11447)
  • 8dc8340 feat(eslint-plugin): add no-unnecessary-type-conversion to strict-type-checke...
  • 2112d58 feat: update to TypeScript 5.9.2 (#11445)
  • b872e2b feat(eslint-plugin): [naming-convention] add enumMember PascalCase default op...
  • 757f9ee fix(eslint-plugin): [prefer-optional-chain] ignore check option for most RH...
  • 5b24864 chore: fix dangling reference to generate:configs in comments (#11431)
  • d11e79e chore(release): publish 8.38.0
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

Important

Bump @typescript-eslint/eslint-plugin from 8.36.0 to 8.39.0 with new features and fixes.

  • Dependency Update:
    • Bump @typescript-eslint/eslint-plugin from 8.36.0 to 8.39.0 in package.json.
  • Features:
    • Support for yield/await expressions in only-throw-error rule.
    • Add no-unnecessary-type-conversion to strict-type-checked ruleset.
    • Update to TypeScript 5.9.2.
  • Fixes:
    • Add unsafeObjectPattern message to no-unsafe-assignment rule.
    • Ignore check option for most RHS of a chain in prefer-optional-chain rule.

This description was created by Ellipsis for c8ec996. You can customize this summary. It will automatically update as commits are pushed.

Disclaimer: Experimental PR review

Greptile Summary

This PR updates the @typescript-eslint/eslint-plugin dependency from version 8.36.0 to 8.39.0 in the root package.json file. This is a routine dependency maintenance update that brings the eslint plugin in sync with the already-updated @typescript-eslint/parser version (8.39.0) that exists in the same devDependencies section.

The update introduces several new features and improvements including support for TypeScript 5.9.2, enhanced enum member PascalCase naming convention defaults, improved error handling for unsafe assignments, and better support for yield/await expressions in the only-throw-error rule. The plugin also adds the no-unnecessary-type-conversion rule to the strict-type-checked ruleset.

This change fits naturally within the langfuse-js monorepo's development workflow, which relies heavily on TypeScript ESLint for code quality enforcement across all packages. The project's lint scripts in package.json target TypeScript files across all packages ("packages/*/src/**/*.ts"), so keeping these tools current ensures consistent and optimal type checking throughout the codebase. The update maintains version alignment between the parser and plugin components of the TypeScript ESLint toolchain, which is important for compatibility and feature consistency.

Confidence score: 5/5

  • This PR is safe to merge with minimal risk as it's a standard dependency update with no breaking changes
  • Score reflects the routine nature of this dependency update and the comprehensive changelog showing only additive features and bug fixes
  • No files require special attention as this only affects development tooling configuration

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 28, 2025
@vercel
Copy link

vercel bot commented Aug 28, 2025

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

Project Deployment Preview Updated (UTC)
langfuse-js Ready Ready Preview Sep 19, 2025 2:45pm

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

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

1 file reviewed, no comments

Edit Code Review Bot Settings | Greptile

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-8.39.0 branch from c8ec996 to 980d5c5 Compare August 28, 2025 08:31
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-8.39.0 branch from 980d5c5 to 41d019e Compare August 28, 2025 11:41
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-8.39.0 branch 2 times, most recently from 5795649 to 3f8557d Compare September 11, 2025 13:20
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-8.39.0 branch from 3f8557d to 423981e Compare September 17, 2025 11:18
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 8.36.0 to 8.39.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.39.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-8.39.0 branch from 423981e to 9d57dbd Compare September 19, 2025 14:45
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