Skip to content

chore(deps): update all non-major dependencies #3269

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 19, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cloudflare/workers-types ^4.20250601.0 -> ^4.20250607.0 age adoption passing confidence
@iconify-json/lucide ^1.2.45 -> ^1.2.47 age adoption passing confidence
@iconify-json/simple-icons ^1.2.37 -> ^1.2.38 age adoption passing confidence
@nuxt/devtools (source) ^2.4.1 -> ^2.5.0 age adoption passing confidence
@nuxt/test-utils ^3.17.2 -> ^3.19.1 age adoption passing confidence
@shikijs/langs (source) ^3.4.2 -> ^3.6.0 age adoption passing confidence
@types/node (source) ^22.15.29 -> ^22.15.30 age adoption passing confidence
better-sqlite3 11.x -> 11.10.0 age adoption passing confidence
nuxt-llms ^0.1.2 -> ^0.1.3 age adoption passing confidence
nuxt-og-image (source) ^5.1.4 -> ^5.1.6 age adoption passing confidence
pnpm (source) 10.11.1 -> 10.12.1 age adoption passing confidence
shiki (source) ^3.4.2 -> ^3.6.0 age adoption passing confidence
vitest (source) ^3.1.2 -> ^3.2.2 age adoption passing confidence
wrangler (source) ^4.18.0 -> ^4.19.1 age adoption passing confidence
zod (source) ^3.25.48 -> ^3.25.56 age adoption passing confidence

Release Notes

cloudflare/workerd (@​cloudflare/workers-types)

v4.20250607.0

Compare Source

v4.20250606.0

Compare Source

v4.20250605.0

Compare Source

v4.20250604.0

Compare Source

v4.20250603.0

Compare Source

nuxt/devtools (@​nuxt/devtools)

v2.5.0

Compare Source

shikijs/shiki (@​shikijs/langs)

v3.6.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
WiseLibs/better-sqlite3 (better-sqlite3)

v11.10.0

Compare Source

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v11.9.1...v11.10.0

v11.9.1

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v11.9.0...v11.9.1

v11.9.0

Compare Source

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v11.8.1...v11.9.0

v11.8.1

Compare Source

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v11.8.0...v11.8.1

v11.8.0

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v11.7.2...v11.8.0

v11.7.2

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v11.7.1...v11.7.2

v11.7.0

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v11.6.0...v11.7.0

v11.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v11.5.0...v11.6.0

v11.5.0

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v11.4.0...v11.5.0

v11.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v11.3.0...v11.4.0

v11.3.0

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v11.2.1...v11.3.0

v11.2.1

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v11.2.0...v11.2.1

v11.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v11.1.2...v11.2.0

v11.1.2

Compare Source

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v11.1.1...v11.1.2

v11.1.1

Compare Source

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v11.1.0...v11.1.1

nuxtlabs/nuxt-llms (nuxt-llms)

v0.1.3

Compare Source

compare changes

