Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore(deps): update dependency wrangler to v3.91.0 #37

Merged
merged 1 commit into from
Nov 27, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 4, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
wrangler (source) 3.63.0 -> 3.91.0 age adoption passing confidence

Release Notes

cloudflare/workers-sdk (wrangler)

v3.91.0

Compare Source

Minor Changes
  • #​7230 6fe9533 Thanks @​penalosa! - Turn on wrangler.json(c) support by default

    Wrangler now supports both JSON (wrangler.json) and TOML (wrangler.toml) for it's configuration file. The format of Wrangler's configuration file is exactly the same across both languages, except that the syntax is JSON rather than TOML. e.g.

    name = "worker-ts"
    main = "src/index.ts"
    compatibility_date = "2023-05-04"

    would be interpreted the same as the equivalent JSON

    {
      "name": "worker-ts",
      "main": "src/index.ts",
      "compatibility_date": "2023-05-04"
    }
  • #​7330 219109a Thanks @​jonesphillip! - Added Oceania (oc) location hint as acceptable choice when creating an R2 bucket.

  • #​7227 02a0e1e Thanks @​taylorlee! - Add preview_urls toggle to wrangler.toml

    The current Preview URLs (beta) feature routes to version preview urls based on the status of the workers_dev config value. Beta users have requested the ability to enable deployment urls and preview urls separately on workers.dev, and the new previews_enabled field of the enable-subdomain API will allow that. This change separates the workers_dev and preview_urls behavior during wrangler triggers deploy and wrangler versions upload. preview_urls defaults to true, and does not implicitly depend on routes the way workers_dev does.

  • #​7308 1b1d01a Thanks @​gpanders! - Add a default image for cloudchamber create and modify commands

  • #​7232 7da76de Thanks @​toddmantell! - feat: implement queues info command

    This command allows users to get information on individual queues.

    To run this command use the queues info command with the name of a queue in the user's account.

    wrangler queues info my-queue-name

Patch Changes

v3.90.0

Compare Source

Minor Changes
Patch Changes

v3.89.0

Compare Source

Minor Changes
Patch Changes
  • #​7314 a30c805 Thanks @​Ankcorn! - Fix observability.logs.enabled validation

  • #​7285 fa21312 Thanks @​penalosa! - Rename directory to projectRoot and ensure it's relative to the wrangler.toml. This fixes a regression which meant that .wrangler temporary folders were inadvertently generated relative to process.cwd() rather than the location of the wrangler.toml file. It also renames directory to projectRoot, which affects the `unstable_startWorker() interface.

  • Updated dependencies [563439b]:

    • miniflare@3.20241106.1

v3.88.0

Compare Source

Minor Changes
  • #​7173 b6cbfbd Thanks @​Ankcorn! - Adds [observability.logs] settings to wrangler. This setting lets developers control the settings for logs as an independent dataset enabling more dataset types in the future. The most specific setting will win if any of the datasets are not enabled.

    It also adds the following setting to the logs config

    • invocation_logs - set to false to disable invocation logs. Defaults to true.
    [observability.logs]
    enabled = true
    invocation_logs = false
  • #​7207 edec415 Thanks @​jonesphillip! - Added r2 bucket lifecycle command to Wrangler including list, add, remove, set

Patch Changes

v3.87.0

Compare Source

Minor Changes
Patch Changes

v3.86.1

Compare Source

Patch Changes

v3.86.0

Compare Source

Minor Changes
Patch Changes

v3.85.0

Compare Source

Minor Changes
  • #​7105 a5f1779 Thanks @​jonesphillip! - Added the ability to list, add, remove, and update R2 bucket custom domains.

  • #​7132 89f6274 Thanks @​gabivlj! - Event messages are capitalized, images of wrong architectures properly show the error in cloudchamber create
    When a new "health" enum is introduced, wrangler cloudchamber list won't crash anymore.
    Update Cloudchamber schemas.

  • #​7121 2278616 Thanks @​bruxodasilva! - Added pause and resume commands to manage Workflows and hidded unimplemented delete command

Patch Changes

v3.84.1

Compare Source

Patch Changes

v3.84.0

Compare Source

