Skip to content

fix(deps): update all non-major dependencies#692

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

fix(deps): update all non-major dependencies#692
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 23, 2025

This PR contains the following updates:

Package Change Age Confidence
@actions/glob (source) ^0.5.0^0.6.1 age confidence
@commitlint/cli (source) ^20.1.0^20.4.4 age confidence
@commitlint/config-conventional (source) ^20.0.0^20.4.4 age confidence
@sapphire/ts-config (source) ^5.0.1^5.0.3 age confidence
@types/node (source) ^24.10.1^24.12.0 age confidence
discord.js (source) ^14.24.2^14.25.1 age confidence
eslint-plugin-prettier ^5.5.4^5.5.5 age confidence
lint-staged ^16.2.6^16.3.3 age confidence
nan ^2.23.1^2.25.0 age confidence
prettier (source) ^3.6.2^3.8.1 age confidence
vite (source) ^7.2.2^7.3.1 age confidence
yarn (source) 4.11.04.12.0 age confidence

Release Notes

actions/toolkit (@​actions/glob)

v0.6.1

  • Fix a bad import for minimatch

v0.6.0

  • Breaking change: Package is now ESM-only
    • CommonJS consumers must use dynamic import() instead of require()

v0.5.1

  • Bump @actions/core to 2.0.3
conventional-changelog/commitlint (@​commitlint/cli)

v20.4.4

Compare Source

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

v20.4.3

Compare Source

Bug Fixes

v20.4.2

Compare Source

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

v20.4.1

Compare Source

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

v20.4.0

Compare Source

Features

20.3.1 (2026-01-08)

Note: Version bump only for package @​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.4.4

Compare Source

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

v20.4.3

Compare Source

Bug Fixes

v20.4.2

Compare Source

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

v20.4.1

Compare Source

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

v20.4.0

Compare Source

Features

20.3.1 (2026-01-08)

Note: Version bump only for package @​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

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)
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

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

v5.5.5

Compare Source

Patch Changes
lint-staged/lint-staged (lint-staged)

v16.3.3

Compare Source

Patch Changes
  • #​1740 0109e8d Thanks @​iiroj! - Make sure Git's warning about CRLF line-endings doesn't interfere with creating initial backup stash.

v16.3.2

Compare Source

Patch Changes
  • #​1735 2adaf6c Thanks @​iiroj! - Hide the extra cmd window on Windows by spawning tasks without the detached option.

v16.3.1

Compare Source

Patch Changes
  • #​1729 cd5d762 Thanks @​iiroj! - Remove nano-spawn as a dependency from package.json as it was replaced with tinyexec and is no longer used.

v16.3.0

Compare Source

Minor Changes
  • #​1698 feda37a Thanks @​iiroj! - Run external processes with tinyexec instead of nano-spawn. nano-spawn replaced execa in lint-staged version 16 to limit the amount of npm dependencies required, but caused some unknown issues related to spawning tasks. Let's hope tinyexec improves the situation.

  • #​1699 1346d16 Thanks @​iiroj! - Remove pidtree as a dependency. When a task fails, its sub-processes are killed more efficiently via the process group on Unix systems, and the taskkill command on Windows.

Patch Changes
  • #​1726 87467aa Thanks @​iiroj! - Incorrect brace expansions like *.{js} (nothing to expand) are detected exhaustively, instead of just a single pass.

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.
nodejs/nan (nan)

v2.25.0

Compare Source

  • Feature: Updating SetAccessor method to support v8 14.4 (#​1007) 333d989

v2.24.0

Compare Source

  • Feature: Adding new Nan::TryEncode() wrapper for node::TryEncode() (#​1005) fd5ff3f
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

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)

v7.2.4

Compare Source

Bug Fixes

v7.2.3

Compare Source

Bug Fixes
Performance Improvements
Miscellaneous Chores
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: 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 23, 2025 00:30
@renovate renovate bot enabled auto-merge (squash) November 23, 2025 00:30
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 23, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 23, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c991c61 to ba76a81 Compare November 23, 2025 13:50
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 23, 2025
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Nov 23, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ba76a81 to f06b3e5 Compare March 1, 2026 08:42
renovate-approve[bot]
renovate-approve bot previously approved these changes Mar 1, 2026
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Mar 1, 2026
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Mar 1, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from bb954d1 to 4849792 Compare March 6, 2026 10:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4849792 to 6fbd40a Compare March 10, 2026 05:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6fbd40a to bb26dae Compare March 12, 2026 12:37
@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