Skip to content

chore(deps): update dependency prettier to v3.8.2#4

Merged
koki-develop merged 1 commit into
mainfrom
renovate/prettier-3.x
Apr 20, 2026
Merged

chore(deps): update dependency prettier to v3.8.2#4
koki-develop merged 1 commit into
mainfrom
renovate/prettier-3.x

Conversation

@renovate

@renovate renovate Bot commented Nov 30, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
prettier (source) 3.7.03.8.2 age confidence

Release Notes

prettier/prettier (prettier)

v3.8.2

Compare Source

v3.8.1

Compare Source

v3.8.0

Compare Source

diff

🔗 Release note

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.


Configuration

📅 Schedule: (UTC)

  • 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 becomes conflicted, 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.

@github-actions

github-actions Bot commented Nov 30, 2025

Copy link
Copy Markdown

Renovate PR Review Results

⚖️ Safety Assessment: ✅ Safe

🔍 Release Content Analysis

Based on the PR description and available information:

  • Bug Fixes: The update from 3.7.0 to 3.8.2 includes multiple patch releases (3.7.1, 3.7.2, 3.7.3, 3.7.4, 3.8.0, 3.8.1, 3.8.2) primarily focused on bug fixes
  • Key Improvements:
    • Fixed performance regression in doc printer (3.7.1)
    • Fixed string printing issues when switching quotes (3.7.2)
    • Preserved quotes for embedded HTML attribute values (3.7.2)
    • Fixed comment handling in TypeScript union types (3.7.3, 3.7.4)
    • Fixed VSCode extension compatibility issue (3.7.3)
    • Fixed LWC quote interpolation handling (3.7.4)
  • No Breaking Changes: All releases are patch versions indicating backward compatibility
  • No Security Fixes: No security-related changes mentioned in the changelog

🎯 Impact Scope Investigation

Prettier Usage in Codebase:

  • Used as devDependency in package.json:51
  • Configuration file: .prettierrc with two plugins
  • Integrated in lint-staged for pre-commit formatting (.lintstagedrc.json:3)
  • Scripts: fmt and fmt:check commands in package.json:12-13

Plugin Compatibility:

No Configuration Changes Required:

  • Current .prettierrc configuration remains compatible
  • No changes needed to lint-staged setup
  • All build scripts continue to work

💡 Recommended Actions

Immediate Action:

  • ✅ Safe to merge immediately
  • No code changes required
  • No configuration updates needed

Post-Merge Verification:

  • Run bun run fmt:check to verify formatting consistency
  • Test pre-commit hooks to ensure lint-staged integration works properly

Optional Housekeeping:

  • Consider running bun run fmt across the codebase to apply any minor formatting improvements from the bug fixes

🔗 Reference Links

Generated by koki-develop/claude-renovate-review


🚫 Permission Denied Tool Executions

The following tool executions that Claude Code attempted were blocked due to insufficient permissions.
Consider adding them to allowed_tools if needed.

Run #24549614617 - 2 tools denied

Tool Input
WebFetch {"url":"https://prettier.io/blog/2026/01/14/3.8.0","prompt":"Extract information about new features, breaking changes, deprecations, and any security-related updates in Prettier 3.8.0. Focus on changes that might affect existing codebases."}
WebSearch {"query":"prettier 3.8.0 3.8.1 3.8.2 changelog release notes breaking changes"}

Generated by koki-develop/claude-denied-tools

@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 3859400 to 3ae0d59 Compare December 1, 2025 01:16
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.7.1 chore(deps): update dependency prettier to v3.7.2 Dec 1, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 3ae0d59 to a521a64 Compare December 1, 2025 19:23
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.7.2 chore(deps): update dependency prettier to v3.7.3 Dec 1, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from a521a64 to a34ff6a Compare December 5, 2025 06:33
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.7.3 chore(deps): update dependency prettier to v3.7.4 Dec 5, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from a34ff6a to 49adc70 Compare January 18, 2026 00:42
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.7.4 chore(deps): update dependency prettier to v3.8.0 Jan 18, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 49adc70 to 066a2df Compare January 24, 2026 17:50
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.8.0 chore(deps): update dependency prettier to v3.8.1 Jan 24, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 066a2df to af2c4c0 Compare March 26, 2026 17:28
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from af2c4c0 to 45928a8 Compare April 17, 2026 05:37
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.8.1 chore(deps): update dependency prettier to v3.8.2 Apr 17, 2026
@koki-develop koki-develop merged commit 47f60e5 into main Apr 20, 2026
6 checks passed
@koki-develop koki-develop deleted the renovate/prettier-3.x branch April 20, 2026 03:35
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.

1 participant