autoscaler icon indicating copy to clipboard operation
autoscaler copied to clipboard

fix(deps): update npm-packages

Open renovate-bot opened this issue 5 months ago • 1 comments

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.5 age confidence
@types/lodash (source) ^4.17.18 -> ^4.17.20 age confidence
eslint-config-prettier ^9.1.0 -> ^9.1.2 age confidence
eslint-plugin-prettier ^5.5.0 -> ^5.5.4 age confidence
markdown-link-check ^3.13.7 -> ^3.14.2 age confidence
markdownlint-cli ^0.45.0 -> ^0.46.0 age confidence
pino (source) ^9.7.0 -> ^9.14.0 age confidence
prettier (source) ^3.5.3 -> ^3.6.2 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.4

Compare Source

Patch Changes

v5.5.3

Compare Source

republish the latest version

Full Changelog: https://github.com/prettier/eslint-plugin-prettier/compare/v5.5.2...v5.5.3

v5.5.2

Compare Source

republish the latest version

Full Changelog: https://github.com/prettier/eslint-plugin-prettier/compare/v5.5.1...v5.5.2

v5.5.1

Compare Source

Patch Changes
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.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: https://github.com/pinojs/pino/compare/v9.13.1...v9.14.0

v9.13.1

Compare Source

What's Changed

Full Changelog: https://github.com/pinojs/pino/compare/v9.13.0...v9.13.1

v9.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/pinojs/pino/compare/v9.12.0...v9.13.0

v9.12.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/pinojs/pino/compare/v9.11.0...v9.12.0

v9.11.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/pinojs/pino/compare/v9.10.0...v9.11.0

v9.10.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/pinojs/pino/compare/v9.9.5...v9.10.0

v9.9.5

Compare Source

What's Changed

Full Changelog: https://github.com/pinojs/pino/compare/v9.9.4...v9.9.5

v9.9.4

Compare Source

What's Changed

Full Changelog: https://github.com/pinojs/pino/compare/v9.9.3...v9.9.4

v9.9.3

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/pinojs/pino/compare/v9.9.2...v9.9.3

v9.9.2

Compare Source

What's Changed

Full Changelog: https://github.com/pinojs/pino/compare/v9.9.1...v9.9.2

v9.9.1

Compare Source

What's Changed

Full Changelog: https://github.com/pinojs/pino/compare/v9.9.0...v9.9.1

v9.9.0

Compare Source

What's Changed

Full Changelog: https://github.com/pinojs/pino/compare/v9.8.0...v9.9.0

v9.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/pinojs/pino/compare/v9.7.0...v9.8.0

prettier/prettier (prettier)

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 avatar Jun 23 '25 07:06 renovate-bot