Fedify 2.1.4
Released on April 7, 2026.
@fedify/fedify
- Fixed
sendActivity()not awaitingfanoutQueue.enqueue()in the fanout path, which could cause fanout messages to be silently dropped on runtimes like Cloudflare Workers that may terminate an isolate as soon as the response is sent. [#661]
@fedify/cfworkers
- Fixed a TypeScript type mismatch that occurred when passing
wrangler types-generated binding types (e.g.KVNamespace,Queue) toWorkersKvStoreandWorkersMessageQueueconstructors. The package previously imported these types from@cloudflare/workers-types/experimental, which includes extra members (such asKVNamespace.deleteBulk()) absent from types generated bywrangler types, causing TypeScript assignment errors at the call site. The import now uses the stable@cloudflare/workers-typesentrypoint, whose definitions match whatwrangler typesgenerates. [#662]