🩹 Fixes
  • Using custom description provided within the llms:generate hook (#​16)
🏡 Chore
❤️ Contributors
nuxt-modules/og-image (nuxt-og-image)

v5.1.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v5.1.5

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
pnpm/pnpm (pnpm)

v10.12.1

Minor Changes
  • Experimental. Added support for global virtual stores. When enabled, node_modules contains only symlinks to a central virtual store, rather to node_modules/.pnpm. By default, this central store is located at <store-path>/links (you can find the store path by running pnpm store path).

    In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available.

    This is conceptually similar to how NixOS manages packages, using dependency graph hashes to create isolated and reusable package directories.

    To enable the global virtual store, set enableGlobalVirtualStore: true in your root pnpm-workspace.yaml, or globally via:

    pnpm config -g set enable-global-virtual-store true

    NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI.

    Related PR: #​8190

  • The pnpm update command now supports updating catalog: protocol dependencies and writes new specifiers to pnpm-workspace.yaml.
  • Added two new CLI options (--save-catalog and --save-catalog-name=<name>) to pnpm add to save new dependencies as catalog entries. catalog: or catalog:<name> will be added to package.json and the package specifier will be added to the catalogs or catalog[<name>] object in pnpm-workspace.yaml #​9425.
  • Semi-breaking. The keys used for side-effects caches have changed. If you have a side-effects cache generated by a previous version of pnpm, the new version will not use it and will create a new cache instead #​9605.
  • Added a new setting called ci for explicitly telling pnpm if the current environment is a CI or not.
Patch Changes
  • Sort versions printed by pnpm patch using semantic versioning rules.
  • Improve the way the error message displays mismatched specifiers. Show differences instead of 2 whole objects #​9598.
  • Revert #​9574 to fix a regression #​9596.
vitest-dev/vitest (vitest)

v3.2.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v3.2.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
cloudflare/workers-sdk (wrangler)

v4.19.1

Compare Source

Patch Changes

v4.19.0

Compare Source

Minor Changes
Patch Changes
colinhacks/zod (zod)

v3.25.56

Compare Source

v3.25.55

Compare Source

v3.25.54

Compare Source

v3.25.53

Compare Source

Commits:

v3.25.52

Compare Source

Commits:

v3.25.51

Compare Source

v3.25.50

Compare Source

v3.25.49

Compare Source


Configuration

📅 Schedule: Branch creation - "on Monday" (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.

Copy link

cloudflare-workers-and-pages bot commented Mar 19, 2025

Deploying content with  Cloudflare Pages  Cloudflare Pages

Latest commit: df514b1
Status: ✅  Deploy successful!
Preview URL: https://97e402ab.content-f0q.pages.dev
Branch Preview URL: https://renovate-all-minor-patch.content-f0q.pages.dev

View logs

Copy link

pkg-pr-new bot commented Mar 19, 2025

npm i https://pkg.pr.new/@nuxt/content@3269

commit: df514b1

@renovate renovate bot changed the title chore(deps): update dependency nuxt-og-image to ^5.0.5 chore(deps): update all non-major dependencies Mar 19, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2123cc6 to f2a6d27 Compare March 20, 2025 04:34
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed Mar 20, 2025
@renovate renovate bot closed this Mar 20, 2025
@renovate renovate bot deleted the renovate/all-minor-patch branch March 20, 2025 13:26
@renovate renovate bot changed the title chore(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies Mar 21, 2025
@renovate renovate bot reopened this Mar 21, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 3c3fb23 to 45a500a Compare March 21, 2025 13:03
Copy link

gitguardian bot commented Mar 21, 2025

⚠️ GitGuardian has uncovered 1 secret following the scan of your pull request.

Please consider investigating the findings and remediating the incidents. Failure to do so may lead to compromising the associated services or software components.

🔎 Detected hardcoded secret in your pull request
GitGuardian id GitGuardian status Secret Commit Filename
17680251 Triggered Generic Password df514b1 pnpm-lock.yaml View secret
🛠 Guidelines to remediate hardcoded secrets
  1. Understand the implications of revoking this secret by investigating where it is used in your code.
  2. Replace and store your secret safely. Learn here the best practices.
  3. Revoke and rotate this secret.
  4. If possible, rewrite git history. Rewriting git history is not a trivial act. You might completely break other contributing developers' workflow and you risk accidentally deleting legitimate data.

To avoid such incidents in the future consider


🦉 GitGuardian detects secrets in your source code to help developers and security teams secure the modern development process. You are seeing this because you or someone else with access to this repository has authorized GitGuardian to scan your pull request.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 15 times, most recently from c55ea50 to 5b67e70 Compare March 27, 2025 17:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 66494f2 to 0977fe5 Compare June 2, 2025 16:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 16 times, most recently from 9579886 to 2f6394d Compare June 8, 2025 15:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2f6394d to df514b1 Compare June 8, 2025 19:43
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.

0 participants