diff --git a/src/assets/images/changelog/workers-for-platforms/wfp-request.png b/src/assets/images/changelog/workers-for-platforms/wfp-request.png new file mode 100644 index 000000000000000..8b3c3409ce5ae68 Binary files /dev/null and b/src/assets/images/changelog/workers-for-platforms/wfp-request.png differ diff --git a/src/content/changelog/workers-for-platforms/2025-02-20-synchronous-uploads.mdx b/src/content/changelog/workers-for-platforms/2025-02-20-synchronous-uploads.mdx new file mode 100644 index 000000000000000..c32aaf50d96e5ba --- /dev/null +++ b/src/content/changelog/workers-for-platforms/2025-02-20-synchronous-uploads.mdx @@ -0,0 +1,15 @@ +--- +title: Workers for Platforms - Instant dispatch for newly created User Workers +description: Newly uploaded user Worker scripts are now immediately available for dispatch upon a successful API response. +products: + - workers-for-platforms +date: 2025-02-20T17:00:00Z +--- + +[Workers for Platforms](https://developers.cloudflare.com/cloudflare-for-platforms/) is an architecture wherein a centralized [dispatch Worker](/cloudflare-for-platforms/workers-for-platforms/reference/how-workers-for-platforms-works/#dynamic-dispatch-worker) processes incoming requests and routes them to isolated sub-Workers, called [User Workers](/cloudflare-for-platforms/workers-for-platforms/reference/how-workers-for-platforms-works/#user-workers). + +![Workers for Platforms Requests](~/assets/images/changelog/workers-for-platforms/wfp-request.png) + +Previously, when a new User Worker was uploaded, there was a short delay before it became available for dispatch. This meant that even though an API request could return a 200 OK response, the script might not yet be ready to handle requests, causing unexpected failures for platforms that immediately dispatch to new Workers. + +**With this update, first-time uploads of User Workers are now deployed synchronously**. A 200 OK response guarantees the script is fully provisioned and ready to handle traffic immediately, ensuring more predictable deployments and reducing errors.