Skip to content

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

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 Jun 16, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cloudflare/workers-types ^4.20250610.0 -> ^4.20250620.0 age adoption passing confidence
@iconify-json/lucide ^1.2.47 -> ^1.2.52 age adoption passing confidence
@iconify-json/simple-icons ^1.2.38 -> ^1.2.40 age adoption passing confidence
@iconify-json/vscode-icons ^1.2.22 -> ^1.2.23 age adoption passing confidence
@nuxt/ui-pro (source) ^3.1.3 -> ^3.2.0 age adoption passing confidence
@shikijs/langs (source) ^3.6.0 -> ^3.7.0 age adoption passing confidence
@types/bun (source) ^1.2.15 -> ^1.2.17 age adoption passing confidence
@types/node (source) ^22.15.31 -> ^22.15.33 age adoption passing confidence
@vueuse/nuxt (source) ^13.3.0 -> ^13.4.0 age adoption passing confidence
better-sqlite3 12.0.0 -> 12.1.1 age adoption passing confidence
eslint (source) ^9.28.0 -> ^9.29.0 age adoption passing confidence
minimatch ^10.0.1 -> ^10.0.3 age adoption passing confidence
nuxt-og-image (source) ^5.1.6 -> ^5.1.8 age adoption passing confidence
pkg-types ^2.1.0 -> ^2.1.1 age adoption passing confidence
pnpm (source) 10.12.1 -> 10.12.3 age adoption passing confidence
prettier (source) ^3.5.3 -> ^3.6.1 age adoption passing confidence
shiki (source) ^3.6.0 -> ^3.7.0 age adoption passing confidence
vitest (source) ^3.2.3 -> ^3.2.4 age adoption passing confidence
wrangler (source) ^4.19.1 -> ^4.22.0 age adoption passing confidence
zod (source) ^3.25.58 -> ^3.25.67 age adoption passing confidence
zod-to-json-schema ^3.24.5 -> ^3.24.6 age adoption passing confidence

Release Notes

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

v4.20250620.0

Compare Source

v4.20250619.0

Compare Source

v4.20250618.0

Compare Source

v4.20250617.0

Compare Source

v4.20250614.0

Compare Source

v4.20250613.0

Compare Source

v4.20250612.0

Compare Source

nuxt/ui-pro (@​nuxt/ui-pro)

v3.2.0

Compare Source

shikijs/shiki (@​shikijs/langs)

v3.7.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vueuse/vueuse (@​vueuse/nuxt)

v13.4.0

Compare Source

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

v12.1.1

Compare Source

What's Changed

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

v12.1.0

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.0.0...v12.1.0

eslint/eslint (eslint)

v9.29.0

Compare Source

isaacs/minimatch (minimatch)

v10.0.3

Compare Source

v10.0.2

Compare Source

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

v5.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v5.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
unjs/pkg-types (pkg-types)

v2.1.1

Compare Source

compare changes

📖 Documentation
🌊 Types
  • packagejson: Autocompletion for script names (#​229)
  • packagejson: Add funding field (#​224)
  • funding field is optional (a82b636)
🏡 Chore
❤️ Contributors
pnpm/pnpm (pnpm)

v10.12.3

Compare Source

Patch Changes
  • Restore hoisting of optional peer dependencies when installing with an outdated lockfile.
    Regression introduced in v10.12.2 by #​9648; resolves #​9685.

v10.12.2

Compare Source

Patch Changes
  • Fixed hoisting with enableGlobalVirtualStore set to true #​9648.
  • Fix the --help and -h flags not working as expected for the pnpm create command.
  • The dependency package path output by the pnpm licenses list --json command is incorrect.
  • Fix a bug in which pnpm deploy fails due to overridden dependencies having peer dependencies causing ERR_PNPM_OUTDATED_LOCKFILE #​9595.
prettier/prettier (prettier)

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

vitest-dev/vitest (vitest)

v3.2.4

Compare Source

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

v4.22.0

Compare Source

Minor Changes
  • #​7871 f2a8d4a Thanks @​dario-piotrowicz! - add support for assets bindings to getPlatformProxy

    this change makes sure that that getPlatformProxy, when the input configuration
    file contains an assets field, correctly returns the appropriate asset binding proxy

    example:

    // wrangler.jsonc
    {
    	"name": "my-worker",
    	"assets": {
    		"directory": "./public/",
    		"binding": "ASSETS",
    	},
    }
    import { getPlatformProxy } from "wrangler";
    
    const { env, dispose } = await getPlatformProxy();
    
    const text = await (await env.ASSETS.fetch("http://0.0.0.0/file.txt")).text();
    console.log(text); // logs the content of file.txt
    
    await dispose();
Patch Changes

v4.21.2

Compare Source

Patch Changes

v4.21.1

Compare Source

Patch Changes

v4.21.0

Compare Source

Minor Changes
Patch Changes
  • #​9695 0e64c35 Thanks @​emily-shen! - Move hotkey registration later in dev start up

    This should have no functional change, but allows us to conditionally render hotkeys based on config.

  • #​9098 ef20754 Thanks @​jseba! - Migrate Workers Containers commands to Containers API Endpoints

    The Workers Containers API was built on top of Cloudchamber, but has now been moved to its own API
    with a reduced scoping and new token.

  • #​9712 2a4c467 Thanks @​emily-shen! - Make wrangler container commands print open-beta status

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]:

v4.20.4

Compare Source

Patch Changes

v4.20.3

Compare Source

Patch Changes

v4.20.2

Compare Source

Patch Changes

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 [@&feat: add yarn v2 (berry) support #820


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

pkg-pr-new bot commented Jun 16, 2025

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

commit: 24a4e5f

Copy link

cloudflare-workers-and-pages bot commented Jun 16, 2025

Deploying content with  Cloudflare Pages  Cloudflare Pages

Latest commit: 24a4e5f
Status: ✅  Deploy successful!
Preview URL: https://a1844530.content-f0q.pages.dev
Branch Preview URL: https://renovate-all-minor-patch.content-f0q.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from dad8f4a to ccb2a0f Compare June 19, 2025 20:04
Copy link

vercel bot commented Jun 19, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated (UTC)
content-docs ✅ Ready (Inspect) Visit Preview Jun 26, 2025 3:29pm

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ccb2a0f to 94f2ba4 Compare June 20, 2025 04:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 94f2ba4 to 86a7f78 Compare June 20, 2025 08:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 86a7f78 to 3af0313 Compare June 20, 2025 14:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3af0313 to 8e1bace Compare June 20, 2025 21:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8e1bace to 5f72f54 Compare June 21, 2025 11:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5f72f54 to 24bb723 Compare June 23, 2025 04:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 24bb723 to aaff63b Compare June 23, 2025 13:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from aaff63b to d5eefac Compare June 23, 2025 21:12
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