Minor Changes
Patch Changes
  • #​7091 68a2a84 Thanks @​taylorlee! - fix: synchronize observability settings during wrangler versions deploy

    When running wrangler versions deploy, Wrangler will now update observability settings in addition to logpush and tail_consumers. Unlike wrangler deploy, it will not disable observability when observability is undefined in wrangler.toml.

  • #​7080 924ec18 Thanks @​vicb! - chore(wrangler): update unenv dependency version

  • #​7097 8ca4b32 Thanks @​emily-shen! - fix: remove deprecation warnings for wrangler init

    We will not be removing wrangler init (it just delegates to create-cloudflare now). These warnings were causing confusion for users as it wrangler init is still recommended in many places.

  • #​7073 656a444 Thanks @​penalosa! - Internal refactor to remove es-module-lexer and support wrangler types for Workers with Durable Objects & JSX

  • #​7024 bd66d51 Thanks @​xortive! - fix: make individual parameters work for wrangler hyperdrive create when not using HoA

    wrangler hyperdrive create individual parameters were not setting the database name correctly when calling the api.

  • #​7024 bd66d51 Thanks @​xortive! - refactor: use same param parsing code for wrangler hyperdrive create and wrangler hyperdrive update

    ensures that going forward, both commands support the same features and have the same names for config flags

v3.83.0

Compare Source

Minor Changes
  • #​7000 1de309b Thanks @​jkoe-cf! - feature: allowing users to specify a description when creating an event notification rule
Patch Changes

v3.82.0

Compare Source

Minor Changes
Patch Changes
  • #​5737 9bf51d6 Thanks @​penalosa! - Validate duplicate bindings across all binding types

  • #​7010 1f6ff8b Thanks @​vicb! - chore: update unenv dependency version

  • #​7012 244aa57 Thanks @​RamIdeas! - Add support for Workflow bindings (in deployments, not yet in local dev)

    To bind to a workflow, add a workflows section in your wrangler.toml:

    [[workflows]]
    binding = "WORKFLOW"
    name = "my-workflow"
    class_name = "MyDemoWorkflow"

    and export an entrypoint (e.g. MyDemoWorkflow) in your script:

    import { WorkflowEntrypoint } from "cloudflare:workers";
    
    export class MyDemoWorkflow extends WorkflowEntrypoint<Env, Params> {...}
  • #​7039 e44f496 Thanks @​penalosa! - Only show dev registry connection status in local dev

  • #​7037 e1b93dc Thanks @​emily-shen! - fix: ask for confirmation before creating a new Worker when uploading secrets

    Previously, wrangler secret put KEY --name non-existent-worker would automatically create a new Worker with the name non-existent-worker. This fix asks for confirmation before doing so (if running in an interactive context). Behaviour in non-interactive/CI contexts should be unchanged.

  • #​7015 48152d6 Thanks @​RamIdeas! - add wrangler workflows ... commands

  • #​7041 045787b Thanks @​CarmenPopoviciu! - Show wrangler pages dev --proxy warning

    On Node.js 17+, wrangler will default to fetching only the IPv6 address. With these changes we warn users that the process listening on the port specified via --proxy should be configured for IPv6.

  • #​7018 127615a Thanks @​emily-shen! - fix: log successful runs of d1 execute in local

  • #​6970 a8ca700 Thanks @​oliy! - Add HTTP authentication options for Workers Pipelines

  • #​7005 6131ef5 Thanks @​edmundhung! - fix: prevent users from passing multiple arguments to non array options

  • #​7046 f9d5fdb Thanks @​oliy! - Minor change to 3rd party API shape for Workers Pipelines

  • #​6972 c794935 Thanks @​penalosa! - Add (local) indicator to bindings using local data

  • Updated dependencies [809193e]:

    • miniflare@3.20241018.0

v3.81.0

Compare Source

Minor Changes
Patch Changes
  • #​6963 a5ac45d Thanks @​RamIdeas! - fix: make wrangler dev --remote respect wrangler.toml's account_id property.

    This was a regression in the --x-dev-env flow recently turned on by default.

  • #​6996 b8ab809 Thanks @​emily-shen! - fix: improve error messaging when accidentally using Workers commands in Pages project

    If we detect a Workers command used with a Pages project (i.e. wrangler.toml contains pages_output_build_dir), error with Pages version of command rather than "missing entry-point" etc.

v3.80.5

Compare Source

Patch Changes

v3.80.4

Compare Source

Patch Changes

v3.80.3

Compare Source

Patch Changes

v3.80.2

Compare Source

Patch Changes
  • #​6923 1320f20 Thanks @​andyjessop! - chore: adds eslint-disable for ESLint error on empty typescript interface in workers-configuration.d.ts

v3.80.1

Compare Source

Patch Changes

v3.80.0

Compare Source

Minor Changes
Patch Changes
  • #​6854 04a8fed Thanks @​penalosa! - chore: Include serialised FormData in debug logs

  • #​6879 b27d8cb Thanks @​petebacondarwin! - fix: the docs command should not crash if given search terms

    Fixes a regression accidentally introduced by #​3735.

  • #​6873 b123f43 Thanks @​zwily! - fix: reduce logging noise during wrangler dev with static assets

    Updates to static assets are accessible by passing in --log-level="debug" but otherwise hidden.

  • #​6881 7ca37bc Thanks @​RamIdeas! - fix: custom builds outputting files in assets watched directory no longer cause the custom build to run again in an infinite loop

  • #​6872 b2d094e Thanks @​petebacondarwin! - fix: render a helpful build error if a Service Worker mode Worker has imports

    A common mistake is to forget to export from the entry-point of a Worker, which causes
    Wrangler to infer that we are in "Service Worker" mode.

    In this mode, imports to external modules are not allowed.
    Currently this only fails at runtime, because our esbuild step converts these imports to an internal __require() call that throws an error.
    The error message is misleading and does not help the user identify the cause of the problem.
    This is particularly tricky where the external imports are added by a library or our own node.js polyfills.

    Fixes #​6648

  • #​6792 27e8385 Thanks @​penalosa! - fix: Handle more module declaration cases

  • #​6838 7dbd0c8 Thanks @​GregBrimble! - fix: Improve static asset upload messaging

v3.79.0

Compare Source

Minor Changes
  • #​6801 6009bb4 Thanks @​RamIdeas! - feat: implement retries within wrangler deploy and wrangler versions upload to workaround spotty network connections and service flakes
Patch Changes

v3.78.12

Compare Source

Patch Changes

v3.78.11

Compare Source

Patch Changes

v3.78.10

Compare Source

Patch Changes

v3.78.9

Compare Source

Patch Changes

v3.78.8

Compare Source

Patch Changes
  • #​6791 74d719f Thanks @​penalosa! - fix: Add missing binding to init --from-dash

  • #​6728 1ca313f Thanks @​emily-shen! - fix: remove filepath encoding on asset upload and handle sometimes-encoded characters

    Some characters like [ ] @​ are encoded by encodeURIComponent() but are often requested at an unencoded URL path.
    This change will make assets with filenames with these characters accessible at both the encoded and unencoded paths,
    but to use the encoded path as the canonical one, and to redirect requests to the canonical path if necessary.

  • #​6798 7d7f19a Thanks @​emily-shen! - fix: error if an asset binding is provided without a Worker script

  • Updated dependencies [1ca313f]:

v3.78.7

Compare Source

Patch Changes
  • #​6775 ecd82e8 Thanks @​CarmenPopoviciu! - fix: Support switching between static and dynamic Workers

    This commit fixes the current behaviour of watch mode for Workers with assets, and adds support for switching between static and dynamic Workers within a single wrangler dev session.

  • #​6762 2840b9f Thanks @​petebacondarwin! - fix: error if a user inadvertently uploads a Pages _workers.js file or directory as an asset

  • #​6778 61dd93a Thanks @​CarmenPopoviciu! - fix: Error if Workers + Assets are run in remote mode

    Workers + Assets are currently supported only in local mode. We should throw an error if users attempt to use Workers with assets in remote mode.

  • #​6782 7655505 Thanks @​vicb! - chore: update unenv dependency version

  • #​6777 9649dbc Thanks @​penalosa! - chore: Update CI messaging

  • #​6779 3e75612 Thanks @​emily-shen! - fix: include asset binding in wrangler types

v3.78.6

Compare Source

Patch Changes
  • #​6743 b45e326 Thanks @​petebacondarwin! - fix: ability to build tricky Node.js compat scenario Workers

    Adds support for non-default build conditions and platform via the WRANGLER_BUILD_CONDITIONS and WRANGLER_BUILD_PLATFORM flags.

    Fixes https://github.com/cloudflare/workers-sdk/issues/6742

  • #​6776 02de103 Thanks @​zebp! - fix: disable observability on deploy if not explicitly defined in config

    When deploying a Worker that has observability enabled in the deployed version but not specified in the wrangler.toml Wrangler will now set observability to disabled for the new version to match the wrangler.toml as the source of truth.

  • Updated dependencies [[2ddbb65](https:


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.

@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 1cb1cc7 to 2e0059c Compare July 9, 2024 18:58
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.63.1 chore(deps): update dependency wrangler to v3.63.2 Jul 9, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 2e0059c to 4924a05 Compare July 11, 2024 17:25
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.63.2 chore(deps): update dependency wrangler to v3.64.0 Jul 11, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 4924a05 to 34da998 Compare July 16, 2024 16:29
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.64.0 chore(deps): update dependency wrangler to v3.65.0 Jul 16, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch 2 times, most recently from 0fe9eb7 to cc54d52 Compare July 19, 2024 17:52
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.65.0 chore(deps): update dependency wrangler to v3.65.1 Jul 19, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from cc54d52 to 809c01b Compare July 23, 2024 16:17
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.65.1 chore(deps): update dependency wrangler to v3.66.0 Jul 23, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 809c01b to b36b6f8 Compare July 25, 2024 16:56
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.66.0 chore(deps): update dependency wrangler to v3.67.0 Jul 25, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from b36b6f8 to 7dc5855 Compare July 26, 2024 13:37
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.67.0 chore(deps): update dependency wrangler to v3.67.1 Jul 26, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 7dc5855 to a6d783d Compare August 1, 2024 12:35
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.67.1 chore(deps): update dependency wrangler to v3.68.0 Aug 1, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from a6d783d to b386247 Compare August 6, 2024 17:29
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.68.0 chore(deps): update dependency wrangler to v3.69.0 Aug 6, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from b386247 to e99baaf Compare August 6, 2024 19:46
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.69.0 chore(deps): update dependency wrangler to v3.69.1 Aug 6, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from e99baaf to 274ac1e Compare August 9, 2024 08:20
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.69.1 chore(deps): update dependency wrangler to v3.70.0 Aug 9, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 274ac1e to 83a0f94 Compare August 13, 2024 17:26
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.70.0 chore(deps): update dependency wrangler to v3.71.0 Aug 13, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 83a0f94 to 40802cc Compare August 16, 2024 11:40
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.71.0 chore(deps): update dependency wrangler to v3.72.0 Aug 16, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 40802cc to 9e4a324 Compare August 20, 2024 18:06
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.72.0 chore(deps): update dependency wrangler to v3.72.1 Aug 20, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 9e4a324 to 2d8d2f0 Compare August 22, 2024 17:04
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.80.5 chore(deps): update dependency wrangler to v3.81.0 Oct 17, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 5702e85 to aef66c2 Compare October 22, 2024 22:13
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.81.0 chore(deps): update dependency wrangler to v3.82.0 Oct 22, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from aef66c2 to ba75e57 Compare October 24, 2024 14:23
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.82.0 chore(deps): update dependency wrangler to v3.83.0 Oct 24, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from ba75e57 to 9d133e0 Compare October 30, 2024 19:57
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.83.0 chore(deps): update dependency wrangler to v3.84.0 Oct 30, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 9d133e0 to 23423d3 Compare October 31, 2024 20:47
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.84.0 chore(deps): update dependency wrangler to v3.84.1 Oct 31, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 23423d3 to e1acacf Compare November 6, 2024 18:44
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.84.1 chore(deps): update dependency wrangler to v3.85.0 Nov 6, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from e1acacf to 65c66f3 Compare November 8, 2024 17:10
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.85.0 chore(deps): update dependency wrangler to v3.86.0 Nov 8, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 65c66f3 to c831aab Compare November 11, 2024 17:18
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.86.0 chore(deps): update dependency wrangler to v3.86.1 Nov 11, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from c831aab to 74b0ef1 Compare November 14, 2024 18:20
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.86.1 chore(deps): update dependency wrangler to v3.87.0 Nov 14, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 74b0ef1 to 002da52 Compare November 19, 2024 18:38
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.87.0 chore(deps): update dependency wrangler to v3.88.0 Nov 19, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 002da52 to 5e66c7f Compare November 21, 2024 17:48
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.88.0 chore(deps): update dependency wrangler to v3.89.0 Nov 21, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 5e66c7f to 5b117ff Compare November 22, 2024 17:28
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.89.0 chore(deps): update dependency wrangler to v3.90.0 Nov 22, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 5b117ff to 20cc884 Compare November 26, 2024 20:11
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.90.0 chore(deps): update dependency wrangler to v3.91.0 Nov 26, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 20cc884 to 8ba7230 Compare November 27, 2024 08:31
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 8ba7230 to 3b11c58 Compare November 27, 2024 08:33
@pigri pigri merged commit 611fbde into main Nov 27, 2024
@pigri pigri deleted the renovate/wrangler-3.x branch November 27, 2024 08:56
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant