Skip to content
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

Update dependency wrangler to v3.84.1 #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 11, 2024

This PR contains the following updates:

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

Release Notes

cloudflare/workers-sdk (wrangler)

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

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

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

v3.78.5

Compare Source

Patch Changes
  • #​6744 e3136f9 Thanks @​petebacondarwin! - chore: update unenv dependency version

  • #​6749 9a06f88 Thanks @​CarmenPopoviciu! - fix: Throw error when attempting to configure Workers with assets and tail consumers

    Tail Workers are currently not supported for Workers with assets. This commit ensures we throw a corresponding error if users are attempting to configure tail_consumers via their configuration file, for a Worker with assets. This validation is applied for all wrangler dev, wrangler deploy, wrangler versions upload.

  • #​6746 0deb42b Thanks @​GregBrimble! - fix: Fix assets upload message to correctly report number of uploaded assets

  • #​6745 6dbbb88 Thanks @​jonesphillip! - fix: r2 bucket notification get <bucket_name> has been marked deprecated in favor of r2 bucket notification list <bucket_name> to reflect behavior.

  • Updated dependencies [2407c41]:

v3.78.4

Patch Changes

v3.78.3

Patch Changes

v3.78.2

Compare Source

Patch Changes

v3.78.1

Compare Source

Patch Changes

v3.78.0

Compare Source

Minor Changes
Patch Changes

v3.77.0

Compare Source

Minor Changes
  • #​6674 831f892 Thanks @​andyjessop! - feat: Added new [[pipelines]] bindings. This creates a new binding that allows sending events to
    the specified pipeline.

    Example:

    [[pipelines]]
    binding = "MY_PIPELINE"
    pipeline = "my-pipeline"

  • #​6668 88c40be Thanks @​zebp! - feature: add observability setting to wrangler.toml

    Adds the observability setting which provides your Worker with automatic persistent logs that can be searched, filtered, and queried directly from the Workers dashboard.

  • #​6679 2174127 Thanks @​jkoe-cf! - feat: adding option to specify a rule within the config to delete (if no rules are specified, all rules get deleted)

  • #​6666 4107f57 Thanks @​threepointone! - feat: support analytics engine in local/remote dev

    This adds "support" for analytics engine datasets for wrangler dev. Specifically, it simply mocks the AE bindings so that they exist while developing (and don't throw when accessed).

    This does NOT add support in Pages, though we very well could do so in a similar way in a followup.

  • #​6640 8527675 Thanks @​petebacondarwin! - feat: experimental workers assets can be ignored by adding a .assetsignore file

    This file can be added to the root of the assets directory that is to be uploaded alongside the Worker
    when using experimental_assets.

    The file follows the .gitignore syntax, and any matching paths will not be included in the upload.

  • #​6652 648cfdd Thanks @​bthwaites! - feat: Update R2 Get Event Notification response, display, and actions

  • #​6625 8dcd456 Thanks @​maxwellpeterson! - feature: Add support for placement hints

    Adds the hint field to smart placement configuration. When set, placement hints will be used to decide where smart-placement-enabled Workers are run.

  • #​6631 59a0072 Thanks @​emily-shen! - feat: Add config options 'html_handling' and 'not_found_handling' to experimental_asset field in wrangler.toml

Patch Changes

v3.76.0

Compare Source

Minor Changes
  • #​6126 18c105b Thanks @​IRCody! - feature: Add 'cloudchamber curl' command

    Adds a cloudchamber curl command which allows easy access to arbitrary cloudchamber API endpoints.

  • #​6649 46a91e7 Thanks @​andyjessop! - feature: Integrate the Cloudflare Pipelines product into wrangler.

    Cloudflare Pipelines is a product that handles the ingest of event streams
    into R2. This feature integrates various forms of managing pipelines.

    Usage:
    wrangler pipelines create <pipeline>: Create a new pipeline
    wrangler pipelines list: List current pipelines
    wrangler pipelines show <pipeline>: Show a pipeline configuration
    wrangler pipelines update <pipeline>: Update a pipeline
    wrangler pipelines delete <pipeline>: Delete a pipeline

    Examples:
    wrangler pipelines create my-pipeline --r2 MY_BUCKET --access-key-id "my-key" --secret-access-key "my-secret"
    wrangler pipelines show my-pipeline
    wrangler pipelines delete my-pipline

Patch Changes

v3.75.0

Compare Source

Minor Changes
  • #​6603 a197460 Thanks @​taylorlee! - feature: log version preview url when previews exist

    The version upload API returns a field indicating whether
    a preview exists for that version. If a preview exists and
    workers.dev is enabled, wrangler will now log the full
    URL on version upload.

    This does not impact wrangler deploy, which only prints the
    workers.dev route of the latest deployment.

  • #​6550 8d1d464 Thanks @​Pedr0Rocha! - feature: add RateLimit type generation to the ratelimit unsafe binding.

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.

@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 830d597 to 36300e1 Compare January 19, 2024 08:28
@renovate renovate bot changed the title Update dependency wrangler to v3.22.4 Update dependency wrangler to v3.23.0 Jan 19, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 36300e1 to c5d8e09 Compare January 24, 2024 17:50
@renovate renovate bot changed the title Update dependency wrangler to v3.23.0 Update dependency wrangler to v3.24.0 Jan 24, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from c5d8e09 to ea1d932 Compare January 27, 2024 05:54
@renovate renovate bot changed the title Update dependency wrangler to v3.24.0 Update dependency wrangler to v3.25.0 Jan 27, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from ea1d932 to 7f034fe Compare February 1, 2024 02:46
@renovate renovate bot changed the title Update dependency wrangler to v3.25.0 Update dependency wrangler to v3.26.0 Feb 1, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 7f034fe to f71d330 Compare February 8, 2024 05:11
@renovate renovate bot changed the title Update dependency wrangler to v3.26.0 Update dependency wrangler to v3.27.0 Feb 8, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from f71d330 to 2aa0c15 Compare February 10, 2024 05:50
@renovate renovate bot changed the title Update dependency wrangler to v3.27.0 Update dependency wrangler to v3.28.1 Feb 10, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 2aa0c15 to 4a997af Compare February 14, 2024 02:47
@renovate renovate bot changed the title Update dependency wrangler to v3.28.1 Update dependency wrangler to v3.28.2 Feb 14, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 4a997af to 7b88e8b Compare February 17, 2024 05:19
@renovate renovate bot changed the title Update dependency wrangler to v3.28.2 Update dependency wrangler to v3.28.3 Feb 17, 2024
@renovate renovate bot changed the title Update dependency wrangler to v3.28.3 Update dependency wrangler to v3.28.4 Feb 21, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 7b88e8b to df2af3c Compare February 24, 2024 08:56
@renovate renovate bot changed the title Update dependency wrangler to v3.28.4 Update dependency wrangler to v3.29.0 Feb 24, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from df2af3c to b95bb47 Compare February 28, 2024 02:37
@renovate renovate bot changed the title Update dependency wrangler to v3.29.0 Update dependency wrangler to v3.30.0 Feb 28, 2024
@renovate renovate bot changed the title Update dependency wrangler to v3.30.0 Update dependency wrangler to v3.30.1 Mar 1, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch 2 times, most recently from 806404e to 3f3e940 Compare March 7, 2024 20:41
@renovate renovate bot changed the title Update dependency wrangler to v3.30.1 Update dependency wrangler to v3.32.0 Mar 7, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 3f3e940 to 8b8c60c Compare March 13, 2024 02:35
@renovate renovate bot changed the title Update dependency wrangler to v3.32.0 Update dependency wrangler to v3.33.0 Mar 13, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 8b8c60c to 30fae46 Compare March 15, 2024 23:31
@renovate renovate bot changed the title Update dependency wrangler to v3.33.0 Update dependency wrangler to v3.34.2 Mar 15, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 30fae46 to aa65ee6 Compare March 21, 2024 20:55
@renovate renovate bot changed the title Update dependency wrangler to v3.78.9 Update dependency wrangler to v3.78.10 Sep 25, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 01aa78a to eac483c Compare September 27, 2024 12:24
@renovate renovate bot changed the title Update dependency wrangler to v3.78.10 Update dependency wrangler to v3.78.11 Sep 27, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from eac483c to 8958284 Compare September 27, 2024 18:55
@renovate renovate bot changed the title Update dependency wrangler to v3.78.11 Update dependency wrangler to v3.78.12 Sep 27, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 8958284 to 2ef784f Compare October 1, 2024 16:07
@renovate renovate bot changed the title Update dependency wrangler to v3.78.12 Update dependency wrangler to v3.79.0 Oct 1, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 2ef784f to 23a9ed9 Compare October 4, 2024 13:16
@renovate renovate bot changed the title Update dependency wrangler to v3.79.0 Update dependency wrangler to v3.80.0 Oct 4, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 23a9ed9 to 73e91ad Compare October 7, 2024 20:00
@renovate renovate bot changed the title Update dependency wrangler to v3.80.0 Update dependency wrangler to v3.80.1 Oct 7, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 73e91ad to 5bbf667 Compare October 8, 2024 18:16
@renovate renovate bot changed the title Update dependency wrangler to v3.80.1 Update dependency wrangler to v3.80.2 Oct 8, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 5bbf667 to 83c098a Compare October 10, 2024 21:16
@renovate renovate bot changed the title Update dependency wrangler to v3.80.2 Update dependency wrangler to v3.80.3 Oct 10, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 83c098a to f99038d Compare October 11, 2024 15:45
@renovate renovate bot changed the title Update dependency wrangler to v3.80.3 Update dependency wrangler to v3.80.4 Oct 11, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from f99038d to dfd9340 Compare October 16, 2024 14:23
@renovate renovate bot changed the title Update dependency wrangler to v3.80.4 Update dependency wrangler to v3.80.5 Oct 16, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from dfd9340 to 692bb03 Compare October 17, 2024 16:15
@renovate renovate bot changed the title Update dependency wrangler to v3.80.5 Update dependency wrangler to v3.81.0 Oct 17, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 692bb03 to 1bb0b01 Compare October 22, 2024 21:18
@renovate renovate bot changed the title Update dependency wrangler to v3.81.0 Update dependency wrangler to v3.82.0 Oct 22, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 1bb0b01 to 8a51306 Compare October 24, 2024 12:06
@renovate renovate bot changed the title Update dependency wrangler to v3.82.0 Update dependency wrangler to v3.83.0 Oct 24, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from 8a51306 to e5549a6 Compare October 30, 2024 17:14
@renovate renovate bot changed the title Update dependency wrangler to v3.83.0 Update dependency wrangler to v3.84.0 Oct 30, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x-lockfile branch from e5549a6 to 2daf16d Compare October 31, 2024 18:28
@renovate renovate bot changed the title Update dependency wrangler to v3.84.0 Update dependency wrangler to v3.84.1 Oct 31, 2024
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