Skip to content

Conversation

@renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Apr 1, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@sigstore/cli (source) 0.8.1 -> 0.9.0 age confidence
@types/node (source) 20.17.19 -> 20.19.25 age confidence
@vercel/ncc 0.38.3 -> 0.38.4 age confidence
eslint-plugin-prettier 5.2.3 -> 5.5.4 age confidence
markdownlint-cli 0.44.0 -> 0.46.0 age confidence
prettier (source) 3.5.1 -> 3.7.3 age confidence
renovate (source) 39.174.3 -> 39.264.1 age confidence
ts-jest (source) 29.2.5 -> 29.4.5 age confidence
typescript (source) 5.7.3 -> 5.9.3 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

sigstore/sigstore-js (@​sigstore/cli)

v0.9.0

Compare Source

Minor Changes
  • 383e200: Drop support for node 18
  • 383e200: Bump make-fetch-happen from 14.x to 15.x
Patch Changes

v0.8.2

Compare Source

Patch Changes
vercel/ncc (@​vercel/ncc)

v0.38.4

Compare Source

Bug Fixes
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.4

Compare Source

Patch Changes

v5.5.3

Compare Source

republish the latest version

Full Changelog: prettier/eslint-plugin-prettier@v5.5.2...v5.5.3

v5.5.2

Compare Source

republish the latest version

Full Changelog: prettier/eslint-plugin-prettier@v5.5.1...v5.5.2

v5.5.1

Compare Source

Patch Changes

v5.5.0

Compare Source

Minor Changes

v5.4.1

Compare Source

Patch Changes
  • #​740 c21521f Thanks @​JounQin! - fix(deps): bump synckit to v0.11.7 to fix potential TypeError: Cannot read properties of undefined (reading 'message') error

v5.4.0

Compare Source

Minor Changes

v5.3.1

Compare Source

Patch Changes

v5.3.0

Compare Source

Minor Changes

v5.2.6

Compare Source

Patch Changes

v5.2.5

Compare Source

Patch Changes

v5.2.4

Compare Source

Patch Changes
igorshubovych/markdownlint-cli (markdownlint-cli)

v0.46.0

Compare Source

  • Replace glob dependency with tinyglobby (smaller and fewer dependencies)
  • Update markdownlint dependency to 0.39.0
    • Add MD060/table-column-style
    • Improve MD001/MD007/MD009/MD010/MD029/MD033/MD037/MD059
  • Update all dependencies via Dependabot

v0.45.0

Compare Source

  • Update markdownlint dependency to 0.38.0
    • Add MD059/descriptive-link-text
    • Improve MD025/MD027/MD036/MD038/MD041/MD043/MD045/MD051/MD052
    • Remove support for end-of-life Node version 18
  • Update all dependencies via Dependabot
prettier/prettier (prettier)

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

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.

v3.6.0

Compare Source

diff

🔗 Release Notes

v3.5.3

Compare Source

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#​17196 by @​fisker)
// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);

// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;

// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

renovatebot/renovate (renovate)

v39.264.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.64.1 (main) (#​35632) (8e3204e)
Miscellaneous Chores

v39.263.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.63.1 (main) (#​35625) (41c043c)
Miscellaneous Chores

v39.263.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.63.0 (main) (#​35618) (3d7cade)
Miscellaneous Chores

v39.262.1

Compare Source

Bug Fixes
Documentation
Miscellaneous Chores

v39.262.0

Compare Source

Features
  • replacements: add replacements:gradle-wrapper-validation-action (#​31645) (4602243)
Bug Fixes
  • Do not update conflicting Onboarding MR comment in dry run (#​35558) (ae94ac4)
Documentation
Miscellaneous Chores
Code Refactoring
  • manager: Prepare CNB support for Spring Boot Maven plugin (#​35492) (f31fe35)

v39.261.4

Compare Source

Bug Fixes

v39.261.3

Compare Source

Bug Fixes

v39.261.2

Compare Source

Bug Fixes
Miscellaneous Chores

v39.261.1

Compare Source

Bug Fixes

v39.261.0

Compare Source

Features

v39.260.0

Compare Source

Features
Documentation
Miscellaneous Chores
  • deps: update dependency eslint-import-resolver-typescript to v4.3.3 (main) (#​35575) (84f2b3e)

v39.259.0

Compare Source

Features

v39.258.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.62.2 (main) (#​35571) (e70c2e6)

v39.258.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.8.17 (main) (#​35568) (bea97cc)
Miscellaneous Chores
  • deps: update containerbase/internal-tools action to v3.10.26 (main) (#​35566) (df5fa9a)
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.8.17 (main) (#​35567) (ab62e42)

v39.258.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.62.1 (main) (#​35562) (3c9ad29)
Miscellaneous Chores

v39.258.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.62.0 (main) (#​35552) (d35ba2d)
Miscellaneous Chores

v39.257.8

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.61.2 (main) (#​35531) (974fcd4)

v39.257.7

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.8.16 (main) (#​35528) (684c6f2)

v39.257.6

Compare Source

Documentation
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.8.16 (main) (#​35526) (6a00ead)
Build System

v39.257.5

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.61.1 (main) (#​35518) (0fce8a4)

v39.257.4

Compare Source

Bug Fixes
Miscellaneous Chores

v39.257.3

Compare Source

Build System

v39.257.2

Compare Source

Bug Fixes
  • manager/gomod: use regex to remove version suffix from name (#​35508) (5224255)
Documentation

v39.257.1

Compare Source

Bug Fixes

v39.257.0

Compare Source

Features
  • gomod: Improve distinction between go version and go toolchain updates. (#​35401) (a24d3d1)
Miscellaneous Chores
  • deps: update github/codeql-action action to v3.28.16 (main) (#​35504) (e55d691)

v39.256.1

Compare Source

Bug Fixes
  • manager): Revert "feat(manager: add renovate config presets manager" (#​35501) (5742675)

v39.256.0

Compare Source

Features
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.61.0 (main) (#​35502) (7d03456)

v39.255.0

Compare Source

Features
Miscellaneous Chores

v39.254.3

Compare Source

Bug Fixes
  • set branch.skipInstalls to false if any upgrade is false (#​35138) (99bd69c)
Miscellaneous Chores
Code Refactoring
Build System

v39.254.2

Compare Source

Miscellaneous Chores
Code Refactoring
Build System

v39.254.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.6 (main) (#​35476) (5fb89cd)

v39.254.0

Compare Source

Features
Bug Fixes

v39.253.5

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.5 (main) (#​35472) (da5e355)

v39.253.4

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.4 (main) (#​35471) (5fe91f6)

v39.253.3

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.3 (main) (#​35470) (1d28a69)
Miscellaneous Chores

v39.253.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.2 (main) (#​35462) (472d0ee)
Build System

v39.253.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.8.15 (main) (#​35458) (8f222df)
Miscellaneous Chores
  • deps: update ghcr.io/containerbase/devcontainer docker tag to v13.8.15 (main) (#​35457) (e62ab02)

v39.253.0

Compare Source

Features
Documentation
Miscellaneous Chores

v39.252.0

Compare Source

Features

v39.251.3

Compare Source

Bug Fixes

v39.251.2

Compare Source

Bug Fixes
  • deps: update ghcr.io/renovatebot/base-image docker tag to v9.60.1 (main) (#​35450) (25faac7)

v39.251.1

Compare Source

Bug Fixes
  • deps: update ghcr.io/containerbase/sidecar docker tag to v13.8.14 (main) (#​35448) (595caf4)
Documentation
Miscellaneous Chores

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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-bot renovate-bot requested review from a team as code owners April 1, 2025 03:15
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 18 times, most recently from d9a7ced to 20e2c36 Compare April 7, 2025 22:31
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 10 times, most recently from 8f8614b to d88f371 Compare April 14, 2025 18:40
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 3 times, most recently from 7312601 to 80e71d5 Compare August 5, 2025 01:28
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 2 times, most recently from 19f7f36 to 6996c4f Compare August 9, 2025 01:43
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 5 times, most recently from 1789699 to d8b79dc Compare September 20, 2025 01:55
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 2 times, most recently from 17dcd29 to 7e062bb Compare October 1, 2025 02:25
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 3 times, most recently from 505eea3 to 3738317 Compare October 11, 2025 16:58
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 2 times, most recently from 09ec6c0 to f0b8f40 Compare October 21, 2025 02:17
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 2 times, most recently from f544fe0 to ce2ca20 Compare November 12, 2025 04:55
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 2 times, most recently from fcd13f4 to b66dfc8 Compare November 22, 2025 05:12
@renovate-bot renovate-bot force-pushed the renovate/npm-dev branch 3 times, most recently from 2ef1f2d to 547b0a9 Compare December 2, 2025 02:16
Signed-off-by: Mend Renovate <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant