Skip to content

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

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

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

Conversation

@renovate

@renovate renovate Bot commented Jan 18, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@commitlint/cli (source) ^20.3.1^20.5.3 age confidence
@commitlint/config-conventional (source) ^20.3.1^20.5.3 age confidence
@favware/cliff-jumper ^6.0.0^6.1.0 age confidence
@types/lodash (source) ^4.17.23^4.17.24 age confidence
esbuild-plugins-node-modules-polyfill ^1.7.1^1.8.2 age confidence
eslint-plugin-prettier ^5.5.4^5.5.6 age confidence
lint-staged ^16.2.7^16.4.0 age confidence
lodash (source) ^4.17.21^4.18.1 age confidence
prettier (source) ^3.7.4^3.8.4 age confidence
vite-plugin-node-polyfills ^0.24.0^0.28.0 age confidence
yarn (source) 4.12.04.17.0 age confidence

Release Notes

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

v20.5.3

Compare Source

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

v20.5.2

Compare Source

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

v20.5.0

Compare Source

Bug Fixes

20.4.4 (2026-03-12)

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

20.4.3 (2026-03-03)

Bug Fixes

20.4.2 (2026-02-19)

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

20.4.1 (2026-02-02)

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

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

v20.5.3

Compare Source

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

v20.5.0

Compare Source

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

20.4.4 (2026-03-12)

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

20.4.3 (2026-03-03)

Bug Fixes

20.4.2 (2026-02-19)

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

20.4.1 (2026-02-02)

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

favware/cliff-jumper (@​favware/cliff-jumper)

v6.1.0

Compare Source

🐛 Bug Fixes

🚀 Features

  • Add github-base-url option to publish to GHES and GHEC (51cbf49)
imranbarbhuiya/esbuild-plugins-node-modules-polyfill (esbuild-plugins-node-modules-polyfill)

v1.8.2

Compare Source

🐛 Bug Fixes

  • Widen esbuild peer dep to allow 0.28.x (2e4636b)

v1.8.1

Compare Source

🐛 Bug Fixes

  • Remove husky as it slows down commit (996ace4)

v1.8.0

Compare Source

🚀 Features

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

v5.5.6

Compare Source

Patch Changes

v5.5.5

Compare Source

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

v16.4.0

Compare Source

Minor Changes

v16.3.4

Compare Source

Patch Changes

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

v4.18.1

Compare Source

Bugs

Fixes a ReferenceError issue in lodash lodash-es lodash-amd and lodash.template when using the template and fromPairs functions from the modular builds. See #​6167 (comment)

These defects were related to how lodash distributions are built from the main branch using https://github.com/lodash-archive/lodash-cli. When internal dependencies change inside lodash functions, equivalent updates need to be made to a mapping in the lodash-cli. (hey, it was ahead of its time once upon a time!). We know this, but we missed it in the last release. It's the kind of thing that passes in CI, but fails bc the build is not the same thing you tested.

There is no diff on main for this, but you can see the diffs for each of the npm packages on their respective branches:

v4.18.0

Compare Source

v4.18.0

Full Changelog: lodash/lodash@4.17.23...4.18.0

Security

_.unset / _.omit: Fixed prototype pollution via constructor/prototype path traversal (GHSA-f23m-r3pf-42rh, fe8d32e). Previously, array-wrapped path segments and primitive roots could bypass the existing guards, allowing deletion of properties from built-in prototypes. Now constructor and prototype are blocked unconditionally as non-terminal path keys, matching baseSet. Calls that previously returned true and deleted the property now return false and leave the target untouched.

_.template: Fixed code injection via imports keys (GHSA-r5fr-rjxr-66jc, CVE-2026-4800, 879aaa9). Fixes an incomplete patch for CVE-2021-23337. The variable option was validated against reForbiddenIdentifierChars but importsKeys was left unguarded, allowing code injection via the same Function() constructor sink. imports keys containing forbidden identifier characters now throw "Invalid imports option passed into _.template".

