Patch Changes
-
#15864
ee2b200Thanks @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
c91279bThanks @L4XB! - FixQuotaExceededErrorwhen a producer sends many queue messages locallyThe 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.