Skip to content

wrangler@2.1.10

Compare
Choose a tag to compare
@github-actions github-actions released this 03 Oct 14:17
· 2150 commits to main since this release
d7b08a7

Patch Changes

  • #1955 b6dd07a1 Thanks @cameron-robey! - chore: error if d1 bindings used with no-bundle

    While in beta, you cannot use D1 bindings without bundling your worker as these are added in through a facade which gets bypassed when using the no-bundle option.

  • #1964 1f50578e Thanks @JacobMGEvans! - chore: Emoji space in help description
    Added a space between the Emoji and description for the secret:bulk command.

  • #1967 02261f27 Thanks @rozenmd! - feat: implement remote mode for unstable_dev

    With this change, unstable_dev can now perform end-to-end (e2e) tests against your workers as you dev.

    Note that to use this feature in CI, you'll need to configure CLOUDFLARE_API_TOKEN as an environment variable in your CI, and potentially add CLOUDFLARE_ACCOUNT_ID as an environment variable in your CI, or account_id in your wrangler.toml.

    Usage:

    await unstable_dev("src/index.ts", {
    	local: false
    });