Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 9, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@sapphire/framework (source) ^5.3.7^5.5.0 age confidence dependencies minor
@sapphire/ts-config (source) ^5.0.1^5.0.3 age confidence devDependencies patch
@types/node (source) ^24.10.1^24.10.9 age confidence devDependencies patch
bufferutil ^4.0.9^4.1.0 age confidence dependencies minor
discord.js (source) ^14.24.2^14.25.1 age confidence dependencies minor
docker/setup-buildx-action v3.11.1v3.12.0 age confidence action minor
eslint-plugin-prettier ^5.5.4^5.5.5 age confidence devDependencies patch
marked-smartypants ^1.1.10^1.1.11 age confidence dependencies patch
marked-xhtml ^1.0.13^1.0.14 age confidence dependencies patch
node (source) 24.11.024.13.0 age confidence volta minor
prettier (source) ^3.6.2^3.8.1 age confidence devDependencies minor
rimraf ^6.1.0^6.1.2 age confidence devDependencies patch
tsup (source) ^8.5.0^8.5.1 age confidence devDependencies patch
utf-8-validate ^6.0.5^6.0.6 age confidence dependencies patch
ws ^8.18.3^8.19.0 age confidence dependencies minor
yarn (source) 4.10.34.12.0 age confidence packageManager minor

Release Notes

sapphiredev/framework (@​sapphire/framework)

v5.5.0

Compare Source

🚀 Features

v5.4.0

Compare Source

🐛 Bug Fixes

🚀 Features

  • Update sapphire dependencies (d3aad6a)
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)
websockets/bufferutil (bufferutil)

v4.1.0

Compare Source

discordjs/discord.js (discord.js)

v14.25.1

Compare Source

Bug Fixes
  • GuildEmojiManager: Allow CreateGuildExpressions for retrieving author data (#​11288) (0d64ea0)

v14.25.0

Compare Source

Bug Fixes

Documentation

  • MessageManager: Update fetchPins() wording (492039c)

Features

docker/setup-buildx-action (docker/setup-buildx-action)

v3.12.0

Compare Source

Full Changelog: docker/setup-buildx-action@v3.11.1...v3.12.0

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.5

Compare Source

Patch Changes
markedjs/marked-smartypants (marked-smartypants)

v1.1.11

Compare Source

Bug Fixes
markedjs/marked-xhtml (marked-xhtml)

v1.0.14

Compare Source

Bug Fixes
nodejs/node (node)

v24.13.0: 2026-01-13, Version 24.13.0 'Krypton' (LTS), @​marco-ippolito

Compare Source

This is a security release.

Notable Changes

lib:

Commits

v24.12.0: 2025-12-10, Version 24.12.0 'Krypton' (LTS), @​targos

Compare Source

Notable Changes
  • [1a00b5f68a] - (SEMVER-MINOR) http: add optimizeEmptyRequests server option (Rafael Gonzaga) #​59778
  • [ff5754077d] - (SEMVER-MINOR) lib: add options to util.deprecate (Rafael Gonzaga) #​59982
  • [8987159234] - (SEMVER-MINOR) module: mark type stripping as stable (Marco Ippolito) #​60600
  • [92c484ebf4] - (SEMVER-MINOR) node-api: add napi_create_object_with_properties (Miguel Marcondes Filho) #​59953
  • [b11bc5984e] - (SEMVER-MINOR) sqlite: allow setting defensive flag (Bart Louwers) #​60217
  • [e7da5b4b7d] - (SEMVER-MINOR) src: add watch config namespace (Marco Ippolito) #​60178
  • [a7f7d10c06] - (SEMVER-MINOR) src: add an option to make compile cache portable (Aditi) #​58797
  • [92ea669240] - (SEMVER-MINOR) src,permission: add --allow-inspector ability (Rafael Gonzaga) #​59711
  • [05d7509bd2] - (SEMVER-MINOR) v8: add cpu profile (theanarkh) #​59807
Commits

v24.11.1

Compare Source

prettier/prettier (prettier)

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.

v3.7.0

Compare Source

diff

🔗 Release Notes

isaacs/rimraf (rimraf)

v6.1.2

Compare Source

v6.1.1

Compare Source

egoist/tsup (tsup)

v8.5.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
websockets/utf-8-vali

Configuration

📅 Schedule: Branch creation - "before 12pm on Sunday" (UTC), 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.

👻 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 Nov 9, 2025
@renovate renovate bot enabled auto-merge (squash) November 9, 2025 02:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 26df40a to a75828f Compare November 13, 2025 03:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 7bcb16e to dfeca30 Compare November 23, 2025 13:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 027a86a to a39bd9b Compare December 3, 2025 10:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 94aa4d6 to 5c17cc2 Compare December 14, 2025 02:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f346f85 to 0b39797 Compare December 24, 2025 17:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 99dd6c0 to f9b018d Compare January 10, 2026 01:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from eb96ff1 to 2b00c60 Compare January 15, 2026 20:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2b00c60 to 6f72cc2 Compare January 21, 2026 21:14
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