Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 20, 2025

Bumps typescript-eslint from 8.46.2 to 8.47.0.

Release notes

Sourced from typescript-eslint's releases.

v8.47.0

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

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

v8.46.4

8.46.4 (2025-11-10)

🩹 Fixes

  • eslint-plugin: [no-deprecated] fix double-report on computed literal identifiers (#11006, #10958)
  • eslint-plugin: handle override modifier in promise-function-async fixer (#11730)
  • parser: error when both projectService and project are set (#11333)

❤️ Thank You

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

v8.46.3

8.46.3 (2025-11-03)

🩹 Fixes

  • eslint-plugin: [no-misused-promises] expand union type to retrieve target property (#11706)
  • eslint-plugin: [no-duplicate-enum-values] support signed numbers (#11722, #11723)

❤️ Thank You

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

Changelog

Sourced from typescript-eslint's changelog.

8.47.0 (2025-11-17)

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

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

8.46.4 (2025-11-10)

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

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

8.46.3 (2025-11-03)

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

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

Commits

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 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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 20, 2025
@dependabot dependabot bot requested a review from fingertips18 as a code owner November 20, 2025 07:29
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 20, 2025
@coderabbitai
Copy link

coderabbitai bot commented Nov 20, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/apps/frontend/typescript-eslint-8.47.0 branch from c87cefc to 1fa66ff Compare November 22, 2025 10:19
Bumps [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) from 8.46.2 to 8.47.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: typescript-eslint
  dependency-version: 8.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/apps/frontend/typescript-eslint-8.47.0 branch from 1fa66ff to e73f027 Compare November 22, 2025 10:25
@fingertips18
Copy link
Owner

@coderabbitai please confirm that this is good to merge and there are no breaking changes?

@coderabbitai
Copy link

coderabbitai bot commented Nov 22, 2025

Tip

For best results, initiate chat on the files or code changes.

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check the package.json in apps/frontend for typescript-eslint
cat apps/frontend/package.json | jq '.dependencies["typescript-eslint"], .devDependencies["typescript-eslint"]'

# Find eslint configuration files in apps/frontend
fd -e json -e js -e cjs -e mjs -e yaml -e yml 'eslint' apps/frontend

# Check if there are any typescript-eslint rules configured
fd 'eslint.config' apps/frontend --exec cat {}

Length of output: 1239


@fingertips18: Yes, this is safe to merge with no breaking changes. Here's my analysis:

Version Bump Analysis:

  • This is a minor version bump (8.46.2 → 8.47.0), which follows semantic versioning and guarantees backward compatibility
  • The changelog explicitly states: "This was a version bump only for typescript-eslint to align it with other projects, there were no code changes"

Changes Included:

  • v8.47.0: Adds a new optional rule no-unused-private-class-members - this is opt-in and won't affect your codebase unless explicitly enabled
  • v8.46.4: Bug fixes for no-deprecated and promise-function-async rules
  • v8.46.3: Bug fixes for no-misused-promises and no-duplicate-enum-values rules

Configuration Safety:
Your project uses tseslint.configs.recommended, which is maintained to be stable across minor versions. The new rule is not part of the recommended config, so it won't introduce any new lint errors.

Recommendation: Safe to merge. The update includes only bug fixes and an optional new feature that won't impact your existing code.

@fingertips18 fingertips18 merged commit 9b8d577 into main Nov 22, 2025
4 checks passed
@fingertips18 fingertips18 deleted the dependabot/npm_and_yarn/apps/frontend/typescript-eslint-8.47.0 branch November 22, 2025 10:35
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