Skip to content

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

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: v3
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 16, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@iconify-json/lucide ^1.2.49 -> ^1.2.51 age adoption passing confidence
@iconify-json/simple-icons ^1.2.38 -> ^1.2.39 age adoption passing confidence
@nuxt/content (source) ^3.6.0 -> ^3.6.1 age adoption passing confidence
@nuxt/icon ^1.13.0 -> ^1.14.0 age adoption passing confidence
@vueuse/core (source) ^13.3.0 -> ^13.4.0 age adoption passing confidence
@vueuse/integrations (source) ^13.3.0 -> ^13.4.0 age adoption passing confidence
@vueuse/nuxt (source) ^13.3.0 -> ^13.4.0 age adoption passing confidence
motion-v ^1.2.1 -> ^1.3.0 age adoption passing confidence
nuxt-og-image (source) ^5.1.6 -> ^5.1.7 age adoption passing confidence
vitest (source) ^3.2.3 -> ^3.2.4 age adoption passing confidence
vue (source) ^3.5.16 -> ^3.5.17 age adoption passing confidence
workers-ai-provider ^0.6.1 -> ^0.7.0 age adoption passing confidence
wrangler (source) ^4.20.0 -> ^4.20.5 age adoption passing confidence
zod (source) ^3.25.64 -> ^3.25.67 age adoption passing confidence

Release Notes

nuxt/content (@​nuxt/content)

v3.6.1

Compare Source

Features
Bug Fixes
nuxt/icon (@​nuxt/icon)

v1.14.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
vueuse/vueuse (@​vueuse/core)

v13.4.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
motiondivision/motion-vue (motion-v)

v1.3.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
nuxt-modules/og-image (nuxt-og-image)

v5.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
vitest-dev/vitest (vitest)

v3.2.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
vuejs/core (vue)

v3.5.17

Compare Source

Bug Fixes
cloudflare/ai (workers-ai-provider)

v0.7.0

Compare Source

Minor Changes

v0.6.5

Compare Source

Patch Changes

v0.6.3

Compare Source

Patch Changes
cloudflare/workers-sdk (wrangler)

v4.20.5

Compare Source

Patch Changes
  • #​9688 086e29d Thanks @​dario-piotrowicz! - add remote bindings support to getPlatformProxy

    Example:

    // wrangler.jsonc
    {
    	"name": "get-platform-proxy-test",
    	"services": [
    		{
    			"binding": "MY_WORKER",
    			"service": "my-worker",
    			"experimental_remote": true
    		}
    	]
    }
    // index.mjs
    import { getPlatformProxy } from "wrangler";
    
    const { env } = await getPlatformProxy({
    	experimental: {
    		remoteBindings: true,
    	},
    });
    
    // env.MY_WORKER.fetch() fetches from the remote my-worker service
  • #​9558 d5edf52 Thanks @​ichernetsky-cf! - wrangler containers apply uses observability configuration.

  • #​9678 24b2c66 Thanks @​dario-piotrowicz! - remove warnings during config validations on experimental_remote fields

    wrangler commands, run without the --x-remote-bindings flag, parsing config files containing experimental_remote fields currently show warnings stating that the field is not recognized. This is usually more cumbersome than helpful so here we're loosening up this validation and making wrangler always recognize the field even when no --x-remote-bindings flag is provided

  • #​9633 3f478af Thanks @​nikitassharma! - Add support for setting an instance type for containers in wrangler. This allows users to configure memory, disk, and vCPU by setting instance type when interacting with containers.

  • #​9596 5162c51 Thanks @​CarmenPopoviciu! - add ability to pull images for containers local dev

  • Updated dependencies [bfb791e, 5162c51]:

    • miniflare@4.20250617.3

v4.20.4

Compare Source

Patch Changes

v4.20.3

Compare Source

Patch Changes

v4.20.2

Compare Source

Patch Changes
  • #​9565 b1c9139 Thanks @​IRCody! - Ensure that a container applications image configuration is not updated if there were not changes to the image.

  • #​9628 92f12f4 Thanks @​gpanders! - Remove "Cloudchamber" from user facing error messages

  • #​9576 2671e77 Thanks @​vicb! - Add core local dev functionality for containers.
    Adds a new WRANGLER_DOCKER_HOST env var to customise what socket to connect to.

  • Updated dependencies [828b7df, 2671e77]:

    • miniflare@4.20250617.0

v4.20.1

Compare Source

Patch Changes
  • #​9536 3b61c41 Thanks @​dario-piotrowicz! - expose Unstable_Binding type

  • #​9564 1d3293f Thanks @​skepticfx! - Switch container registry to registry.cloudflare.com from registry.cloudchamber.cfdata.org.
    Also adds the env var CLOUDFLARE_CONTAINER_REGISTRY to override this

  • #​9520 04f9164 Thanks @​vicb! - fix the default value for keep_names (true)

  • #​9506 36113c2 Thanks @​penalosa! - Strip the CF-Connecting-IP header from outgoing fetches

  • #​9592 49f5ac7 Thanks @​petebacondarwin! - Point to the right location for docs on telemetry

  • #​9593 cf33417 Thanks @​vicb! - drop unused WRANGLER_UNENV_RESOLVE_PATHS env var

  • #​9566 521eeb9 Thanks @​vicb! - Bump @cloudflare/unenv-preset to 2.3.3

  • #​9344 02e2c1e Thanks @​dario-piotrowicz! - add warning about env not specified to potentially risky wrangler commands

    add a warning suggesting users to specify their target environment (via -e or --env)
    when their wrangler config file contains some environments and they are calling one
    of the following commands:

    • wrangler deploy
    • wrangler versions upload
    • wrangler versions deploy
    • wrangler versions secret bulk
    • wrangler versions secret put
    • wrangler versions secret delete
    • wrangler secret bulk
    • wrangler secret put
    • wrangler secret delete
    • wrangler triggers deploy

    this is a measure we're putting in place to try to prevent developers from accidentally applying
    changes to an incorrect (potentially even production) environment

  • #​9344 02e2c1e Thanks @​dario-piotrowicz! - allow passing an empty string to the -e|--env flag to target the top-level environment

  • #​9536 3b61c41 Thanks @​dario-piotrowicz! - performance improvement: restart a mixed mode session only if the worker's remote bindings have changed

  • #​9550 c117904 Thanks @​dario-piotrowicz! - allow startWorker to accept false as an inspector option (to disable the inspector server)

  • #​9473 fae8c02 Thanks @​dario-piotrowicz! - expose new experimental_maybeStartOrUpdateMixedModeSession utility

  • Updated dependencies [bd528d5, 2177fb4, 36113c2, e16fcc7]:

    • miniflare@4.20250612.0
colinhacks/zod (zod)

v3.25.67

Compare Source

Commits:

v3.25.66

Compare Source

v3.25.65

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.

@renovate renovate bot requested a review from benjamincanac as a code owner June 16, 2025 19:04
@renovate renovate bot added the v3 #1289 label Jun 16, 2025
Copy link
Contributor

nuxthub-admin bot commented Jun 16, 2025

✅ Deployed ui3

Deployed ui3 d11b664 to preview

🔗 renovate-v3-all-minor-patch.ui-6q2.pages.dev
📌 1f6b40db.ui-6q2.pages.dev
📱
View QR Code QR code linking to deployment URL.

📋 View deployment logs

Copy link

pkg-pr-new bot commented Jun 16, 2025

npm i https://pkg.pr.new/@nuxt/ui@4362

commit: d11b664

@renovate renovate bot force-pushed the renovate/v3-all-minor-patch branch from 3ec93c4 to dedc400 Compare June 17, 2025 04:45
@renovate renovate bot changed the title chore(deps): update dependency zod to ^3.25.65 (v3) chore(deps): update dependency zod to ^3.25.67 (v3) Jun 17, 2025
@renovate renovate bot force-pushed the renovate/v3-all-minor-patch branch from dedc400 to 968b218 Compare June 17, 2025 21:47
@renovate renovate bot changed the title chore(deps): update dependency zod to ^3.25.67 (v3) chore(deps): update all non-major dependencies (v3) Jun 17, 2025
@renovate renovate bot force-pushed the renovate/v3-all-minor-patch branch from 968b218 to 00d19c6 Compare June 18, 2025 10:06
@renovate renovate bot force-pushed the renovate/v3-all-minor-patch branch from 00d19c6 to 245f62e Compare June 18, 2025 18:35
@renovate renovate bot force-pushed the renovate/v3-all-minor-patch branch from 245f62e to e12bad9 Compare June 19, 2025 08:59
@renovate renovate bot force-pushed the renovate/v3-all-minor-patch branch from e12bad9 to 559bdaf Compare June 19, 2025 17:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
v3 #1289
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants