Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 9, 2025

This PR contains the following updates:

Package Change Age Confidence
@commitlint/cli (source) ^20.1.0^20.3.1 age confidence
@commitlint/config-conventional (source) ^20.0.0^20.3.1 age confidence
@discordjs/builders (source) ^1.13.0^1.13.1 age confidence
@sapphire/ts-config (source) ^5.0.2^5.0.3 age confidence
@types/node (source) ^24.10.1^24.10.9 age confidence
discord.js (source) ^14.24.2^14.25.1 age confidence
eslint-plugin-prettier ^5.5.4^5.5.5 age confidence
prettier (source) ^3.6.2^3.8.1 age confidence
tsdown (source) ^0.16.6^0.20.1 age confidence
unplugin-replace ^0.6.2^0.6.3 age confidence
vite (source) ^7.2.4^7.3.1 age confidence
yarn (source) 4.10.34.12.0 age confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v20.3.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v20.3.0

Compare Source

Note: Version bump only for package @​commitlint/cli

v20.2.0

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v20.3.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v20.3.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v20.2.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

discordjs/discord.js (@​discordjs/builders)

v1.13.1

Compare Source

Bug Fixes
Documentation
  • Container: Update example usage (e777938)
sapphiredev/utilities (@​sapphire/ts-config)

v5.0.3

Compare Source

Changelog

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

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

v5.5.5

Compare Source

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

rolldown/tsdown (tsdown)

v0.20.1

Compare Source

   🚀 Features
    View changes on GitHub

v0.20.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.19.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.18.4

Compare Source

   🚀 Features
    View changes on GitHub

v0.18.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.18.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.18.1

Compare Source

   🚀 Features
export default defineConfig({
  entry: {
    '*': './src/*.ts',
    'data-loaders': './src/data-loaders/entries/index.ts',
    'data-loaders/*': './src/data-loaders/entries/!(index).ts',
    'volar/*': './src/volar/entries/*.ts',
  },
}
   🐞 Bug Fixes
    View changes on GitHub

v0.18.0

Compare Source

   🚨 Breaking Changes

v0.17.4

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.17.3

Compare Source

   🚀 Features
  • copy: Support glob in copy  -  by @​kricsleo and @​sxzz in #​637 (c1fd4)
    • This may be a breaking change, as the behavior has changed again in v0.17.4. Please upgrade to v0.17.4 and verify the issue.
   🐞 Bug Fixes
    View changes on GitHub

v0.17.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.17.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.17.0

Compare Source

   🚨 Breaking Changes

Notable features: https://bsky.app/profile/sxzz.dev/post/3m6xi7e7d5k2b

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.16.8

Compare Source

   🚀 Features
Deprecation
  • Deprecate attw.profile = 'esmOnly', use esm-only instead.
    View changes on GitHub

v0.16.7

Compare Source

   🚀 Features
    View changes on GitHub
unplugin/unplugin-replace (unplugin-replace)

v0.6.3

Compare Source

   🐞 Bug Fixes
  • deps: Update all non-major dependencies  -  in #​67 (ac83c)
   🏎 Performance
    View changes on GitHub
vitejs/vite (vite)

v7.3.1

Compare Source

Please refer to CHANGELOG.md for details.

v7.3.0

Compare Source

Please refer to CHANGELOG.md for details.

v7.2.7

Compare Source

v7.2.6

Compare Source

7.2.6 (2025-12-01)

yarnpkg/berry (yarn)

v4.12.0

Compare Source

v4.11.0

Compare Source


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 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 requested a review from favna as a code owner November 9, 2025 02:48
@renovate renovate bot added the dependencies label Nov 9, 2025
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 9, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 9, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2204195 to fd2a840 Compare November 11, 2025 23:48
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 11, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 11, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fd2a840 to 502d5fb Compare November 14, 2025 22:43
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 14, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 14, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 502d5fb to bb31c98 Compare November 18, 2025 09:57
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 18, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 18, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bb31c98 to 9b4d05b Compare November 19, 2025 17:37
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 19, 2025
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 19, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9b4d05b to 1799267 Compare November 20, 2025 09:45
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 20, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 20, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 97d1e64 to f389313 Compare December 17, 2025 21:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from fca6e04 to 53ca508 Compare December 24, 2025 17:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 9408445 to 5858a87 Compare January 1, 2026 13:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 9b51541 to fe7ec82 Compare January 13, 2026 18:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 41c5dd4 to 56875c4 Compare January 15, 2026 22:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 297b2b0 to 46afd37 Compare January 22, 2026 17:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 46afd37 to c3bbf66 Compare January 22, 2026 21:47
@sonarqubecloud
Copy link

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.

0 participants