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

chore(deps): update devdependency wrangler to v3.78.2 - autoclosed #21

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 13, 2024

This PR contains the following updates:

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

Release Notes

cloudflare/workers-sdk (wrangler)

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
  • #​6615 21a09e0 Thanks @​RamIdeas! - chore: avoid potential double-install of create-cloudflare

    When wrangler init delegates to C3, it did so via npm create cloudflare@2.5.0. C3's v2.5.0 was the first to include auto-update support to avoid npx's potentially stale cache. But this also guaranteed a double install for users who do not have 2.5.0 cached. Now, wrangler delegates via npm create cloudflare@^2.5.0 which should use the latest version cached on the user's system or install and use the latest v2.x.x.

  • #​6603 a197460 Thanks @​taylorlee! - chore: fix version upload log order

    Previously deploy prints:
    upload timings
    deploy timings
    current version id

    while version upload prints:
    worker version id
    upload timings

    This change makes version upload more similar to deploy by printing
    version id after upload, which also makes more sense, as version ID can
    only be known after upload has finished.

v3.74.0

Compare Source

Minor Changes
Patch Changes
  • #​6605 c4f0d9e Thanks @​WalshyDev! - fix: ensure we update non-versioned Worker settings for the new deploy path in wrangler deploy

  • Updated dependencies [e8975a9]:

    • miniflare@3.20240821.1

v3.73.0

Compare Source

Minor Changes
  • #​6571 a7e1bfe Thanks @​penalosa! - feat: Add deployment http targets to wrangler deploy logs, and add url to pages deploy logs

  • #​6497 3bd833c Thanks @​WalshyDev! - chore: move wrangler versions ..., wrangler deployments ..., wrangler rollback and wrangler triggers ... out of experimental and open beta.
    These are now available to use without the --x-versions flag, you can continue to pass this however without issue to keep compatibility with all the usage today.

    A few of the commands had an output that wasn't guarded by --x-versions those have been updated to use the newer output, we have tried to keep compatibility where possible (for example: wrangler rollback will continue to output "Worker Version ID:" so users can continue to grab the ID).
    If you wish to use the old versions of the commands you can pass the --no-x-versions flag. Note, these will be removed in the future so please work on migrating.

  • #​6586 72ea742 Thanks @​penalosa! - feat: Inject a 404 response for browser requested favicon.ico files when loading the /__scheduled page for scheduled-only Workers

  • #​6497 3bd833c Thanks @​WalshyDev! - feat: update wrangler deploy to use the new versions and deployments API.
    This should have zero user-facing impact but sets up the most used command to deploy Workers to use the new recommended APIs and move away from the old ones.
    We will still call the old upload path where required (e.g. Durable Object migration or Service Worker format).

Patch Changes

v3.72.3

Compare Source

Patch Changes

v3.72.2

Compare Source

Patch Changes

v3.72.1

Compare Source

Patch Changes

v3.72.0

Compare Source

Minor Changes
  • #​6479 3c24d84 Thanks @​petebacondarwin! - feat: allow HTTPS custom certificate paths to be provided by a environment variables

    As well as providing paths to custom HTTPS certificate files, it is now possible to use WRANGLER_HTTPS_KEY_PATH and WRANGLER_HTTPS_CERT_PATH environment variables.

    Specifying the file paths at the command line overrides specifying in environment variables.

    Fixes #​5997

Patch Changes

v3.71.0

Compare Source

Minor Changes
Patch Changes

v3.70.0

Compare Source

Minor Changes
Patch Changes

v3.69.1

Compare Source

Patch Changes

v3.69.0

Compare Source

Minor Changes
  • #​6392 c3e19b7 Thanks @​taylorlee! - feat: log Worker startup time in the version upload command

  • #​6370 8a3c6c0 Thanks @​CarmenPopoviciu! - feat: Create very basic Asset Server Worker and plumb it into wrangler dev

    These changes do the ground work needed in order to add Assets support for Workers in wrangler dev. They implement the following:

    • it creates a new package called workers-shared that hosts the Asset Server Worker, and the Router Workerin the future
    • it scaffolds the Asset Server Worker in some very basic form, with basic configuration. Further behaviour implementation will follow in a subsequent PR
    • it does the ground work of plumbing ASW into Miniflare
Patch Changes
  • #​6392 c3e19b7 Thanks @​taylorlee! - fix: remove bundle size warning from Worker deploy commands

    Bundle size was a proxy for startup time. Now that we have startup time
    reported, focus on bundle size is less relevant.

v3.68.0

Compare Source

Minor Changes
Patch Changes
  • #​6379 31aa15c Thanks @​RamIdeas! - fix: clearer error message when trying to use Workers Sites or Legacy Assets with wrangler versions upload

  • #​6367 7588800 Thanks @​RamIdeas! - fix: implicitly cleanup (call stop()) in unstable_dev if the returned Promise rejected and the stop() function was not returned

  • #​6330 cfbdede Thanks @​RamIdeas! - fix: when the worker's request.url is overridden using the host or localUpstream, ensure port is overridden/cleared too

    When using --localUpstream=example.com, the request.url would incorrectly be "example.com:8787" but is now "example.com".

    This only applies to wrangler dev --x-dev-env and unstable_dev({ experimental: { devEnv: true } }).

  • #​6365 13549c3 Thanks @​WalshyDev! - fix: WASM modules meant that wrangler versions secret ... could not properly update the version. This has now been fixed.

  • Updated dependencies [a9021aa, 44ad2c7]:

    • miniflare@3.20240725.0

v3.67.1

Compare Source

Patch Changes
  • #​6312 67c611a Thanks @​emily-shen! - feat: add CLI flag and config key for experimental Workers + Assets

    This change adds a new experimental CLI flag (--experimental-assets) and configuration key (experimental_assets) for the new Workers + Assets work.

    The new flag and configuration key are for the time being "inactive", in the sense that no behaviour is attached to them yet. This will follow up in future work.

  • Updated dependencies [b3c3cb8]:

    • miniflare@3.20240718.1

v3.67.0

Compare Source

Minor Changes
  • #​4545 e5afae0 Thanks @​G4brym! - Remove experimental/beta constellation commands and binding, please migrate to Workers AI, learn more here https://developers.cloudflare.com/workers-ai/.
    This is not deemed a major version bump for Wrangler since these commands were never generally available.

  • #​6322 373248e Thanks @​IRCody! - Add cloudchamber scope to existing scopes instead of replacing them.

    When using any cloudchamber command the cloudchamber scope will now be added to the existing scopes instead of replacing them.

  • #​6276 a432a13 Thanks @​CarmenPopoviciu! - feat: Add support for wrangler.jsonc

    This commit adds support for wrangler.jsonc config file for Workers. This feature is available behind the --experimental-json-config flag (just like wrangler.json).

    To use the new configuration file, add a wrangler.jsonc file to your Worker project and run wrangler dev --experimental-json-config or wrangler deploy --experimental-json-config.

    Please note that this work does NOT add wrangler.json or wrangler.jsonc support for Pages projects!

  • #​6168 1ee41ff Thanks @​IRCody! - feature: Add list and remove subcommands to cloudchamber registries command.

Patch Changes
  • #​6331 e6ada07 Thanks @​threepointone! - fix: only warn about miniflare feature support (ai, vectorize, cron) once

    We have some warnings in local mode dev when trying to use ai bindings / vectorize / cron, but they are printed every time the worker is started. This PR changes the warning to only be printed once per worker start.

v3.66.0

Compare Source

Minor Changes
  • #​6295 ebc85c3 Thanks @​andyjessop! - feat: introduce an experimental flag for wrangler types to dynamically generate runtime types according to the user's project configuration.

  • #​6272 084d39e Thanks @​emily-shen! - fix: add legacy-assets config and flag as alias of current assets behavior

    • The existing behavior of the assets config key/flag will change on August 15th.
    • legacy-assets will preserve current functionality.
Patch Changes

v3.65.1

Compare Source

Patch Changes
  • #​6267 957d668 Thanks @​WalshyDev! - chore: add total module size to the logged table, this makes it much easier to see the total size of all modules combined.

  • #​6244 e7c06d7 Thanks @​gabivlj! - fix: wrangler cloudchamber json errors are properly formatted

  • Updated dependencies [779c713]:

    • miniflare@3.20240718.0

v3.65.0

Compare Source

Minor Changes
  • #​6194 25afcb2 Thanks @​zebp! - chore: Add duration and sourcemap size to upload metrics event

    Wrangler will now send the duration and the total size of any sourcemaps uploaded with your Worker to Cloudflare if you have metrics enabled.

  • #​6259 eb201a3 Thanks @​ottomated! - chore: Add types to DurableObjectNamespace type generation. For example:

    interface Env {
      OBJECT: DurableObjectNamespace<import("./src/index").MyDurableObject>;
    }
  • #​6245 e4abed3 Thanks @​OilyLime! - feature: Add support for Hyperdrive over Access configs

Patch Changes
  • #​6255 d497e1e Thanks @​rozenmd! - fix: teach wrangler init --from-dash about d1 bindings

    This PR teaches wrangler init --from-dash about D1 bindings, so they aren't incorrectly added to the wrangler.toml as unsafe bindings.

  • #​6258 4f524f2 Thanks @​dom96! - feature: Add warning about deploying Python with requirements.txt

    This expands on the warning shown for all Python Workers to include a message about deploying Python Workers with a requirements.txt not being supported.

  • #​6249 8bbd824 Thanks @​petebacondarwin! - chore: Update config-schema.json for the wrangler.toml

  • #​5955 db11a0f Thanks @​harugon! - fix: correctly escape newlines in constructType function for multiline strings

    This fix ensures that multiline strings are correctly handled by the constructType function. Newlines are now properly escaped to prevent invalid JavaScript code generation when using the wrangler types command. This improves robustness and prevents errors related to multiline string handling in environment variables and other configuration settings.

  • #​6263 fa1016c Thanks @​petebacondarwin! - fix: use cli script-name arg when deploying a worker with queue consumers

  • Updated dependencies [0d32448]:

    • miniflare@3.20240712.0

v3.64.0

Minor Changes
  • #​4925 7d4a4d0 Thanks @​dom96! - feature: whoami, logout and login commands mention the CLOUDFLARE_API_TOKEN env var now

    It is easy to get confused when trying to logout while the CLOUDFLARE_API_TOKEN env var is set.
    The logout command normally prints out a message which states that the user is not logged in. This
    change rectifes this to explicitly call out that the CLOUDFLARE_API_TOKEN is set and requests that
    the user unsets it to logout.

Patch Changes
  • #​5032 75f7928 Thanks @​dbenCF! - Adding client side error handling for R2 when the user tries to create a bucket with an invalid name. The purpose of this addition is to provide the user with more context when encountering this error.

  • #​4398 4b1e5bc Thanks @​mattpocock! - fix: update tsconfig for Workers generated by wrangler init

v3.63.2

Patch Changes
  • #​6199 88313e5 Thanks @​dario-piotrowicz! - fix: make sure getPlatformProxy's ctx methods throw illegal invocation errors like workerd

    in workerd detaching the waitUntil and passThroughOnException methods from the ExecutionContext
    object results in them throwing illegal invocation errors, such as for example:

    export default {
      async fetch(_request, _env, { waitUntil }) {
        waitUntil(() => {}); // <-- throws an illegal invocation error
        return new Response("Hello World!");
      },
    };

    make sure that the same behavior is applied to the ctx object returned by getPlatformProxy

  • #​5569 75ba960 Thanks @​penalosa! - fix: Simplify wrangler pages download config:

    • Don't include inheritable keys in the production override if they're equal to production
    • Only create a preview environment if needed, otherwise put the preview config at the top level

v3.63.1

Compare Source

Patch Changes
  • #​6192 b879ce4 Thanks @​petebacondarwin! - fix: do not report D1 user errors to Sentry

  • #​6150 d993409 Thanks @​CarmenPopoviciu! - fix: Fix pages dev watch mode [_worker.js]

    The watch mode in pages dev for Advanced Mode projects is currently partially broken, as it only watches for changes in the "_worker.js" file, but not for changes in any of its imported dependencies. This means that given the following "_worker.js" file

    import { graham } from "./graham-the-dog";
    export default {
    	fetch(request, env) {
    		return new Response(graham)
    	}
    }
    

    pages dev will reload for any changes in the _worker.js file itself, but not for any changes in graham-the-dog.js, which is its dependency.

    Similarly, pages dev will not reload for any changes in non-JS module imports, such as wasm/html/binary module imports.

    This commit fixes all the aforementioned issues.

v3.63.0

Compare Source

Minor Changes
  • #​6167 e048958 Thanks @​threepointone! - feature: alias modules in the worker

    Sometimes, users want to replace modules with other modules. This commonly happens inside a third party dependency itself. As an example, a user might have imported node-fetch, which will probably never work in workerd. You can use the alias config to replace any of these imports with a module of your choice.

    Let's say you make a fetch-nolyfill.js

    export default fetch; // all this does is export the standard fetch function`

    You can then configure wrangler.toml like so:

v3.62.0

Compare Source

Minor Changes
  • #​5950 0075621 Thanks @​WalshyDev! - feat: add wrangler versions secret put, wrangler versions secret bulk and wrangler versions secret list

    wrangler versions secret put allows for you to add/update a secret even if the latest version is not fully deployed. A new version with this secret will be created, the existing secrets and config are copied from the latest version.

    wrangler versions secret bulk allows you to bulk add/update multiple secrets at once, this behaves the same as secret put and will only make one new version.

    wrangler versions secret list lists the secrets available to the currently deployed versions. wrangler versions secret list --latest-version or wrangler secret list will list for the latest version.

    Additionally, we will now prompt for extra confirmation if attempting to rollback to a version with different secrets than the currently deployed.

Patch Changes
  • #​6118 1621992 Thanks @​WalshyDev! - fix: rollback in the case of a secret change, the prompt meant to show was not showing due to the spinner in an interactive env. It will now properly show.

    chore: improve the view of wrangler versions view and change up copy a little for versions secret commands.

  • #​6105 26855f3 Thanks @​helloimalastair! - feat: Add help messages to all invalid r2 commands

  • #​3735 9c7df38 Thanks @​lrapoport-cf! - chore: Cleanup wrangler --help output

    This commit cleans up and standardizes the look and feel of all wrangler commands as displayed by wrangler --help and wrangler <cmd> --help.

  • #​6080 e2972cf Thanks @​threepointone! - chore: run eslint (with react config) on workers-playground/wrangler

    This enables eslint (with our react config) for the workers-playground project. Additionally, this enables the react-jsx condition in relevant tsconfig/eslint config, letting us write jsx without having React in scope.

  • #​6001 d39d595 Thanks [@​pen


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "before 4am on Monday" (UTC).

🚦 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 changed the title chore(deps): update devdependency wrangler to v3.55.0 chore(deps): update devdependency wrangler to v3.56.0 May 14, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.56.0 chore(deps): update devdependency wrangler to v3.57.0 May 17, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch 2 times, most recently from 3c2ca24 to 85eee62 Compare May 21, 2024 21:05
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.57.0 chore(deps): update devdependency wrangler to v3.57.1 May 21, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.57.1 chore(deps): update devdependency wrangler to v3.57.2 May 28, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.57.2 chore(deps): update devdependency wrangler to v3.58.0 May 31, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.58.0 chore(deps): update devdependency wrangler to v3.59.0 Jun 4, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.59.0 chore(deps): update devdependency wrangler to v3.60.0 Jun 7, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.60.0 chore(deps): update devdependency wrangler to v3.60.1 Jun 10, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.60.1 chore(deps): update devdependency wrangler to v3.60.2 Jun 11, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.60.2 chore(deps): update devdependency wrangler to v3.60.3 Jun 14, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.60.3 chore(deps): update devdependency wrangler to v3.61.0 Jun 18, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.61.0 chore(deps): update devdependency wrangler to v3.62.0 Jun 25, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.62.0 chore(deps): update devdependency wrangler to v3.63.0 Jul 3, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.69.1 chore(deps): update devdependency wrangler to v3.70.0 Aug 9, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.70.0 chore(deps): update devdependency wrangler to v3.71.0 Aug 13, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.71.0 chore(deps): update devdependency wrangler to v3.72.0 Aug 16, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.72.0 chore(deps): update devdependency wrangler to v3.72.1 Aug 20, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.72.1 chore(deps): update devdependency wrangler to v3.72.2 Aug 22, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.72.2 chore(deps): update devdependency wrangler to v3.72.3 Aug 27, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.72.3 chore(deps): update devdependency wrangler to v3.73.0 Aug 30, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.73.0 chore(deps): update devdependency wrangler to v3.74.0 Sep 3, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.74.0 chore(deps): update devdependency wrangler to v3.75.0 Sep 6, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.75.0 chore(deps): update devdependency wrangler to v3.76.0 Sep 10, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.76.0 chore(deps): update devdependency wrangler to v3.77.0 Sep 12, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.77.0 chore(deps): update devdependency wrangler to v3.78.1 Sep 13, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.78.1 chore(deps): update devdependency wrangler to v3.78.2 Sep 14, 2024
@renovate renovate bot changed the title chore(deps): update devdependency wrangler to v3.78.2 chore(deps): update devdependency wrangler to v3.78.2 - autoclosed Sep 14, 2024
@renovate renovate bot closed this Sep 14, 2024
@renovate renovate bot deleted the renovate/wrangler-3.x branch September 14, 2024 19:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants