Skip to content

chore(deps): update dependency wrangler to v3.114.14 #114

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 Mar 5, 2024

This PR contains the following updates:

Package Change Age Confidence
wrangler (source) 3.95.0 -> 3.114.14 age confidence

Release Notes

cloudflare/workers-sdk (wrangler)

v3.114.14

Compare Source

Patch Changes
  • #​10330 dab7683 Thanks @​petebacondarwin! - Do not attempt to update queue producer settings when deploying a Worker with a queue binding

    Previously, each deployed Worker would update a subset of the queue producer's settings for each queue binding, which could result in broken queue producers or at least conflicts where different Workers tried to set different producer settings on a shared queue.

  • #​10233 a00a124 Thanks @​veggiedefender! - Increase the maxBuffer size for capnp uploads

  • #​10228 77a4364 Thanks @​dario-piotrowicz! - fix NonRetryableError thrown with an empty error message not stopping workflow retries locally

  • Updated dependencies []:

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

v3.114.7

Compare Source

Patch Changes
  • #​8955 b7eba92 Thanks @​workers-devprod! - When Wrangler encounters an error, if the Bun runtime is detected it will now warn users that Wrangler does not officially support Bun.

  • #​8928 8bcb257 Thanks @​dario-piotrowicz! - fix redirected config env validation breaking wrangler pages commands

    a validation check has recently been introduced to make wrangler error on
    deploy commands when an environment is specified and a redirected configuration
    is in use (the reason being that redirected configurations should not include
    any environment), this check is problematic with pages commands where the
    "production" environment is anyways set by default, to address this the validation
    check is being relaxed here on pages commands

v3.114.6

Compare Source

Patch Changes
  • #​8783 7bcf352 Thanks @​petebacondarwin! - Improve error message when request to obtain membership info fails

    Wrangler now informs user that specific permission might be not granted when fails to obtain membership info. The same information is provided when Wrangler is unable to fetch user's email.

  • #​8866 db673d6 Thanks @​edmundhung! - improve error message when redirected config contains environments

    this change improves that validation error message that users see
    when a redirected config file contains environments, by:

    • cleaning the message formatting and displaying the
      offending environments in a list
    • prompting the user to report the issue to the author
      of the tool which has generated the config
  • #​8600 91cf028 Thanks @​workers-devprod! - add validation to redirected configs in regards to environments

    add the following validation behaviors to wrangler deploy commands, that relate
    to redirected configs (i.e. config files specified by .wrangler/deploy/config.json files):

    • redirected configs are supposed to be already flattened configurations without any
      environment (i.e. a build tool should generate redirected configs already targeting specific
      environments), so if wrangler encounters a redirected config with some environments defined
      it should error
    • given the point above, specifying an environment (--env=my-env) when using redirected
      configs is incorrect, so these environments should be ignored and a warning should be
      presented to the user

v3.114.5

Compare Source

Patch Changes

v3.114.4

Compare Source

Patch Changes

v3.114.3

Compare Source

Patch Changes

v3.114.2

Compare Source

Patch Changes

v3.114.1

Compare Source

Patch Changes
  • #​8383 8d6d722 Thanks @​matthewdavidrodgers! - Make kv bulk put --local respect base64:true

    The bulk put api has an optional "base64" boolean property for each key.
    Before storing the key, the value should be decoded from base64.

    For real (remote) kv, this is handled by the rest api. For local kv, it
    seems the base64 field was ignored, meaning encoded base64 content was
    stored locally rather than the raw values.

    To fix, we need to decode each value before putting to the local
    miniflare namespace when base64 is true.

  • #​8273 e3efd68 Thanks @​penalosa! - Support AI, Vectorize, and Images bindings when using @cloudflare/vite-plugin

  • #​8427 a352798 Thanks @​vicb! - update unenv-preset dependency to fix bug with Performance global

    Fixes #​8407
    Fixes #​8409
    Fixes #​8411

  • #​8390 53e6323 Thanks @​GregBrimble! - Parse and apply metafiles (_headers and _redirects) in wrangler dev for Workers Assets

  • #​8392 4d9d9e6 Thanks @​jahands! - fix: retry zone and route lookup API calls

    In rare cases, looking up Zone or Route API calls may fail due to transient errors. This change improves the reliability of wrangler deploy when these errors occur.

    Also fixes a rare issue where concurrent API requests may fail without correctly throwing an error which may cause a deployment to incorrectly appear successful.

  • Updated dependencies [8242e07, 53e6323]:

v3.114.0

Compare Source

Minor Changes
  • #​8367 7b6b0c2 Thanks @​jonesphillip! - Deprecated --id parameter in favor of --name for both the wrangler r2 bucket lifecycle and wrangler r2 bucket lock commands

v3.113.0

Compare Source

Minor Changes
Patch Changes
  • #​8338 2d40989 Thanks @​GregBrimble! - feat: Upload _headers and _redirects if present with Workers Assets as part of wrangler deploy and wrangler versions upload.

  • #​8288 cf14e17 Thanks @​CarmenPopoviciu! - feat: Add assets Proxy Worker skeleton in miniflare

    This commit implements a very basic Proxy Worker skeleton, and wires it in the "pipeline" miniflare creates for assets. This Worker will be incrementally worked on, but for now, the current implementation will forward all incoming requests to the Router Worker, thus leaving the current assets behaviour in local dev, the same.

    This is an experimental feature available under the --x-assets-rpc flag: wrangler dev --x-assets-rpc.

  • #​8216 af9a57a Thanks @​ns476! - Support Images binding in wrangler types

  • #​8304 fbba583 Thanks @​jahands! - chore: add concurrency and caching for Zone IDs and Workers routes lookups

    Workers with many routes can result in duplicate Zone lookups during deployments, making deployments unnecessarily slow. This compounded by the lack of concurrency when making these API requests.

    This change deduplicates these requests and adds concurrency to help speed up deployments.

  • Updated dependencies [2d40989, da568e5, cf14e17, 79c7810]:

v3.112.0

Compare Source

Minor Changes
  • #​8256 f59d95b Thanks @​jbwcloudflare! - Add two new Queues commands: pause-delivery and resume-delivery

    These new commands allow users to pause and resume the delivery of messages to Queue Consumers

Patch Changes

v3.111.0

Compare Source

Minor Changes
Patch Changes

v3.110.0

Compare Source

Minor Changes
  • #​8253 6dd1e23 Thanks @​CarmenPopoviciu! - Add --cwd global argument to the wrangler CLI to allow changing the current working directory before running any command.
Patch Changes

v3.109.3

Compare Source

Patch Changes

v3.109.2

Compare Source

Patch Changes

v3.109.1

Compare Source

Patch Changes

v3.109.0

Compare Source

Minor Changes
  • #​8120 3fb801f Thanks @​sdnts! - Add a new update subcommand for Queues to allow updating Queue settings

  • #​8120 3fb801f Thanks @​sdnts! - Allow overriding message retention duration when creating Queues

  • #​8026 542c6ea Thanks @​penalosa! - Add --outfile to wrangler deploy for generating a worker bundle.

    This is an advanced feature that most users won't need to use. When set, Wrangler will output your built Worker bundle in a Cloudflare specific format that captures all information needed to deploy a Worker using the Worker Upload API

  • #​8026 542c6ea Thanks @​penalosa! - Add a wrangler check startup command to generate a CPU profile of your Worker's startup phase.

    This can be imported into Chrome DevTools or opened directly in VSCode to view a flamegraph of your Worker's startup phase. Additionally, when a Worker deployment fails with a startup time error Wrangler will automatically generate a CPU profile for easy investigation.

    Advanced usage:

    • --args: to customise the way wrangler check startup builds your Worker for analysis, provide the exact arguments you use when deploying your Worker with wrangler deploy. For instance, if you deploy your Worker with wrangler deploy --no-bundle, you should use wrangler check startup --args="--no-bundle" to profile the startup phase.
    • --worker-bundle: if you don't use Wrangler to deploy your Worker, you can use this argument to provide a Worker bundle to analyse. This should be a file path to a serialised multipart upload, with the exact same format as the API expects: https://developers.cloudflare.com/api/resources/workers/subresources/scripts/methods/update/
Patch Changes
  • #​8112 fff677e Thanks @​penalosa! - When reporting errors to Sentry, Wrangler will now include the console output as additional metadata

  • #​8120 3fb801f Thanks @​sdnts! - Check bounds when overriding delivery delay when creating Queues

  • #​7950 4db1fb5 Thanks @​cmackenzie1! - Add local binding support for Worker Pipelines

  • #​8119 1bc60d7 Thanks @​penalosa! - Output correct config format from wrangler d1 create. Previously, this command would always output TOML, regardless of the config file format

  • #​8130 1aa2a91 Thanks @​emily-shen! - Include default values for wrangler types --path and --x-include-runtime in telemetry

    User provided strings are still left redacted as always.

  • #​8061 35710e5 Thanks @​emily-shen! - fix: respect WRANGLER_LOG in wrangler dev

    Previously, --log-level=debug was the only way to see debug logs in wrangler dev, which was unlike all other commands.

  • Updated dependencies [4db1fb5]:

v3.108.1

Compare Source

Patch Changes

v3.108.0

Compare Source

Minor Changes
  • #​7990 b1966df Thanks @​cmsparks! - Add WRANGLER_CI_OVERRIDE_NAME for Workers CI

  • #​8028 b2dca9a Thanks @​emily-shen! - feat: Also log when no bindings are found.

    We currently print a worker's bindings during dev, versions upload and deploy. This just also prints something when there's no bindings found, in case you were expecting bindings.

  • #​8037 71fd250 Thanks @​WillTaylorDev! - Provides unsafe.metadata configurations when using wrangler versions secret put.

Patch Changes
  • #​8058 1f80d69 Thanks @​WillTaylorDev! - Bugfix: Modified versions secret put to inherit all known bindings, which circumvents a limitation in the API which does not return all fields for all bindings.

  • #​7986 88514c8 Thanks @​andyjessop! - docs: clarifies that local resources are "simulated locally" or "connected to remote resource", and adds console messages to help explain local dev

  • #​8008 9d08af8 Thanks @​ns476! - Add support for Images bindings (in private beta for now), with optional local support for platforms where Sharp is available.

  • #​7769 6abe69c Thanks @​cmackenzie1! - Adds the following new option for wrangler pipelines create and wrangler pipelines update commands:

    --cors-origins           CORS origin allowlist for HTTP endpoint (use * for any origin)  [array]
    
  • #​7290 0c0374c Thanks @​emily-shen! - fix: add support for workers with assets when running multiple workers in one wrangler dev instance

    https://github.com/cloudflare/workers-sdk/pull/7251 added support for running multiple Workers in one wrangler dev/miniflare session. e.g. wrangler dev -c wrangler.toml -c ../worker2/wrangler.toml, which among other things, allowed cross-service RPC to Durable Objects.

    However this did not work in the same way as production when there was a Worker with assets - this PR should fix that.

  • #​7769 6abe69c Thanks @​cmackenzie1! - Rename wrangler pipelines <create|update> flags

    The following parameters have been renamed:

    Previous Name New Name
    access-key-id r2-access-key-id
    secret-access-key r2-secret-access-key
    transform transform-worker
    r2 r2-bucket
    prefix r2-prefix
    binding enable-worker-binding
    http enable-http
    authentication require-http-auth
    filename file-template
    filepath partition-template
  • #​8012 c412a31 Thanks @​mtlemilio! - Use fetchPagedListResult when listing Hyperdrive configs from the API

    This fixes an issue where only 20 configs were being listed.

  • #​8077 60310cd Thanks @​emily-shen! - feat: add telemetry to experimental auto-provisioning

  • Updated dependencies [c80dbd8, 0c0374c]:

v3.107.3

Compare Source

Patch Changes

v3.107.2

Compare Source

Patch Changes

v3.107.1

Compare Source

Patch Changes

v3.107.0

Compare Source

Minor Changes
Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

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

Copy link

changeset-bot bot commented Mar 5, 2024

⚠️ No Changeset found

Latest commit: afee5be

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from e6dbd7e to 9d328f6 Compare March 7, 2024 16:21
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.31.0 chore(deps): update dependency wrangler to v3.32.0 Mar 7, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.32.0 chore(deps): update dependency wrangler to v3.33.0 Mar 12, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.33.0 chore(deps): update dependency wrangler to v3.34.0 Mar 14, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.34.0 chore(deps): update dependency wrangler to v3.34.2 Mar 14, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.34.2 chore(deps): update dependency wrangler to v3.35.0 Mar 19, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.35.0 chore(deps): update dependency wrangler to v3.36.0 Mar 20, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.36.0 chore(deps): update dependency wrangler to v3.37.0 Mar 22, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.37.0 chore(deps): update dependency wrangler to v3.38.0 Mar 26, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.38.0 chore(deps): update dependency wrangler to v3.39.0 Mar 27, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.39.0 chore(deps): update dependency wrangler to v3.40.0 Mar 29, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.40.0 chore(deps): update dependency wrangler to v3.41.0 Mar 29, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.41.0 chore(deps): update dependency wrangler to v3.42.0 Apr 1, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.42.0 chore(deps): update dependency wrangler to v3.43.0 Apr 2, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.43.0 chore(deps): update dependency wrangler to v3.44.0 Apr 2, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.44.0 chore(deps): update dependency wrangler to v3.45.0 Apr 3, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.45.0 chore(deps): update dependency wrangler to v3.46.0 Apr 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.46.0 chore(deps): update dependency wrangler to v3.47.0 Apr 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.47.0 chore(deps): update dependency wrangler to v3.45.0 Apr 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.45.0 chore(deps): update dependency wrangler to v3.47.1 Apr 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.47.1 chore(deps): update dependency wrangler to v3.48.0 Apr 5, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.48.0 chore(deps): update dependency wrangler to v3.49.0 Apr 10, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.49.0 chore(deps): update dependency wrangler to v3.50.0 Apr 11, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.50.0 chore(deps): update dependency wrangler to v3.51.0 Apr 17, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.51.0 chore(deps): update dependency wrangler to v3.51.2 Apr 18, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.51.2 chore(deps): update dependency wrangler to v3.52.0 Apr 24, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.52.0 chore(deps): update dependency wrangler to v3.53.0 Apr 30, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.53.0 chore(deps): update dependency wrangler to v3.53.1 May 2, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.53.1 chore(deps): update dependency wrangler to v3.55.0 May 9, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.113.0 chore(deps): update dependency wrangler to v3.114.0 Mar 6, 2025
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from b083a30 to 0e6c4d2 Compare March 10, 2025 13:05
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.0 chore(deps): update dependency wrangler to v3.112.0 Mar 10, 2025
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 0e6c4d2 to 55e0739 Compare March 11, 2025 16:31
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.112.0 chore(deps): update dependency wrangler to v3.114.1 Mar 11, 2025
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 55e0739 to 88971ff Compare March 18, 2025 00:55
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.1 chore(deps): update dependency wrangler to v3.114.2 Mar 18, 2025
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 88971ff to 559d987 Compare March 26, 2025 21:09
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.2 chore(deps): update dependency wrangler to v3.114.3 Mar 26, 2025
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 559d987 to 21e8285 Compare April 1, 2025 09:25
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.3 chore(deps): update dependency wrangler to v3.114.4 Apr 3, 2025
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 21e8285 to 2db9595 Compare April 8, 2025 16:36
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.4 chore(deps): update dependency wrangler to v3.114.5 Apr 9, 2025
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.5 chore(deps): update dependency wrangler to v3.114.6 Apr 14, 2025
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.6 chore(deps): update dependency wrangler to v3.114.7 Apr 22, 2025
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.7 chore(deps): update dependency wrangler to v3.114.8 May 2, 2025
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.8 chore(deps): update dependency wrangler to v3.114.9 May 22, 2025
@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 2 times, most recently from faed225 to 1c13f0c Compare July 9, 2025 18:37
@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 1c13f0c to f337430 Compare July 28, 2025 19:11
@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
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch 2 times, most recently from 3b15dae to 12007f7 Compare August 7, 2025 18:53
@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
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 12007f7 to a79e9cf Compare August 10, 2025 14:37
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from a79e9cf to afee5be Compare August 20, 2025 11:45
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.114.13 chore(deps): update dependency wrangler to v3.114.14 Aug 20, 2025
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