Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 5, 2025

This PR contains the following updates:

Package Change Age Confidence
eslint-config-prettier 9.1.0 -> 9.1.2 age confidence
eslint-plugin-import 2.31.0 -> 2.32.0 age confidence
eslint-plugin-prettier 5.3.1 -> 5.5.4 age confidence
plop (source) 4.0.1 -> 4.0.4 age confidence
prettier (source) 3.5.3 -> 3.7.4 age confidence

Release Notes

prettier/eslint-config-prettier (eslint-config-prettier)

v9.1.2

Compare Source

import-js/eslint-plugin-import (eslint-plugin-import)

v2.32.0

Compare Source

Added
Fixed
Changed
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.4

Compare Source

Patch Changes

v5.5.3

Compare Source

republish the latest version

Full Changelog: prettier/eslint-plugin-prettier@v5.5.2...v5.5.3

v5.5.2

Compare Source

republish the latest version

Full Changelog: prettier/eslint-plugin-prettier@v5.5.1...v5.5.2

v5.5.1

Compare Source

Patch Changes

v5.5.0

Compare Source

Minor Changes

v5.4.1

Compare Source

Patch Changes
  • #​740 c21521f Thanks @​JounQin! - fix(deps): bump synckit to v0.11.7 to fix potential TypeError: Cannot read properties of undefined (reading 'message') error

v5.4.0

Compare Source

Minor Changes
plopjs/plop (plop)

v4.0.4

Compare Source

Patch Changes
  • Fix uppercase and lowercase helpers

  • Replace globby with tinyglobby

  • Updated dependencies []:

    • node-plop@​0.32.3

v4.0.3

Compare Source

Patch Changes
  • Shrunk bundle size and updated deps

  • Updated dependencies []:

    • node-plop@​0.32.2

v4.0.2

Compare Source

Patch Changes
  • Upgrade deps to be more secure

  • Updated dependencies []:

    • node-plop@​0.32.1
prettier/prettier (prettier)

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")

// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');

// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#​18352 by @​kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;

// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

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: Disabled by config. Please merge this manually once you are satisfied.

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.

@webteam-app
Copy link
Collaborator

@renovate renovate bot force-pushed the renovate/development-tools branch from c52440f to 0abc872 Compare May 8, 2025 10:29
@renovate renovate bot force-pushed the renovate/development-tools branch 2 times, most recently from e27ee65 to 0f23ffe Compare May 20, 2025 14:03
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-prettier to v5.4.0 chore(deps): update dependency eslint-plugin-prettier to v5.4.1 May 30, 2025
@renovate renovate bot force-pushed the renovate/development-tools branch 3 times, most recently from e04ec8d to dddd6c5 Compare June 2, 2025 13:23
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-prettier to v5.4.1 chore(deps): update dependency eslint-plugin-prettier to v5.5.0 Jun 17, 2025
@renovate renovate bot force-pushed the renovate/development-tools branch 2 times, most recently from 37cfeea to 9cfc597 Compare June 20, 2025 22:04
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-prettier to v5.5.0 chore(deps): update development-tools Jun 20, 2025
@renovate renovate bot force-pushed the renovate/development-tools branch 3 times, most recently from a29af36 to 346a7f0 Compare June 27, 2025 04:44
@renovate renovate bot force-pushed the renovate/development-tools branch 2 times, most recently from c255723 to a22ffda Compare July 19, 2025 00:41
@renovate renovate bot force-pushed the renovate/development-tools branch 2 times, most recently from fd9915e to 809e2c1 Compare August 6, 2025 10:10
@renovate renovate bot force-pushed the renovate/development-tools branch 2 times, most recently from 0185c6d to 6a69a29 Compare August 19, 2025 16:10
@renovate renovate bot force-pushed the renovate/development-tools branch 3 times, most recently from eacf7ee to f942676 Compare August 28, 2025 15:25
@renovate renovate bot force-pushed the renovate/development-tools branch from f942676 to ce3f3aa Compare September 4, 2025 11:00
@renovate renovate bot force-pushed the renovate/development-tools branch 3 times, most recently from e48875f to 8253d4f Compare September 26, 2025 19:09
@renovate renovate bot force-pushed the renovate/development-tools branch from 8253d4f to 1b13441 Compare October 2, 2025 14:16
@renovate renovate bot force-pushed the renovate/development-tools branch from 1b13441 to 41cf534 Compare October 16, 2025 12:37
@renovate renovate bot force-pushed the renovate/development-tools branch from 41cf534 to 1f0128a Compare October 20, 2025 13:10
@renovate renovate bot force-pushed the renovate/development-tools branch 5 times, most recently from 3a5e5eb to a80cc0d Compare November 10, 2025 21:53
@renovate renovate bot force-pushed the renovate/development-tools branch 2 times, most recently from b4cfb41 to 0347d02 Compare November 20, 2025 13:06
@renovate renovate bot force-pushed the renovate/development-tools branch 3 times, most recently from 7190d0f to d30cb9d Compare November 29, 2025 20:49
@renovate renovate bot force-pushed the renovate/development-tools branch from d30cb9d to bac2d99 Compare December 3, 2025 05:05
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.

2 participants