Skip to content

chore(deps): update dependency prettier to v3.6.2 #15316

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 23, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) 3.5.3 -> 3.6.2 age adoption passing confidence

Release Notes

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


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jun 23, 2025
Copy link
Contributor Author

renovate bot commented Jun 23, 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: 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: @nestjs/common@11.0.16
npm error Found: file-type@21.0.0
npm error node_modules/file-type
npm error   file-type@"21.0.0" from the root project
npm error
npm error Could not resolve dependency:
npm error peer file-type@"^20.4.1" from @nestjs/common@11.0.16
npm error node_modules/@nestjs/common
npm error   peer @nestjs/common@"^11.0.1" from @nestjs/apollo@13.1.0
npm error   node_modules/@nestjs/apollo
npm error     dev @nestjs/apollo@"13.1.0" from the root project
npm error   peer @nestjs/common@"^11.0.0" from @nestjs/core@11.0.3
npm error   node_modules/@nestjs/core
npm error     peer @nestjs/core@"^11.0.1" from @nestjs/apollo@13.1.0
npm error     node_modules/@nestjs/apollo
npm error       dev @nestjs/apollo@"13.1.0" from the root project
npm error     3 more (@nestjs/graphql, @nestjs/mongoose, @nestjs/typeorm)
npm error   4 more (@nestjs/graphql, @nestjs/mapped-types, ...)
npm error
npm error Conflicting peer dependency: file-type@20.5.0
npm error node_modules/file-type
npm error   peer file-type@"^20.4.1" from @nestjs/common@11.0.16
npm error   node_modules/@nestjs/common
npm error     peer @nestjs/common@"^11.0.1" from @nestjs/apollo@13.1.0
npm error     node_modules/@nestjs/apollo
npm error       dev @nestjs/apollo@"13.1.0" from the root project
npm error     peer @nestjs/common@"^11.0.0" from @nestjs/core@11.0.3
npm error     node_modules/@nestjs/core
npm error       peer @nestjs/core@"^11.0.1" from @nestjs/apollo@13.1.0
npm error       node_modules/@nestjs/apollo
npm error         dev @nestjs/apollo@"13.1.0" from the root project
npm error       3 more (@nestjs/graphql, @nestjs/mongoose, @nestjs/typeorm)
npm error     4 more (@nestjs/graphql, @nestjs/mapped-types, ...)
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-06-27T03_38_20_166Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2025-06-27T03_38_20_166Z-debug-0.log

@coveralls
Copy link

coveralls commented Jun 23, 2025

Pull Request Test Coverage Report for Build b30e6509-64a8-4ba9-907d-ec6fd06ec6db

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 88.918%

Totals Coverage Status
Change from base Build 8d643332-4d70-4223-ba18-9d20e00bb159: 0.0%
Covered Lines: 7197
Relevant Lines: 8094

💛 - Coveralls

@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 630f11c to 83010c9 Compare June 25, 2025 10:54
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.6.0 chore(deps): update dependency prettier to v3.6.1 Jun 25, 2025
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 83010c9 to f516029 Compare June 27, 2025 03:38
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.6.1 chore(deps): update dependency prettier to v3.6.2 Jun 27, 2025
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant