Skip to content

fix(deps): update starter-peer-deps#817

Merged
justinvdm merged 1 commit intomainfrom
renovate/starter-peer-deps
Nov 2, 2025
Merged

fix(deps): update starter-peer-deps#817
justinvdm merged 1 commit intomainfrom
renovate/starter-peer-deps

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Oct 11, 2025

chore(deps): fix(deps): update starter-peer-deps

This PR contains the following updates:

Package Change Age Confidence
@cloudflare/vite-plugin (source) 1.13.10 -> 1.13.18 age confidence
@cloudflare/workers-types 4.20251004.0 -> 4.20251014.0 age confidence
react (source) 19.3.0-canary-4fdf7cf2-20251003 -> 19.3.0-canary-561ee24d-20251101 age confidence
react-dom (source) 19.3.0-canary-4fdf7cf2-20251003 -> 19.3.0-canary-561ee24d-20251101 age confidence
react-server-dom-webpack (source) 19.3.0-canary-4fdf7cf2-20251003 -> 19.3.0-canary-561ee24d-20251101 age confidence
vite (source) 7.1.11 -> 7.1.12 age confidence
wrangler (source) 4.42.0 -> 4.45.3 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.

This PR updates the following dependencies:


Release Notes

cloudflare/workers-sdk (@​cloudflare/vite-plugin)

v1.13.18

Patch Changes

v1.13.17

Patch Changes

v1.13.16

Compare Source

Patch Changes

v1.13.15

Compare Source

Patch Changes

v1.13.14

Compare Source

Patch Changes

v1.13.13

Compare Source

Patch Changes

v1.13.12

Compare Source

Patch Changes

v1.13.11

Compare Source

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

v4.20251014.0

Compare Source

v4.20251011.0

Compare Source

v4.20251008.0

Compare Source

facebook/react (react)

v19.3.0-canary-561ee24d-20251101

Compare Source

facebook/react (react-dom)

v19.3.0-canary-561ee24d-20251101

Compare Source

facebook/react (react-server-dom-webpack)

v19.3.0-canary-561ee24d-20251101

Compare Source

vitejs/vite (vite)

v7.1.12

Compare Source

Please refer to CHANGELOG.md for details.

cloudflare/workers-sdk (wrangler)

v4.45.3

Patch Changes
  • #​11117 6822aaf Thanks @​emily-shen! - fix: show local/remote status before D1 command confirmations

    D1 commands (execute, export, migrations apply, migrations list, delete, time-travel) now display whether they're running against local or remote databases before showing confirmation prompts. This prevents confusion about which database will be affected by the operation.

  • #​11077 bce8142 Thanks @​petebacondarwin! - Ensure that process.env is case-insensitive on Windows

    The object that holds the environment variables in process.env does not care about the case of its keys
    in Windows. For example, process.env.SystemRoot and process.env.SYSTEMROOT will refer to the same value.

    Previously, when merging fields from .env files we were replacing this native object with a vanilla
    JavaScript object, that is case-insensitive, and so sometimes environment variables appeared to be missing
    when in reality they just had different casing.

v4.45.2

Patch Changes

v4.45.1

Compare Source

Patch Changes

v4.45.0

Compare Source

Minor Changes
  • #​11030 1a8088a Thanks @​penalosa! - Enable automatic resource provisioning by default in Wrangler. This is still an experimental feature, but we're turning on the flag by default to make it easier for people to test it and try it out. You can disable the feature using the --no-x-provision flag. It currently works for R2, D1, and KV bindings.

    To use this feature, add a binding to your config file without a resource ID:

    {
    	"kv_namespaces": [{ "binding": "MY_KV" }],
    	"d1_databases": [{ "binding": "MY_DB" }],
    	"r2_buckets": [{ "binding": "MY_R2" }],
    }

    wrangler dev will automatically create these resources for you locally, and when you next run wrangler deploy Wrangler will call the Cloudflare API to create the requested resources and link them to your Worker. They'll stay linked across deploys, and you don't need to add the resource IDs to the config file for future deploys to work. This is especially good for shared templates, which now no longer need to include account-specific resource ID when adding a binding.

Patch Changes
  • #​11037 4bd4c29 Thanks @​danielrs! - Better Wrangler subdomain defaults warning.

    Improves the warnings that we show users when either worker_dev or preview_urls are missing.

  • #​10927 31e1330 Thanks @​dom96! - Implements python_modules.excludes wrangler config field

    [python_modules]
    excludes = ["**/*.pyc", "**/__pycache__"]
  • #​10741 2f57345 Thanks @​penalosa! - Remove obsolete --x-remote-bindings flag

  • Updated dependencies [ca6c010]:

    • miniflare@​4.20251011.1

