Skip to content

fix(deps): update all non-major dependencies #2606

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 15, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cloudflare/workers-types 4.20250612.0 -> 4.20250620.0 age adoption passing confidence
@types/aws-lambda (source) 8.10.149 -> 8.10.150 age adoption passing confidence
@types/jsonwebtoken (source) 9.0.9 -> 9.0.10 age adoption passing confidence
@types/node (source) 22.15.31 -> 22.15.32 age adoption passing confidence
axios (source) 1.9.0 -> 1.10.0 age adoption passing confidence
eslint (source) 9.28.0 -> 9.29.0 age adoption passing confidence
eslint-plugin-import 2.31.0 -> 2.32.0 age adoption passing confidence
eslint-plugin-n 17.19.0 -> 17.20.0 age adoption passing confidence
eslint-plugin-package-json ^0.36.0 -> ^0.40.0 age adoption passing confidence
fastify (source) 5.3.3 -> 5.4.0 age adoption passing confidence
lint-staged 16.1.0 -> 16.1.2 age adoption passing confidence
pnpm (source) 10.12.1 -> 10.12.2 age adoption passing confidence
prettier (source) 3.5.3 -> 3.6.0 age adoption passing confidence
wrangler (source) 4.19.2 -> 4.20.5 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

axios/axios (axios)

v1.10.0

Compare Source

Bug Fixes
  • adapter: pass fetchOptions to fetch function (#​6883) (0f50af8)
  • form-data: convert boolean values to strings in FormData serialization (#​6917) (5064b10)
  • package: add module entry point for React Native; (#​6933) (3d343b8)
Features
Contributors to this release
eslint/eslint (eslint)

v9.29.0

Compare Source

import-js/eslint-plugin-import (eslint-plugin-import)

v2.32.0

Compare Source

Added
Fixed
Changed
eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.20.0

Compare Source

🌟 Features
JoshuaKGoldberg/eslint-plugin-package-json (eslint-plugin-package-json)

v0.40.4

Compare Source

Bug Fixes
  • deps: update dependency package-json-validator to ~0.15.0 (#​1131) (4bf7d9c)

v0.40.3

Compare Source

Bug Fixes

v0.40.2

Compare Source

Bug Fixes
  • deps: update dependency package-json-validator to ~0.14.0 (#​1125) (5f61f89)

v0.40.1

Compare Source

Bug Fixes

v0.40.0

Compare Source

Features

0.39.2 (2025-06-15)

Bug Fixes

0.39.1 (2025-06-15)

Bug Fixes

v0.39.2

Compare Source

Bug Fixes

v0.39.1

Compare Source

Bug Fixes

v0.39.0

Compare Source

Features

0.38.1 (2025-06-13)

Bug Fixes

v0.38.1

Compare Source

Bug Fixes

v0.38.0

Compare Source

Features

v0.37.0

Compare Source

Features
fastify/fastify (fastify)

v5.4.0

Compare Source

What's Changed

Full Changelog: fastify/fastify@v5.3.3...v5.4.0

lint-staged/lint-staged (lint-staged)

v16.1.2

Compare Source

Patch Changes
  • #​1570 a7c0c88 Thanks @​ItsNickBarry! - When using --diff-filter with the D option to include deleted staged files, lint-staged no longer tries to stage the deleted files, unless they're no longer deleted. Previously this caused an error from git add like fatal: pathspec 'deleted-file' did not match any files.

  • 38f942e Thanks @​iiroj! - Removed an extraneous log entry that printed shouldHidePArtiallyStagedFiles to console output.

v16.1.1

Compare Source

Patch Changes
  • #​1565 3686977 Thanks @​iiroj! - Lint-staged now explicitly warns about potential data loss when using --no-stash.

  • #​1571 02299a9 Thanks @​iiroj! - Function tasks (introduced in v16.0.0) only received the staged files matching the conpmnfigured glob, instead of all staged files.

  • #​1563 bc61c74 Thanks @​iiroj! - This version fixes incorrect behavior where unstaged changes were committed when using the --no-stash option. This happened because --no-stash implied --no-hide-partially-staged, meaning unstaged changes to files which also had other staged changes were added to the commit by lint-staged; this is no longer the case.

    The previous (incorrect) behavior can still be achieved by using both options --no-stash --no-hide-partially-staged at the same time.

pnpm/pnpm (pnpm)

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.0

Compare Source

diff

🔗 Release Notes

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

v4.20.0

Compare Source

Minor Changes
Patch Changes
  • #​9507 1914b87 Thanks @​dario-piotrowicz! - slightly improve wrangler dev bindings loggings

    improve the bindings loggings by:

    • removing the unnecessary (and potentially incorrect) [connected] suffix for remote bindings
    • making sure that the modes presented in the bindings logs are correctly aligned
  • [#​9475](https://redirect.github.com/cloudfl


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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
Contributor

github-actions bot commented Jun 15, 2025

💻 Website Preview

The latest changes are available as preview in:

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from effbc90 to dbe3e00 Compare June 16, 2025 11:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dbe3e00 to ca2f61f Compare June 16, 2025 16:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ca2f61f to 59b6d82 Compare June 16, 2025 21:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 59b6d82 to c2b6676 Compare June 17, 2025 01:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c2b6676 to a1ae162 Compare June 17, 2025 20:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a1ae162 to 9248ec7 Compare June 18, 2025 02:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9248ec7 to dbe319a Compare June 18, 2025 11:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dbe319a to 196c411 Compare June 18, 2025 17:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 196c411 to fe0018a Compare June 19, 2025 02:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fe0018a to ffc6d91 Compare June 20, 2025 07:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ffc6d91 to a43bc06 Compare June 20, 2025 19:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a43bc06 to 3e4cc88 Compare June 21, 2025 00:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

0 participants