Skip to content

chore(deps): update all dependencies j:cdx-227#374

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

chore(deps): update all dependencies j:cdx-227#374
renovate-coveo[bot] wants to merge 1 commit intomainfrom
renovate/all

Conversation

@renovate-coveo
Copy link
Contributor

@renovate-coveo renovate-coveo bot commented Dec 8, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
@types/node (source) 20.19.2520.19.33 age adoption passing confidence devDependencies patch 20.19.35 (+1)
nodemon (source) 3.1.113.1.14 age adoption passing confidence devDependencies patch
prettier (source) 3.6.23.8.1 age adoption passing confidence devDependencies minor
step-security/harden-runner a90bcbc action pinDigest
ts-jest (source) 29.4.529.4.6 age adoption passing confidence devDependencies patch
typedoc (source) 0.28.140.28.17 age adoption passing confidence devDependencies patch

[skip release]


Release Notes

remy/nodemon (nodemon)

v3.1.14

Compare Source

Bug Fixes

v3.1.13

Compare Source

Bug Fixes

v3.1.12

Compare Source

Bug Fixes
prettier/prettier (prettier)

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

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.0 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

kulshekhar/ts-jest (ts-jest)

v29.4.6

Compare Source

Bug Fixes
TypeStrong/TypeDoc (typedoc)

v0.28.17

Compare Source

Bug Fixes
  • Improved handling of comments for type aliases which have been declaration merged with functions, #​3064.
  • Fixed anchor link generation to members named $, #​3065.
  • Corrected typing of the plugin option to permit functions, #​3066.
  • Warnings about unused @param tags will now be properly suppressed when they come from declaration files and
    the suppressCommentWarningsInDeclarationFiles option is enabled, #​3070.
  • Fixed conversion of types referencing type parameters on functions, #​3071.
Thanks!

v0.28.16

Compare Source

Bug Fixes
  • Fixed an issue causing TypeDoc to fail to generate documentation when implementing interfaces, #​3052.
  • Fixed an issue preventing automatic entry point discovery on Windows, #​3057.
  • Improved vertical positioning of text icons, #​3056.
  • TypeDoc no longer includes source location information for type literal reflections. This could sometimes
    cause TypeDoc to infer the wrong path when resolving base paths for display.
  • Adjusted markdown rendering to allow markdownItLoader to override more rendering #​3055.
Features
  • Added support for regions for @include in .tsx, .cjs, and .mjs file references #​3048.
  • Comments for TS-in-JS @typedef tags may now specify modifier tags with the inline tag syntax {@&#8203;mod}.
    This makes it possible to add modifier tags to these members, which previously was not possible as
    TypeScript's parsing stops for these members at the next non-braced tag, #​2916 and #​3050.
  • A typedoc-config.schema.json is now included in the root of the package with a JSON schema for TypeDoc's
    configuration file. The schema for the latest version is also published at https://typedoc.org/schema.json
    and will automatically be picked up when writing typedoc.json files if you are using VSCode, #​3054.
Thanks!

v0.28.15

Compare Source

Features
  • The gitRevision option now accepts the special value {branch}, which indicates source links should use
    the current git branch for links, #​3041.
  • Introduced validation.invalidPath for suppressing warnings caused by referencing relative paths which
    do not exist when building the documentation, #​3033.
  • API: Introduced Logger.validationWarning for validation which occurs during conversion rather than
    during TypeDoc's normal validation step, #​3033.

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone America/Toronto, Automerge - "after 9:00am and before 12:00pm on tuesday, wednesday, thursday" in timezone America/Toronto.

🚦 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 has been generated by Renovate Bot.

@renovate-coveo renovate-coveo bot requested a review from a team as a code owner December 8, 2025 05:17
@renovate-coveo renovate-coveo bot added the bot label Dec 8, 2025
@renovate-coveo renovate-coveo bot force-pushed the renovate/all branch 4 times, most recently from 182de73 to 20af3c2 Compare December 10, 2025 04:55
@renovate-coveo renovate-coveo bot force-pushed the renovate/all branch 2 times, most recently from ae2dd2d to 64f3a76 Compare December 22, 2025 00:32
@renovate-coveo renovate-coveo bot force-pushed the renovate/all branch 4 times, most recently from 2c8f87c to fb55efc Compare January 22, 2026 18:05
@renovate-coveo renovate-coveo bot force-pushed the renovate/all branch 2 times, most recently from 328b37f to 89d31b7 Compare January 28, 2026 17:53
@renovate-coveo renovate-coveo bot force-pushed the renovate/all branch 3 times, most recently from 6853bdd to 742e40e Compare February 12, 2026 15:02
@renovate-coveo renovate-coveo bot force-pushed the renovate/all branch 2 times, most recently from 957404e to dacb39c Compare February 20, 2026 18:34
@renovate-coveo renovate-coveo bot force-pushed the renovate/all branch 2 times, most recently from bd33ece to 4690597 Compare February 26, 2026 22:53
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