Docs
  • Add security notice for _.template in threat model and API docs (#​6099)
  • Document lower > upper behavior in _.random (#​6115)
  • Fix quotes in _.compact jsdoc (#​6090)
lodash.* modular packages

Diff

We have also regenerated and published a select number of the lodash.* modular packages.

These modular packages had fallen out of sync significantly from the minor/patch updates to lodash. Specifically, we have brought the following packages up to parity w/ the latest lodash release because they have had CVEs on them in the past:

v4.17.23

Compare Source

prettier/prettier (prettier)

v3.8.4

Compare Source

diff

Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#​17746 by @​byplayer)

Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

<!-- Input -->
- a

  - b

- c

  - d

<!-- Prettier 3.8.3 -->
- a
  - b
- c
  - d

<!-- Prettier 3.8.4 -->
- a

  - b

- c

  - d

v3.8.3

Compare Source

diff

SCSS: Prevent trailing comma in if() function (#​18471 by @​kovsu)
// Input
$value: if(sass(false): 1; else: -1);

// Prettier 3.8.2
$value: if(
  sass(false): 1; else: -1,
);

// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);

v3.8.2

Compare Source

diff

Angular: Support Angular v21.2 (#​18722, #​19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @&#8203; character, you should use the "&#&#8203;64;" HTML entity instead. (3:3)

<!-- Prettier 3.8.2 -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

arrow function and instanceof expressions.

<!-- Input -->
@&#8203;let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.1 -->
@&#8203;let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.2 -->
@&#8203;let fn = (a) => (a ? 1 : 2);

{{ fn(a instanceof b) }}

v3.8.1

Compare Source

diff

Include available printers in plugin type declarations (#​18706 by @​porada)
// Input
import * as prettierPluginEstree from "prettier/plugins/estree";

// Prettier 3.8.0
// Property 'printers' does not exist on type 'typeof import("prettier/plugins/estree")'. ts(2339)
prettierPluginEstree.printers.estree; //=> any

// Prettier 3.8.1
prettierPluginEstree.printers.estree; //=> Printer
prettierPluginEstree.printers["estree-json"]; //=> Printer

v3.8.0

Compare Source

diff

🔗 Release Notes

davidmyersdev/vite-plugin-node-polyfills (vite-plugin-node-polyfills)

v0.28.0

Compare Source

  • Normalize trailing slashes (fix for Vite 8)
  • Run unit tests against Vite 8 & Vitest 4 in CI
  • Update @playwright/test

v0.27.0

Compare Source

  • Use inject plugin instead of esbuild.banner (thanks to @​sapphi-red)

v0.26.0

Compare Source

v0.25.0

Compare Source

yarnpkg/berry (yarn)

v4.17.0: v4.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.16.0...@​yarnpkg/cli/4.17.0

v4.16.0: v4.16.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.15.0...@​yarnpkg/cli/4.16.0

v4.15.0: v4.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.14.1...@​yarnpkg/cli/4.15.0

v4.14.1: v4.14.1

Compare Source

What's Changed

  • fix: Widen EBADF fstat version gate to include Node 24.15+ by @​rfoel in #​7104

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.14.0...@​yarnpkg/cli/4.14.1

v4.14.0: v4.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.13.0...@​yarnpkg/cli/4.14.0

v4.13.0: v4.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.12.0...@​yarnpkg/cli/4.13.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 12pm on Sunday"
  • 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 requested a review from favna as a code owner January 18, 2026 01:42
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 57073d6 to 74a775f Compare January 21, 2026 17:53
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Jan 21, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f343d87 to 511bb7f Compare February 2, 2026 14:01
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c76cb15 to 0b6cd75 Compare February 19, 2026 12:28
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 5e60fd8 to 6954826 Compare March 1, 2026 21:08
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 151ffba to b25e675 Compare March 10, 2026 06:46
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from e3a4052 to 873275a Compare March 15, 2026 17:51
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 873275a to d00a9ae Compare March 19, 2026 17:54
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from dbb33be to 2343ba8 Compare March 31, 2026 21:30
@renovate renovate Bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Mar 31, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 2343ba8 to 546629a Compare April 1, 2026 13:43
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Apr 1, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f94f150 to bc2aa81 Compare April 8, 2026 20:45
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d580dda to d0da1a4 Compare April 13, 2026 17:34
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 9f1efb1 to 9444407 Compare April 17, 2026 09:03
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 32ca172 to 7cf896b Compare April 30, 2026 10:00
@sonarqubecloud

Copy link
Copy Markdown

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 7cf896b to 75a4255 Compare May 12, 2026 09:14
@sonarqubecloud

Copy link
Copy Markdown

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 35435b1 to 6e8f54f Compare May 20, 2026 02:29
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 762532d to 8523a97 Compare June 2, 2026 11:46
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 350fa2e to ce83501 Compare June 11, 2026 19:55
@sonarqubecloud

Copy link
Copy Markdown

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from ce83501 to 4090bd4 Compare June 15, 2026 09:08
@sonarqubecloud

Copy link
Copy Markdown

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 4090bd4 to 82b6c1d Compare June 24, 2026 08:58
@sonarqubecloud

Copy link
Copy Markdown

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