Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 16, 2025

This PR contains the following updates:

Package Change Age Confidence
@discordjs/builders (source) ^1.13.0 -> ^1.13.1 age confidence
@discordjs/formatters (source) ^0.6.1 -> ^0.6.2 age confidence
@discordjs/util (source) ^1.1.1 -> ^1.2.0 age confidence
@sapphire/ts-config (source) ^5.0.1 -> ^5.0.3 age confidence
@swc/core (source) ^1.15.1 -> ^1.15.3 age confidence
@vitest/coverage-v8 (source) ^4.0.8 -> ^4.0.15 age confidence
i18next (source) ^25.6.1 -> ^25.7.1 age confidence
lint-staged ^16.2.6 -> ^16.2.7 age confidence
prettier (source) ^3.6.2 -> ^3.7.4 age confidence
tsup (source) ^8.5.0 -> ^8.5.1 age confidence
turbo (source) ^2.6.0 -> ^2.6.2 age confidence
vitest (source) ^4.0.8 -> ^4.0.15 age confidence
yarn (source) 4.11.0 -> 4.12.0 age confidence

Release Notes

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.

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)
swc-project/swc (@​swc/core)

v1.15.3

Compare Source

Bug Fixes
  • (es/codegen) Restore missing top-level comments (#​11302) (0998c93)

  • (es/codegen) Emit comments of all nodes (#​11314) (387ee0f)

  • (es/minifier) Prevent compress.comparisons from transforming expressions with side effects (#​11256) (58a9d81)

  • (es/minifier) Remove unused arrow functions in dead code elimination (#​11319) (88c6ac7)

  • (es/parser) Make the span of Program start at input start (#​11199) (b56e008)

  • (es/plugin) Use #[cfg] to avoid compilation error (#​11316) (f615cdb)

  • (es/quote) Replace usage of swc_atoms with swc_core::atoms (#​11299) (c1e32fa)

Miscellaneous Tasks
Performance
Refactor

v1.15.2

Compare Source

Bug Fixes
Features
Performance
  • (es/parser) Inline skip_space (afb824a)

  • (es/parser) Eliminate the outer loop of skip_block_comment (#​11261) (e41c0ac)

  • (es/plugin) Use shared tokio runtime to avoid creation overhead (#​11267) (707026b)

vitest-dev/vitest (@​vitest/coverage-v8)

v4.0.15

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub

v4.0.14

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v4.0.13

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v4.0.12

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.0.11

Compare Source

   🚀 Experimental Features
   🏎 Performance
    View changes on GitHub

v4.0.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.0.9

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub
i18next/i18next (i18next)

v25.7.1

Compare Source

  • TS: remove wrong signature 2372.

v25.7.0

Compare Source

  • Enhance cloneInstance to create a new interpolator if interpolation options are passed in. This will address 2371.

v25.6.3

Compare Source

  • chore: dependency updates 2368

v25.6.2

Compare Source

  • types: export InterpolationMap
lint-staged/lint-staged (lint-staged)

v16.2.7

Compare Source

Patch Changes
  • #​1711 ef74c8d Thanks @​iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.
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

egoist/tsup (tsup)

v8.5.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
vercel/turborepo (turbo)

v2.6.2

Compare Source

v2.6.1

Compare Source

yarnpkg/berry (yarn)

v4.12.0

Compare Source


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 requested a review from favna as a code owner November 16, 2025 00:41
@renovate renovate bot enabled auto-merge (squash) November 16, 2025 00:41
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 16, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 16, 2025
@codecov
Copy link

codecov bot commented Nov 16, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 51.00%. Comparing base (03b76f1) to head (0c46eff).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #446   +/-   ##
=======================================
  Coverage   51.00%   51.00%           
=======================================
  Files          51       51           
  Lines         896      896           
  Branches      200      200           
=======================================
  Hits          457      457           
  Misses        435      435           
  Partials        4        4           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 157ac43 to 31fae6b Compare November 18, 2025 03:58
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 18, 2025
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 18, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 31fae6b to 61585a2 Compare November 18, 2025 12:44
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 18, 2025
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies 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 61585a2 to f82d100 Compare November 19, 2025 08:51
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 f82d100 to 52bb8dd Compare November 19, 2025 21:30
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 52bb8dd to f15fc88 Compare November 20, 2025 13:54
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 30, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 30, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 66b808f to 1afe844 Compare December 1, 2025 15:46
renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 1, 2025
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Dec 1, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1afe844 to eb1a1fe Compare December 2, 2025 00:42
renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 2, 2025
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Dec 2, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from eb1a1fe to a67cea4 Compare December 2, 2025 17:49
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Dec 2, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 2, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a67cea4 to af6f8a4 Compare December 3, 2025 05:50
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Dec 3, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 3, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from af6f8a4 to 0c46eff Compare December 3, 2025 20:50
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