Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 7, 2026

This PR contains the following updates:

Package Change Age Confidence
@typescript-eslint/eslint-plugin (source) ^8.51.0^8.52.0 age confidence
@typescript-eslint/parser (source) ^8.51.0^8.52.0 age confidence
i18next (source) ^25.7.3^25.7.4 age confidence
knip (source) ^5.79.0^5.80.0 age confidence
react-router-dom (source) ^7.11.0^7.12.0 age confidence
typescript-eslint (source) ^8.51.0^8.52.0 age confidence
vite (source) ^7.3.0^7.3.1 age confidence

Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.52.0

Compare Source

🚀 Features
  • eslint-plugin-internal: [no-multiple-lines-of-errors] add rule (#​11899)
🩹 Fixes
  • eslint-plugin: [no-base-to-string] detect @​@​toPrimitive and valueOf (#​11901)
  • eslint-plugin: [no-useless-default-assignment] handle conditional initializer (#​11908)
❤️ Thank You
  • Josh Goldberg ✨
  • Ulrich Stark

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

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.52.0

Compare Source

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

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

i18next/i18next (i18next)

v25.7.4

Compare Source

  • fix: Interpolation breaks when cloning an instance 2376
webpro-nl/knip (knip)

v5.80.0: Release 5.80.0

Compare Source

remix-run/react-router (react-router-dom)

v7.12.0

Compare Source

Patch Changes
  • Updated dependencies:
    • react-router@7.12.0
typescript-eslint/typescript-eslint (typescript-eslint)

v8.52.0

Compare Source

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.

vitejs/vite (vite)

v7.3.1

Compare Source

Please refer to CHANGELOG.md for details.


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" in timezone UTC, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@Wikid82 Wikid82 marked this pull request as draft January 7, 2026 21:08
@Wikid82 Wikid82 changed the base branch from development to feature/beta-release January 7, 2026 21:13
@Wikid82 Wikid82 marked this pull request as ready for review January 7, 2026 21:13
Copilot AI review requested due to automatic review settings January 7, 2026 21:13
@Wikid82 Wikid82 merged commit 0f99bad into feature/beta-release Jan 7, 2026
11 of 13 checks passed
@github-actions github-actions bot deleted the renovate/npm-minorpatch branch January 7, 2026 21:14
@renovate
Copy link
Contributor Author

renovate bot commented Jan 7, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Copy link
Contributor

Copilot AI 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 updates seven npm dependencies in the frontend package with minor and patch version bumps. The updates include TypeScript ESLint tooling (8.51.0 → 8.52.0), internationalization library i18next (25.7.3 → 25.7.4), build tool vite (7.3.0 → 7.3.1), routing library react-router-dom (7.11.0 → 7.12.0), and unused dependency analyzer knip (5.79.0 → 5.80.0). The changes are primarily bug fixes and minor improvements according to the release notes.

Key changes:

  • TypeScript ESLint packages receive bug fixes for no-base-to-string and no-useless-default-assignment rules
  • i18next fixes an interpolation bug when cloning instances
  • Vite receives a patch update with unspecified fixes
  • react-router-dom updates to align with latest router version

Reviewed changes

Copilot reviewed 1 out of 2 changed files in this pull request and generated 2 comments.

File Description
frontend/package.json Updates dependency version ranges for 7 packages (3 runtime dependencies, 4 dev dependencies)
frontend/package-lock.json Updates resolved package versions, transitive dependencies, and dependency metadata; includes several changes to peer dependency flags
Files not reviewed (1)
  • frontend/package-lock.json: Language not supported

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

"integrity": "sha512-iIACsx8pxRnguSYhHiMn2PvhvfpopO9FXHyn1mG5txZIsAaB6F0KwbFnUQN3KCiG3Jcuad/Cao2FAs1Wp7vAyg==",
"dev": true,
"license": "MIT",
"peer": true,
Copy link

Copilot AI Jan 7, 2026

Choose a reason for hiding this comment

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

The @typescript-eslint/parser package has been marked as a peer dependency in the lockfile. This is inconsistent with its listing in package.json where it's a devDependency. This package should not be a peer dependency as it's directly used by the project's ESLint configuration. The "peer": true flag should be removed from this entry to ensure proper installation.

Suggested change
"peer": true,

Copilot uses AI. Check for mistakes.
Comment on lines 6424 to +6427
"resolved": "https://registry.npmjs.org/react/-/react-19.2.3.tgz",
"integrity": "sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==",
"license": "MIT",
"peer": true,
Copy link

Copilot AI Jan 7, 2026

Choose a reason for hiding this comment

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

Multiple core dependencies (react, react-dom, typescript, vite, vitest, i18next) have been incorrectly marked with "peer": true in the lockfile. These are direct dependencies listed in package.json, not peer dependencies. This misclassification can cause npm to handle these packages incorrectly during installation, potentially leading to missing dependencies or version conflicts. The lockfile should be regenerated to correct these peer dependency flags.

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant