Skip to content

chore(deps): update dependency wrangler to v3.114.13 #3392

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 May 27, 2025

This PR contains the following updates:

Package Change Age Confidence
wrangler (source) 3.114.7 -> 3.114.13 age confidence

Release Notes

cloudflare/workers-sdk (wrangler)

v3.114.13

Compare Source

Patch Changes
  • #​10015 b5d9bb0 Thanks @​dario-piotrowicz! - fix wrangler dev logs being logged on the incorrect level in some cases

    currently the way wrangler dev prints logs is faulty, for example the following code

    console.error("this is an error");
    console.warn("this is a warning");
    console.debug("this is a debug");

    inside a worker would cause the following logs:

    ✘ [ERROR] this is an error
    
    ✘ [ERROR] this is a warning
    
    this is a debug
    

    (note that the warning is printed as an error and the debug log is printed even if by default it should not)

    the changes here make sure that the logs are instead logged to their correct level, so for the code about the following will be logged instead:

    ✘ [ERROR] this is an error
    
    ▲ [WARNING] this is a warning
    

    (running wrangler dev with the --log-level=debug flag will also cause the debug log to be included as well)

  • #​10187 f480ec7 Thanks @​workers-devprod! - Deleting when Pages project binds to worker requires confirmation

  • #​10182 1f686ef Thanks @​devin-ai-integration! - fix: report startup errors before workerd profiling

  • #​10226 989e17e Thanks @​petebacondarwin! - Enforce 64-character limit for Workflow binding names locally to match production validation

  • #​10216 76d3002 Thanks @​devin-ai-integration! - Add macOS version validation to prevent EPIPE errors on unsupported macOS versions (below 13.5). Miniflare and C3 fail hard while Wrangler shows warnings but continues execution.

  • #​10261 8c38b65 Thanks @​petebacondarwin! - fix: strip ANSI escape codes from log files to improve readability and parsing

  • #​10171 0d73563 Thanks @​devin-ai-integration! - Handle UTF BOM in config files - detect and remove UTF-8 BOMs, error on unsupported BOMs (UTF-16, UTF-32)

  • Updated dependencies [b5d9bb0, 76d3002]:

v3.114.12

Compare Source

Patch Changes

v3.114.11

Compare Source

Patch Changes
  • #​9685 cbea64b Thanks @​WillTaylorDev! - Select only successfully deployed deployments when tailing.

  • #​9776 6e09672 Thanks @​vicb! - Cap the number of errors and warnings for bulk KV put to avoid consuming too much memory

  • #​9694 dacfc35 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();
  • #​9807 4dd026b Thanks @​penalosa! - Better messaging for account owned tokens in wrangler whoami

v3.114.10

Compare Source

Patch Changes

v3.114.9

Compare Source

Patch Changes

v3.114.8

Compare Source

Patch Changes
  • #​9086 a2a56c8 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.

  • #​9037 d0d0025 Thanks @​CarmenPopoviciu! - fix: When generating Env types, set type of version metadata binding to WorkerVersionMetadata. This means it now correctly includes the timestamp field.

  • #​9093 2f2f7ba Thanks @​CarmenPopoviciu! - fix: Validate input file for Vectorize inserts

  • Updated dependencies [fc04292, a01adca]:


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 enabled auto-merge (squash) May 27, 2025 10:07
@github-actions github-actions bot added the type: chore Routine tasks like conversions, reorganization, and maintenance work. label May 27, 2025
Copy link

Action required: PR inactive for 5 days.
Status update or closure in 10 days.

@github-actions github-actions bot added the state: inactive No current action needed/possible; issue fixed, out of scope, or superseded. label Jun 11, 2025
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 0be4710 to 5cfb170 Compare June 25, 2025 11:33
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.9 chore(deps): update dependency wrangler to v3.114.10 Jun 25, 2025
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 5cfb170 to 341de8d Compare July 9, 2025 16:50
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.10 chore(deps): update dependency wrangler to v3.114.11 Jul 9, 2025
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 341de8d to 125315c Compare July 28, 2025 17:51
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.11 chore(deps): update dependency wrangler to v3.114.12 Jul 28, 2025
@github-actions github-actions bot removed the state: inactive No current action needed/possible; issue fixed, out of scope, or superseded. label Jul 28, 2025
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 125315c to ed21d29 Compare August 7, 2025 17:36
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.12 chore(deps): update dependency wrangler to v3.114.13 Aug 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: chore Routine tasks like conversions, reorganization, and maintenance work.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants