Skip to content

chore(deps): update all non-major dependencies#157

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

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

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 16, 2025

This PR contains the following updates:

Package Change Age Confidence
lint-staged ^16.2.6^16.3.3 age confidence
markdownlint ^0.39.0^0.40.0 age confidence
markdownlint-cli2 ^0.18.1^0.21.0 age confidence
prettier (source) ^3.6.2^3.8.1 age confidence
yarn (source) 4.11.04.12.0 age confidence

Release Notes

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.
DavidAnson/markdownlint (markdownlint)

v0.40.0

Compare Source

  • Improve MD011/MD013/MD051/MD060
  • Update dependencies
DavidAnson/markdownlint-cli2 (markdownlint-cli2)

v0.21.0

Compare Source

  • Refactor options/configuration file loading
  • Update dependencies

v0.20.0

Compare Source

  • Update dependencies

v0.19.1

Compare Source

  • Update --format to avoid trailing newline
  • Update dependencies

v0.19.0

Compare Source

  • Add --format parameter for editor integration
  • Update output formatters for severity warning
  • Explicitly version Docker containers for pre-commit
  • Update dependencies (including markdownlint)
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

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 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 changed the title chore(deps): update dependency markdownlint-cli2 to ^0.19.0 chore(deps): update all non-major dependencies Nov 19, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from fb57e6e to 7856b6e Compare November 23, 2025 13:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 772e9f5 to 64c6cf8 Compare December 3, 2025 05:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6547851 to 2e4db0c Compare December 7, 2025 09:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 39b432b to 68233d1 Compare January 21, 2026 20:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 68233d1 to 414783d Compare February 2, 2026 17:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 414783d to c13ef19 Compare February 16, 2026 01:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f91a9b1 to b71de50 Compare March 3, 2026 22:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b71de50 to 6702b8c Compare March 10, 2026 05:19
@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