@cloudflare/workers-shared@0.19.9
Patch Changes
-
#14417
34e696dThanks @matthewdavidrodgers! - Improve asset serving performance by removing an unnecessary internal dispatch hopAsset requests and RPC calls now avoid an extra internal forwarding layer, reducing latency. The forwarding infrastructure is preserved for future use by cohort-based deployments.
-
#14705
00f41d6Thanks @WillTaylorDev! - Retry asset reads from KV when they failThe asset worker reads static assets from KV, and a read can occasionally fail with a transient error. It previously retried only once before giving up. It now retries a few times with exponential backoff, which reduces the chance of serving an error. A missing asset is not treated as a failure and is not retried.
-
#14418
cb30df3Thanks @matthewdavidrodgers! - Improve routing performance for Workers with assetsReduce request handling latency by streamlining the router Worker's request path. The loopback infrastructure remains available for future use.