Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 6, 2025

This PR contains the following updates:

Package Change Age Confidence
@sapphire/eslint-config (source) ^5.0.5 -> ^5.0.6 age confidence
@sapphire/ts-config (source) ^5.0.1 -> ^5.0.3 age confidence
eslint-config-prettier ^9.1.0 -> ^9.1.2 age confidence
eslint-plugin-prettier ^5.2.5 -> ^5.5.4 age confidence
prettier (source) ^3.5.3 -> ^3.7.4 age confidence
typescript (source) ^5.8.2 -> ^5.9.3 age confidence

Release Notes

sapphiredev/utilities (@​sapphire/eslint-config)

v5.0.6

Compare Source

🐛 Bug Fixes

📝 Documentation

sapphiredev/utilities (@​sapphire/ts-config)

v5.0.3

Compare Source

Changelog

All notable changes to this project will be documented in this file.

v5.0.2

Compare Source

🏠 Refactor

  • Relocate tsconfig files to the package root for rolldown compatibility (b7f8a51)

🐛 Bug Fixes

📝 Documentation

  • readme: Fix readme table of contents (c60e8bd)
prettier/eslint-config-prettier (eslint-config-prettier)

v9.1.2

Compare Source

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

v5.3.1

Compare Source

Patch Changes

v5.3.0

Compare Source

Minor Changes

v5.2.6

Compare Source

Patch Changes
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

microsoft/TypeScript (typescript)

v5.9.3: TypeScript 5.9.3

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

v5.9.2: TypeScript 5.9

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

v5.8.3: TypeScript 5.8.3

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement.

Downloads are available on:


Configuration

📅 Schedule: Branch creation - "before 12pm on Sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 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 renovate bot added the dependencies label Apr 6, 2025
@renovate renovate bot enabled auto-merge (squash) April 6, 2025 02:54
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Apr 6, 2025
@renovate renovate bot force-pushed the renovate/all-non-major branch 2 times, most recently from e86e7d1 to bafabf0 Compare April 13, 2025 05:32
@renovate renovate bot force-pushed the renovate/all-non-major branch 3 times, most recently from 58b7037 to e8972bb Compare April 20, 2025 06:04
@renovate renovate bot force-pushed the renovate/all-non-major branch 3 times, most recently from abe5a62 to 6e2f446 Compare April 27, 2025 05:49
@renovate renovate bot force-pushed the renovate/all-non-major branch 3 times, most recently from 247b2ec to 1c6bdaa Compare May 4, 2025 10:24
@renovate renovate bot force-pushed the renovate/all-non-major branch 4 times, most recently from e3664ea to c59596d Compare May 11, 2025 06:13
@renovate renovate bot force-pushed the renovate/all-non-major branch 3 times, most recently from c8a658c to 695a1f5 Compare May 25, 2025 06:13
@renovate renovate bot force-pushed the renovate/all-non-major branch 2 times, most recently from d807c8b to f8a55d3 Compare June 6, 2025 04:18
@renovate renovate bot force-pushed the renovate/all-non-major branch 3 times, most recently from e8e7293 to 4d7d660 Compare June 8, 2025 17:32
@renovate renovate bot force-pushed the renovate/all-non-major branch 3 times, most recently from ec95561 to 53d1ca8 Compare June 17, 2025 13:35
@renovate renovate bot force-pushed the renovate/all-non-major branch 4 times, most recently from d35e61b to 2b93595 Compare October 19, 2025 05:37
@renovate renovate bot force-pushed the renovate/all-non-major branch 2 times, most recently from f09f7a6 to 688612f Compare October 26, 2025 06:14
@renovate renovate bot force-pushed the renovate/all-non-major branch 4 times, most recently from 0faff7c to bf5552a Compare November 2, 2025 09:06
@renovate renovate bot force-pushed the renovate/all-non-major branch 3 times, most recently from ffa532c to f38b42c Compare November 16, 2025 04:58
@renovate renovate bot force-pushed the renovate/all-non-major branch 3 times, most recently from be72d63 to 2a250d1 Compare November 23, 2025 05:50
@renovate renovate bot force-pushed the renovate/all-non-major branch 8 times, most recently from 4d594fb to 14b6661 Compare November 30, 2025 05:24
@renovate renovate bot force-pushed the renovate/all-non-major branch 4 times, most recently from 6b298d6 to 04d1a78 Compare December 7, 2025 05:34
@renovate renovate bot force-pushed the renovate/all-non-major branch from 04d1a78 to fda3fc3 Compare December 7, 2025 09:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant