Skip to content

v0.24.0

Compare
Choose a tag to compare
@syumai syumai released this 16 Apr 17:14
· 21 commits to main since this release
482b281

Breaking Change

  • #102 removed context.Context parameter from some Cloudflare-related APIs.
    • if your build fails, please remove ctx context.Context from arguments.

Example of API changes

// old
cloudflare.Getenv(ctx, "key")
// new
cloudflare.Getenv("key")

// old
cloudflare.GetBinding(ctx, "key")
// new
cloudflare.GetBinding("key")

What's Changed

New Contributors

Full Changelog: v0.23.3...v0.24.0