v0.24.0
Breaking Change
- #102 removed
context.Context
parameter from some Cloudflare-related APIs.- if your build fails, please remove
ctx context.Context
from arguments.
- if your build fails, please remove
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
- build: update compat date, remove by @elithrar in #98
- add Makefile command to build example files by @syumai in #99
- Remove dependencies on Context by @syumai in #102
- support sql.Open for D1 by @syumai in #105
New Contributors
Full Changelog: v0.23.3...v0.24.0