Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 12, 2025

This PR contains the following updates:

Package Change Age Confidence
@eslint/js (source) 9.29.0 -> 9.33.0 age confidence
@html-eslint/eslint-plugin ^0.40.0 -> ^0.45.0 age confidence
@html-eslint/parser ^0.40.0 -> ^0.45.0 age confidence
@typescript-eslint/eslint-plugin (source) 8.32.1 -> 8.39.1 age confidence
browserslist 4.25.1 -> 4.25.2 age confidence
prettier (source) 3.5.3 -> 3.6.2 age confidence
typescript (source) 5.8.3 -> 5.9.2 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

eslint/eslint (@​eslint/js)

v9.33.0

Compare Source

v9.32.0

Compare Source

v9.31.0

Compare Source

v9.30.1

Compare Source

v9.30.0

Compare Source

yeonjuan/html-eslint (@​html-eslint/eslint-plugin)

v0.45.0

Compare Source

What's Changed

Full Changelog: yeonjuan/html-eslint@v0.44.0...v0.45.0

v0.44.0

Compare Source

What's Changed

Full Changelog: yeonjuan/html-eslint@v0.43.1...v0.44.0

v0.43.1

Compare Source

What's Changed

New Contributors

Full Changelog: yeonjuan/html-eslint@v0.43.0...v0.43.1

v0.43.0

Compare Source

What's Changed
New Contributors

Full Changelog: yeonjuan/html-eslint@v0.42.0...v0.43.0

v0.42.0

Compare Source

What's Changed
New Contributors

Full Changelog: yeonjuan/html-eslint@v0.41.0...v0.42.0

v0.41.0

Compare Source

What's Changed
New Contributors

Full Changelog: yeonjuan/html-eslint@v0.40.3...v0.41.0

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

v8.39.1

Compare Source

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

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

v8.39.0

Compare Source

🚀 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.

v8.38.0

Compare Source

🩹 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.

v8.37.0

Compare Source

🩹 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.

v8.36.0

Compare Source

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

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

v8.35.1

Compare Source

🩹 Fixes
  • remove prettier from eslint-plugin (#​11339)
❤️ Thank You

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

v8.35.0

Compare Source

🚀 Features
  • eslint-plugin: [no-base-to-string] add checkUnknown Option (#​11128)
❤️ Thank You

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

v8.34.1

Compare Source

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

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

v8.34.0

Compare Source

🩹 Fixes
  • typescript-estree: add validation to interface extends (#​11271)
❤️ Thank You
  • Tao

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

v8.33.1

Compare Source

🩹 Fixes
  • exclude docs/ directory from eslint-plugin package (#​11251)
❤️ Thank You
  • roottool

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

v8.33.0

Compare Source

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

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

browserslist/browserslist (browserslist)

v4.25.2

Compare Source

  • Fixed Node.js --permission support (by @​broofa).
prettier/prettier (prettier)

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.

v3.6.0

Compare Source

diff

🔗 Release Notes

microsoft/TypeScript (typescript)

v5.9.2

Compare Source


Configuration

📅 Schedule: Branch creation - Between 01:00 AM and 05:59 AM, Monday through Friday ( * 1-5 * * 1-5 ) in timezone Europe/Zurich, Automerge - Between 05:00 AM and 07:59 AM, Monday through Friday ( * 5-7 * * 1-5 ) in timezone Europe/Zurich.

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

@renovate
Copy link
Contributor Author

renovate bot commented Aug 12, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: frontend/package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: [email protected]
npm error Found: @typescript-eslint/[email protected]
npm error node_modules/@typescript-eslint/parser
npm error   @typescript-eslint/parser@"8.32.1" from [email protected]
npm error   node_modules/typescript-eslint
npm error     dev typescript-eslint@"8.32.1" from the root project
npm error     peer typescript-eslint@"^8.0.0" from [email protected]
npm error     node_modules/angular-eslint
npm error       dev angular-eslint@"19.8.1" from the root project
npm error
npm error Could not resolve dependency:
npm error dev @typescript-eslint/eslint-plugin@"^8.18.2" from the root project
npm error
npm error Conflicting peer dependency: @typescript-eslint/[email protected]
npm error node_modules/@typescript-eslint/parser
npm error   peer @typescript-eslint/parser@"^8.39.1" from @typescript-eslint/[email protected]
npm error   node_modules/@typescript-eslint/eslint-plugin
npm error     dev @typescript-eslint/eslint-plugin@"^8.18.2" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2025-08-15T07_01_54_136Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2025-08-15T07_01_54_136Z-debug-0.log

@renovate renovate bot force-pushed the renovate/all-devdependencies-(minor-and-patch) branch 4 times, most recently from cc55a77 to 649d295 Compare August 12, 2025 12:44
@renovate renovate bot requested a review from MasterEvarior as a code owner August 12, 2025 12:44
@renovate renovate bot force-pushed the renovate/all-devdependencies-(minor-and-patch) branch 3 times, most recently from 723b1f1 to c651086 Compare August 13, 2025 12:06
@renovate renovate bot requested a review from a team as a code owner August 13, 2025 12:06
@renovate renovate bot force-pushed the renovate/all-devdependencies-(minor-and-patch) branch 6 times, most recently from f15346b to 3ea4c02 Compare August 15, 2025 07:02
@renovate
Copy link
Contributor Author

renovate bot commented Aug 15, 2025

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.

@Miguel7373 Miguel7373 force-pushed the renovate/all-devdependencies-(minor-and-patch) branch from 17648ca to c980337 Compare August 18, 2025 06:20
@ManuelMoeri ManuelMoeri force-pushed the renovate/all-devdependencies-(minor-and-patch) branch from c980337 to 66e7545 Compare August 18, 2025 08:52
@MasterEvarior MasterEvarior merged commit 26eb90c into main Aug 18, 2025
20 checks passed
@MasterEvarior MasterEvarior deleted the renovate/all-devdependencies-(minor-and-patch) branch August 18, 2025 12:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants