Skip to content

Conversation

@renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Jun 23, 2025

This PR contains the following updates:

Package Change Age Confidence
@google-cloud/firestore ^7.11.1^7.11.6 age confidence
@google-cloud/opentelemetry-cloud-monitoring-exporter ^0.20.0^0.21.0 age confidence
@types/express (source) ^5.0.3^5.0.6 age confidence
@types/lodash (source) ^4.17.18^4.17.23 age confidence
eslint-config-prettier ^9.1.0^9.1.2 age confidence
eslint-plugin-prettier ^5.5.0^5.5.5 age confidence
express (source) ^4.21.2^4.22.1 age confidence
jsonwebtoken ^9.0.2^9.0.3 age confidence
markdown-link-check ^3.13.7^3.14.2 age confidence
markdownlint-cli ^0.45.0^0.47.0 age confidence
pino (source) ^9.7.0^9.14.0 age confidence
prettier (source) ^3.5.3^3.8.0 age confidence
typescript (source) ^5.8.3^5.9.3 age confidence

Release Notes

googleapis/nodejs-firestore (@​google-cloud/firestore)

v7.11.6

Compare Source

Bug Fixes
  • Pool.ts: add even more logging (c508d1b)

v7.11.5

Compare Source

Bug Fixes
  • Pool.ts: add more detailed logging for client garbage collection (#​2420) (1bbca46)

v7.11.4

Compare Source

Bug Fixes
  • Improve debug logging for the internal client pool. Added client IDs to debug log statements for client management. (99918f1)

v7.11.3

Compare Source

Bug Fixes
  • Improve performance of the UTF-8 string comparison logic (#​2380) (bc6a03e)

v7.11.2

Compare Source

Bug Fixes
GoogleCloudPlatform/opentelemetry-operations-js (@​google-cloud/opentelemetry-cloud-monitoring-exporter)

v0.21.0

Compare Source

prettier/eslint-config-prettier (eslint-config-prettier)

v9.1.2

Compare Source

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

v5.5.5

Compare Source

Patch Changes

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
expressjs/express (express)

v4.22.1

Compare Source

v4.22.0

Compare Source

auth0/node-jsonwebtoken (jsonwebtoken)

v9.0.3

Compare Source

  • updates jws version to 4.0.1.
tcort/markdown-link-check (markdown-link-check)

v3.14.2

Compare Source

v3.14.1

Compare Source

v3.14.0

Compare Source

igorshubovych/markdownlint-cli (markdownlint-cli)

v0.47.0

Compare Source

  • Add output and exit code support for warnings
  • Update markdownlint dependency to 0.40.0
    • Improve MD011/MD013/MD051/MD060
  • Update all dependencies via Dependabot

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
pinojs/pino (pino)

v9.14.0

Compare Source

What's Changed

Full Changelog: pinojs/pino@v9.13.1...v9.14.0

v9.13.1

Compare Source

What's Changed

Full Changelog: pinojs/pino@v9.13.0...v9.13.1

v9.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: pinojs/pino@v9.12.0...v9.13.0

v9.12.0

Compare Source

What's Changed

New Contributors

Full Changelog: pinojs/pino@v9.11.0...v9.12.0

v9.11.0

Compare Source

What's Changed

New Contributors

Full Changelog: pinojs/pino@v9.10.0...v9.11.0

v9.10.0

Compare Source

What's Changed

New Contributors

Full Changelog: pinojs/pino@v9.9.5...v9.10.0

v9.9.5

Compare Source

What's Changed

Full Changelog: pinojs/pino@v9.9.4...v9.9.5

v9.9.4

Compare Source

What's Changed

Full Changelog: pinojs/pino@v9.9.3...v9.9.4

v9.9.3

Compare Source

What's Changed

New Contributors

Full Changelog: pinojs/pino@v9.9.2...v9.9.3

v9.9.2

Compare Source

What's Changed

Full Changelog: pinojs/pino@v9.9.1...v9.9.2

v9.9.1

Compare Source

What's Changed

Full Changelog: pinojs/pino@v9.9.0...v9.9.1

v9.9.0

Compare Source

What's Changed

Full Changelog: pinojs/pino@v9.8.0...v9.9.0

v9.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: pinojs/pino@v9.7.0...v9.8.0

prettier/prettier (prettier)

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

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

microsoft/TypeScript (typescript)

v5.9.3: TypeScript 5.9.3

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:

v5.9.2: TypeScript 5.9

Compare Source

Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.

For release notes, check out the release announcement

Downloads are available on:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 changed the title fix(deps): update dependency prettier to ^3.6.0 fix(deps): update npm-packages Jun 25, 2025
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch 5 times, most recently from 5947faf to 46e404f Compare July 1, 2025 22:35
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch 2 times, most recently from 8772b00 to 8d61f29 Compare July 18, 2025 19:53
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch 3 times, most recently from 55c7fb2 to c0252dc Compare July 24, 2025 19:29
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch 9 times, most recently from 15edb4f to 3b73f5f Compare August 14, 2025 05:36
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch 10 times, most recently from 77415ff to 6899d9a Compare August 16, 2025 00:35
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch 5 times, most recently from 22350eb to 38a4dd7 Compare October 3, 2025 13:12
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch 2 times, most recently from d031d98 to de91ff8 Compare October 11, 2025 20:55
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch 2 times, most recently from 38b3ad6 to 16eb397 Compare October 24, 2025 05:13
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch from 16eb397 to 3c7ddb1 Compare October 27, 2025 22:37
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch 4 times, most recently from c6d04c5 to 1387007 Compare November 19, 2025 17:04
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch 4 times, most recently from 18c04fc to 941b3a3 Compare November 29, 2025 02:47
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch 5 times, most recently from a2d4dbd to ac9132a Compare December 4, 2025 13:43
@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch 3 times, most recently from 4b5db7d to a5c8b0f Compare January 14, 2026 13:53
@nielm
Copy link
Collaborator

nielm commented Jan 14, 2026

/gcbrun

@renovate-bot renovate-bot force-pushed the renovate/npm-packages branch from a5c8b0f to dad8b58 Compare January 15, 2026 02:50
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.

2 participants