Skip to content

miniflare@5.20260925.0-alpha

Pre-release
Pre-release

Choose a tag to compare

@workers-devprod workers-devprod released this 25 Sep 19:34
· 5 commits to main since this release
8d61ca8

Patch Changes

  • #15864 ee2b200 Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    @cloudflare/workers-types ^5.20260923.1 ^5.20260925.1
    workerd 1.20260923.1 1.20260925.1
  • #15676 c91279b Thanks @L4XB! - Fix QuotaExceededError when a producer sends many queue messages locally

    The local Queues broker registered a timer for every message it received, including messages with no delivery delay. workerd caps a Durable Object at 10000 active timeouts and none of those timers run while the producer is still sending, so a Worker that enqueued more than 10000 messages in one go failed with QuotaExceededError: You have exceeded the number of active timeouts you may set.

    Messages without a delivery delay are now enqueued directly, and only delayed messages use a timer. This matches what the broker already did under Miniflare's fake timers, where a zero-delay timer runs synchronously.