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.20250423.0 -> ^4.20250510.0 age adoption passing confidence
@iconify-json/lucide ^1.2.38 -> ^1.2.41 age adoption passing confidence
@iconify-json/vscode-icons ^1.2.19 -> ^1.2.20 age adoption passing confidence
@nuxt/test-utils ^3.17.2 -> ^3.18.0 age adoption passing confidence
@nuxt/ui-pro (source) ^3.0.2 -> ^3.1.1 age adoption passing confidence
@nuxthub/core (source) ^0.8.25 -> ^0.8.27 age adoption passing confidence
@shikijs/langs (source) ^3.3.0 -> ^3.4.0 age adoption passing confidence
@types/bun (source) ^1.2.10 -> ^1.2.12 age adoption passing confidence
@types/node (source) ^22.14.1 -> ^22.15.17 age adoption passing confidence
@types/pg (source) ^8.11.13 -> ^8.15.1 age adoption passing confidence
better-sqlite3 ^11.9.1 -> ^11.10.0 age adoption passing confidence
eslint (source) ^9.25.1 -> ^9.26.0 age adoption passing confidence
nuxt-og-image (source) ^5.1.2 -> ^5.1.3 age adoption passing confidence
pnpm (source) 10.9.0 -> 10.10.0 age adoption passing confidence
release-it ^19.0.1 -> ^19.0.2 age adoption passing confidence
shiki (source) ^3.3.0 -> ^3.4.0 age adoption passing confidence
vitest (source) ^3.1.2 -> ^3.1.3 age adoption passing confidence
vue-tsc (source) ^2.2.8 -> ^2.2.10 age adoption passing confidence
wrangler (source) ^4.13.0 -> ^4.14.4 age adoption passing confidence
ws ^8.18.1 -> ^8.18.2 age adoption passing confidence
zod (source) ^3.24.3 -> ^3.24.4 age adoption passing confidence

Release Notes

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

v4.20250510.0

Compare Source

v4.20250509.0

Compare Source

v4.20250508.0

Compare Source

v4.20250507.0

Compare Source

v4.20250506.0

Compare Source

v4.20250505.0

Compare Source

v4.20250504.0

Compare Source

v4.20250503.0

Compare Source

v4.20250502.0

Compare Source

v4.20250430.0

Compare Source

v4.20250429.0

Compare Source

v4.20250428.0

Compare Source

v4.20250427.0

Compare Source

v4.20250426.0

Compare Source

v4.20250425.0

Compare Source

v4.20250424.0

Compare Source

nuxt/test-utils (@​nuxt/test-utils)

v3.18.0

Compare Source

compare changes

🚀 Enhancements
  • e2e: Add support for bun test runner (#​1264)
  • config: Support vitest browser mode (#​1271)
🩹 Fixes
  • vitest-environment: Respect custom app.baseURL in manifest path (#​1213)
  • runtime-utils: Wrap WrapperComponent default slot in function (#​1244)
💅 Refactors
  • Rename setup hook to beforeAll for clarity (#​1221)
📖 Documentation
✅ Tests
❤️ Contributors
nuxt/ui-pro (@​nuxt/ui-pro)

v3.1.1

Compare Source

nuxt-hub/core (@​nuxthub/core)

v0.8.27

Compare Source

compare changes

🚀 Enhancements
  • Enable worker logs with default settings (#​566)
📖 Documentation
❤️ Contributors

v0.8.26

Compare Source

compare changes

🚀 Enhancements
📖 Documentation
🏡 Chore
  • release: V0.8.25 (988a38b)
  • Update to latest nuxt ui version (#​556)
❤️ Contributors
shikijs/shiki (@​shikijs/langs)

v3.4.0

Compare Source

   🐞 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

eslint/eslint (eslint)

v9.26.0

Compare Source

nuxt-modules/og-image (nuxt-og-image)

v5.1.3

Compare Source

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

v10.10.0

Compare Source

Minor Changes
  • Allow loading the preResolution, importPackage, and fetchers hooks from local pnpmfile.
Patch Changes
  • Fix cd command, when shellEmulator is true #​7838.
  • Sort keys in pnpm-workspace.yaml #​9453.
  • Pass the npm_package_json environment variable to the executed scripts #​9452.
  • Fixed a mistake in the description of the --reporter=silent option.
release-it/release-it (release-it)

v19.0.2

Compare Source

vitest-dev/vitest (vitest)

v3.1.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
vuejs/language-tools (vue-tsc)

v2.2.10

Compare Source

cloudflare/workers-sdk (wrangler)

v4.14.4

Compare Source

Patch Changes
  • #​9124 d0d62e6 Thanks @​dario-piotrowicz! - make that unstable_startWorker can correctly throw configuration errors

    make sure that unstable_startWorker can throw configuration related errors when:

    • the utility is called
    • the worker's setConfig is called with the throwErrors argument set to true

    additionally when an error is thrown when unstable_startWorker is called make sure
    that the worker is properly disposed (since, given the fact that it is not returned
    by the utility the utility's caller wouldn't have any way to dispose it themselves)

v4.14.3

Compare Source

Patch Changes

v4.14.2

Compare Source

Patch Changes

v4.14.1

Compare Source

Patch Changes
  • #​9085 cdc88d8 Thanks @​petebacondarwin! - Do not include .wrangler and Wrangler config files in additional modules

    Previously, if you added modules rules such as **/*.js or **/*.json, specified no_bundle: true, and the entry-point to the Worker was in the project root directory, Wrangler could include files that were not intended, such as .wrangler/tmp/xxx.js or the Wrangler config file itself. Now these files are automatically skipped when trying to find additional modules by searching the file tree.

  • #​9095 508a1a3 Thanks @​petebacondarwin! - wrangler login put custom callback host and port into the auth URL

  • #​9113 82e220e Thanks @​dario-piotrowicz! - Add x-mixed-mode flag

    This experimental flag currently has no effect. More details will be shared as we roll out its functionality.

  • Updated dependencies [357d42a]:

v4.14.0

Compare Source

Minor Changes
Patch Changes

v4.13.2

Compare Source

Patch Changes

v4.13.1

Compare Source

Patch Changes
websockets/ws (ws)

v8.18.2

Compare Source

Bug fixes

Fixed an issue that, during message decompression when the maximum size was
exceeded, led to the emission of an inaccurate error and closure of the
connection with an improper close code (#​2285).

colinhacks/zod (zod)

v3.24.4

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: a4a664c
Status: ✅  Deploy successful!
Preview URL: https://78e7adce.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: a4a664c

@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

️✅ There are no secrets present in this pull request anymore.

If these secrets were true positive and are still valid, we highly recommend you to revoke them.
While these secrets were previously flagged, we no longer have a reference to the
specific commits where they were detected. Once a secret has been leaked into a git
repository, you should consider it compromised, even if it was deleted immediately.
Find here more information about risks.


🦉 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 27 times, most recently from 6d9d627 to 4c52b05 Compare May 8, 2025 18:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4c52b05 to e2e13ee Compare May 9, 2025 05:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e2e13ee to a4a664c Compare May 10, 2025 05:09
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