diff --git a/src/content/changelog/workers/2025-10-10-increased-startup-time.mdx b/src/content/changelog/workers/2025-10-10-increased-startup-time.mdx
new file mode 100644
index 000000000000000..5fa93cc57f8337b
--- /dev/null
+++ b/src/content/changelog/workers/2025-10-10-increased-startup-time.mdx
@@ -0,0 +1,15 @@
+---
+title: Worker startup time limit increased to 1 second
+description: Worker startup time limit has been increased from 400 ms to 1s
+products:
+ - workers
+date: 2025-10-10
+---
+
+import { Render, TypeScriptExample, WranglerConfig } from "~/components";
+
+You can now upload a Worker that takes up 1 second to parse and execute its global scope. Previously, startup time was limited to 400 ms.
+
+This allows you to run Workers that import more complex packages and execute more code prior to requests being handled.
+
+For more information, see the documentation on [Workers startup limits](/workers/platform/limits/#worker-startup-time).
diff --git a/src/content/docs/workers/platform/limits.mdx b/src/content/docs/workers/platform/limits.mdx
index 8f38c6314388e10..10fcddd19fcc1a4 100644
--- a/src/content/docs/workers/platform/limits.mdx
+++ b/src/content/docs/workers/platform/limits.mdx
@@ -18,7 +18,7 @@ import { Render, WranglerConfig, DashButton } from "~/components";
| [Environment variables](#environment-variables) | 64/Worker | 128/Worker |
| [Environment variable
size](#environment-variables) | 5 KB | 5 KB |
| [Worker size](#worker-size) | 3 MB | 10 MB |
-| [Worker startup time](#worker-startup-time) | 400 ms | 400 ms |
+| [Worker startup time](#worker-startup-time) | 1 second | 1 second |
| [Number of Workers](#number-of-workers)1 | 100 | 500 |
| Number of [Cron Triggers](/workers/configuration/cron-triggers/)
per account | 5 | 250 |
| Number of [Static Asset](#static-assets) files per Worker version | 20,000 | 100,000 |
@@ -335,7 +335,7 @@ To reduce the upload size of a Worker, consider some of the following strategies
## Worker startup time
-A Worker must be able to be parsed and execute its global scope (top-level code outside of any handlers) within 400 ms. Worker size can impact startup because there is more code to parse and evaluate. Avoiding expensive code in the global scope can keep startup efficient as well.
+A Worker must be able to be parsed and execute its global scope (top-level code outside of any handlers) within 1 second. Worker size can impact startup because there is more code to parse and evaluate. Avoiding expensive code in the global scope can keep startup efficient as well.
You can measure your Worker's startup time by deploying it to Cloudflare using [Wrangler](/workers/wrangler/). When you run `npx wrangler@latest deploy` or `npx wrangler@latest versions upload`, Wrangler will output the startup time of your Worker in the command-line output, using the `startup_time_ms` field in the [Workers Script API](/api/resources/workers/subresources/scripts/methods/update/) or [Workers Versions API](/api/resources/workers/subresources/scripts/subresources/versions/methods/create/).