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.0 age confidence
@commitlint/config-conventional (source) ^20.0.0^20.3.0 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.4 age confidence
discord.js (source) ^14.24.2^14.25.1 age confidence
prettier (source) ^3.6.2^3.7.4 age confidence
tsdown (source) ^0.16.6^0.18.4 age confidence
unplugin-replace ^0.6.2^0.6.3 age confidence
vite (source) ^7.2.4^7.3.0 age confidence
yarn (source) 4.10.34.12.0 age confidence

Release Notes

conventional-changelog/commitlint (@​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.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/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

rolldown/tsdown (tsdown)

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.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 from 95957dd to aeb39b7 Compare December 3, 2025 18:43
renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 3, 2025
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Dec 3, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from aeb39b7 to 0b8e706 Compare December 4, 2025 17:29
renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 4, 2025
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Dec 4, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from d40feee to 604c08f Compare December 12, 2025 04:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 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 2 times, most recently from 6a30fb9 to 9408445 Compare December 31, 2025 14:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9408445 to 5858a87 Compare January 1, 2026 13:51
@sonarqubecloud
Copy link

sonarqubecloud bot commented Jan 1, 2026

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