v4.44.0

Compare Source

Minor Changes
  • #​10939 d4b4c90 Thanks @​danielrs! - Config preview_urls defaults to workers_dev value.

    Originally, we were defaulting config.preview_urls to true, but we
    were accidentally enabling Preview URLs for users that only had
    config.workers_dev=false.

    Then, we set the default value of config.preview_urls to false, but we
    were accidentally disabling Preview URLs for users that only had
    config.workers_dev=true.

    Rather than defaulting config.preview_urls to true or false, we
    default to the resolved value of config.workers_dev. Should result in a
    clearer user experience.

  • #​11027 1a2bbf8 Thanks @​jamesopstad! - Statically replace the value of process.env.NODE_ENV with development for development builds and production for production builds if it is not set. Else, use the given value. This ensures that libraries, such as React, that branch code based on process.env.NODE_ENV can be properly tree shaken.

  • #​9705 0ee1a68 Thanks @​hiendv! - Add params type to Workflow type generation. E.g.

    interface Env {
    	MY_WORKFLOW: Workflow<
    		Parameters<import("./src/index").MyWorkflow["run"]>[0]["payload"]
    	>;
    }
  • #​10867 dd5f769 Thanks @​austin-mc! - Add media binding support

Patch Changes
  • #​11018 5124818 Thanks @​dario-piotrowicz! - Improve potential errors thrown by startRemoteProxySession by including more information

  • #​11019 6643bd4 Thanks @​dario-piotrowicz! - Fix observability.logs.persist being flagged as an unexpected field during the wrangler config file validation

  • #​10768 8211bc9 Thanks @​dario-piotrowicz! - Update logs handling to use the new handleStructuredLogs miniflare option

  • #​10997 3bb034f Thanks @​nikitassharma! - When either WRANGLER_OUTPUT_FILE_PATH or WRANGLER_OUTPUT_FILE_DIRECTORY are set
    in the environment, then command failures will append a line to the output file
    encoding the error code and message, if present.

  • #​10986 43503c7 Thanks @​emily-shen! - fix: cleanup any running containers again on wrangler dev exit

  • #​11000 a6de9db Thanks @​jonboulle! - always load container image into local store during build

    BuildKit supports different build drivers. When using the more modern docker-container driver (which is now the default on some systems, e.g. a standard Docker installation on Fedora Linux), it will not automatically load the built image into the local image store. Since wrangler expects the image to be there (e.g. when calling getImageRepoTags), it will thus fail, e.g.:

    ⎔ Preparing container image(s)...
    [+] Building 0.3s (8/8) FINISHED                                                                                                                                                                                                     docker-container:default
    
    [...]
    
    WARNING: No output specified with docker-container driver. Build result will only remain in the build cache. To push result image into registry use --push or to load image into docker use --load
    
    ✘ [ERROR] failed inspecting image locally: Error response from daemon: failed to find image cloudflare-dev/sandbox:f86e40e4: docker.io/cloudflare-dev/sandbox:f86e40e4: No such image
    
    

    Explicitly setting the --load flag (equivalent to -o type=docker) during the build fixes this and should make the build a bit more portable without requiring users to change their default build driver configuration.

  • #​10994 d39c8b5 Thanks @​pombosilva! - Make Workflows instances list command cursor based

  • #​10892 7d0417b Thanks @​dario-piotrowicz! - improve the diffing representation for wrangler deploy (run under --x-remote-diff-check)

  • Updated dependencies [36d7054, dd5f769, ee7d710, 8211bc9]:

v4.43.0

Compare Source

Minor Changes
Patch Changes
  • #​10938 e52d0ec Thanks @​penalosa! - Acquire Cloudflare Access tokens for additional requests made during a wrangler dev --remote session

  • #​10923 2429533 Thanks @​emily-shen! - fix: update docker manifest inspect to use full image registry uri when checking if the image exists remotely

  • #​10521 88b5b7f Thanks @​penalosa! - Improves the Wrangler auto-provisioning feature (gated behind the experimental flag --x-provision) by:

    • Writing back changes to the user's config file (not necessary, but can make it resilient to binding name changes)
    • Fixing --dry-run, which previously threw an error when your config file had auto provisioned resources
    • Improve R2 bindings display to include the bucket_name from the config file on upload
    • Fixing bindings view for specific versions to not display TOML

