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

Open
Renovate wants to merge 1 commit from renovate/prettier-3.x into main
Collaborator

This PR contains the following updates:

Package Change Age Confidence
prettier (source) 3.5.3 -> 3.6.2 age confidence

⚠️ Warning

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


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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | [`3.5.3` -> `3.6.2`](https://renovatebot.com/diffs/npm/prettier/3.5.3/3.6.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prettier/3.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier/3.5.3/3.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>prettier/prettier (prettier)</summary> ### [`v3.6.2`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#362) [Compare Source](https://github.com/prettier/prettier/compare/3.6.1...3.6.2) [diff](https://github.com/prettier/prettier/compare/3.6.1...3.6.2) ##### Markdown: Add missing blank line around code block ([#&#8203;17675](https://github.com/prettier/prettier/pull/17675) by [@&#8203;fisker](https://github.com/fisker)) <!-- prettier-ignore --> ````md <!-- 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`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#361) [Compare Source](https://github.com/prettier/prettier/compare/3.6.0...3.6.1) [diff](https://github.com/prettier/prettier/compare/3.6.0...3.6.1) ##### TypeScript: Allow const without initializer ([#&#8203;17650](https://github.com/prettier/prettier/pull/17650), [#&#8203;17654](https://github.com/prettier/prettier/pull/17654) by [@&#8203;fisker](https://github.com/fisker)) <!-- prettier-ignore --> ```jsx // 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 ([#&#8203;17665](https://github.com/prettier/prettier/pull/17665) by [@&#8203;43081j](https://github.com/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`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#360) [Compare Source](https://github.com/prettier/prettier/compare/3.5.3...3.6.0) [diff](https://github.com/prettier/prettier/compare/3.5.3...3.6.0) 🔗 [Release Notes](https://prettier.io/blog/2025/06/23/3.6.0) </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC40MC4xIiwidXBkYXRlZEluVmVyIjoiNDEuNDAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
chore(deps): update dependency prettier to v3.6.0
Some checks failed
Actions / Build Plugins (pull_request) Failing after 1s
5c57742ff4
Renovate bot requested review from cswimr 2025-06-22 21:21:30 -05:00
Renovate bot scheduled this pull request to auto merge when all checks succeed 2025-06-22 21:21:30 -05:00
Renovate bot force-pushed renovate/prettier-3.x from 5c57742ff4
Some checks failed
Actions / Build Plugins (pull_request) Failing after 1s
to 1d15dc77a4
Some checks failed
Actions / Build Plugins (pull_request) Failing after 0s
2025-06-25 02:02:17 -05:00
Compare
Renovate bot changed title from chore(deps): update dependency prettier to v3.6.0 to chore(deps): update dependency prettier to v3.6.1 2025-06-25 02:02:18 -05:00
Renovate bot force-pushed renovate/prettier-3.x from 1d15dc77a4
Some checks failed
Actions / Build Plugins (pull_request) Failing after 0s
to a933d97a8e
Some checks failed
Actions / Build Plugins (pull_request) Failing after 1s
2025-06-26 22:01:36 -05:00
Compare
Renovate bot changed title from chore(deps): update dependency prettier to v3.6.1 to chore(deps): update dependency prettier to v3.6.2 2025-06-26 22:01:38 -05:00
Renovate bot force-pushed renovate/prettier-3.x from a933d97a8e
Some checks failed
Actions / Build Plugins (pull_request) Failing after 1s
to f377dc629a
Some checks failed
Actions / Build Plugins (pull_request) Failing after 12s
2025-07-12 19:02:56 -05:00
Compare
Renovate bot force-pushed renovate/prettier-3.x from f377dc629a
Some checks failed
Actions / Build Plugins (pull_request) Failing after 12s
to a43185bd17
Some checks failed
Actions / Build Plugins (pull_request) Failing after 0s
2025-07-28 20:21:57 -05:00
Compare
Renovate bot force-pushed renovate/prettier-3.x from a43185bd17
Some checks failed
Actions / Build Plugins (pull_request) Failing after 0s
to 17caf121a0
Some checks failed
Actions / Build Plugins (pull_request) Failing after 2s
2025-08-20 20:43:41 -05:00
Compare
Renovate bot force-pushed renovate/prettier-3.x from 17caf121a0
Some checks failed
Actions / Build Plugins (pull_request) Failing after 2s
to 7c8c523a3f
Some checks failed
Actions / Build Plugins (pull_request) Failing after 1s
2025-08-20 21:03:27 -05:00
Compare
Renovate bot force-pushed renovate/prettier-3.x from 7c8c523a3f
Some checks failed
Actions / Build Plugins (pull_request) Failing after 1s
to b5a9cd10e2
Some checks failed
Actions / Build Plugins (pull_request) Failing after 2s
2025-08-20 21:24:24 -05:00
Compare
Some checks failed
Actions / Build Plugins (pull_request) Failing after 2s
Required
Details
Some required checks were not successful.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/prettier-3.x:renovate/prettier-3.x
git switch renovate/prettier-3.x
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
cswimr/gauntlet-cswimr-plugins!120
No description provided.