v4.42.2

Compare Source

Patch Changes
  • #​10881 ce832d5 Thanks @​garvit-gupta! - Add table-level compaction commands for R2 Data Catalog:

    • wrangler r2 bucket catalog compaction enable <bucket> [namespace] [table]
    • wrangler r2 bucket catalog compaction disable <bucket> [namespace] [table]

    This allows you to enable and disable automatic file compaction for a specific R2 data catalog table.

  • #​10888 d0ab919 Thanks @​lrapoport-cf! - Clarify that wrangler check startup generates a local CPU profile

  • Updated dependencies [42e256f, 4462bc1]:

    • miniflare@​4.20251008.0

v4.42.1

Compare Source

Patch Changes

Configuration

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

@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages bot commented Oct 11, 2025

Deploying redwood-sdk-docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: 54f144e
Status: ✅  Deploy successful!
Preview URL: https://f99de6b2.redwood-sdk-docs.pages.dev
Branch Preview URL: https://renovate-starter-peer-deps.redwood-sdk-docs.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/starter-peer-deps branch 2 times, most recently from a2861a2 to bfe0dfe Compare October 12, 2025 12:35
@renovate renovate bot changed the title chore(deps): update starter-peer-deps fix(deps): update starter-peer-deps Oct 12, 2025
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch 2 times, most recently from 6995c62 to 475de0d Compare October 13, 2025 02:55
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch 8 times, most recently from 19fb6bf to 6f285ae Compare October 15, 2025 19:03
@renovate renovate bot changed the title fix(deps): update starter-peer-deps chore(deps): update starter-peer-deps Oct 15, 2025
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch 2 times, most recently from 9155074 to 4038815 Compare October 16, 2025 22:14
@renovate renovate bot changed the title chore(deps): update starter-peer-deps fix(deps): update starter-peer-deps Oct 16, 2025
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch from 4038815 to 6d55e99 Compare October 17, 2025 22:04
@renovate renovate bot changed the title fix(deps): update starter-peer-deps chore(deps): update starter-peer-deps Oct 17, 2025
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch from 6d55e99 to 9b8b34d Compare October 19, 2025 22:12
@renovate renovate bot changed the title chore(deps): update starter-peer-deps fix(deps): update starter-peer-deps Oct 19, 2025
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch 2 times, most recently from 27723b3 to fdf354c Compare October 20, 2025 17:50
@renovate renovate bot changed the title fix(deps): update starter-peer-deps chore(deps): update starter-peer-deps Oct 20, 2025
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch 3 times, most recently from 4d11b82 to eee39e6 Compare October 21, 2025 22:16
@renovate renovate bot changed the title chore(deps): update starter-peer-deps fix(deps): update starter-peer-deps Oct 21, 2025
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch 3 times, most recently from d24a5fb to 6d5a1f9 Compare October 28, 2025 22:59
@renovate renovate bot changed the title chore(deps): update starter-peer-deps fix(deps): update starter-peer-deps Oct 28, 2025
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch 4 times, most recently from 8eb2ed0 to b5f2a08 Compare October 29, 2025 02:43
@justinvdm justinvdm changed the base branch from main to fix-ci-checks October 29, 2025 02:53
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch from b5f2a08 to 5191bd4 Compare October 29, 2025 02:57
@renovate renovate bot changed the base branch from fix-ci-checks to main October 29, 2025 02:58
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch from 5191bd4 to c1cea68 Compare October 29, 2025 03:49
@justinvdm justinvdm changed the base branch from main to fix-ci-checks October 29, 2025 03:54
@justinvdm justinvdm changed the base branch from fix-ci-checks to main October 29, 2025 04:07
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch 8 times, most recently from eab7bc9 to b4a5662 Compare October 30, 2025 01:10
@renovate renovate bot changed the title fix(deps): update starter-peer-deps chore(deps): update starter-peer-deps Oct 30, 2025
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch 2 times, most recently from ee8e0ec to bd58f8e Compare October 31, 2025 21:15
@renovate renovate bot changed the title chore(deps): update starter-peer-deps fix(deps): update starter-peer-deps Oct 31, 2025
@renovate renovate bot force-pushed the renovate/starter-peer-deps branch from bd58f8e to 54f144e Compare November 1, 2025 18:39
@justinvdm justinvdm merged commit a522f34 into main Nov 2, 2025
6 checks passed
@renovate renovate bot deleted the renovate/starter-peer-deps branch November 2, 2025 03:31
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.

1 participant