Releases: netlify/primitives
Releases · netlify/primitives
edge-functions: v3.0.1
edge-functions-dev: v1.0.1
1.0.1 (2025-10-22)
Dependencies
- The following workspace dependencies were updated
- dependencies
- @netlify/edge-functions bumped from 3.0.0 to 3.0.1
- dependencies
dev: v4.6.5
4.6.5 (2025-10-22)
Dependencies
- The following workspace dependencies were updated
- dependencies
- @netlify/blobs bumped from 10.2.0 to 10.2.1
- @netlify/functions-dev bumped from 1.0.1 to 1.0.2
- @netlify/runtime bumped from 4.1.2 to 4.1.3
- dependencies
dev: v4.6.4
4.6.4 (2025-10-22)
Dependencies
- The following workspace dependencies were updated
- dependencies
- @netlify/blobs bumped from 10.1.0 to 10.2.0
- @netlify/edge-functions-dev bumped from 1.0.0 to 1.0.1
- @netlify/functions-dev bumped from 1.0.0 to 1.0.1
- @netlify/runtime bumped from 4.1.1 to 4.1.2
- dependencies
blobs: v10.2.1
10.2.1 (2025-10-22)
Dependencies
- The following workspace dependencies were updated
- dependencies
- @netlify/otel bumped from ^4.3.0 to ^4.3.1
- dependencies
blobs: v10.2.0
vite-plugin: v2.7.4
2.7.4 (2025-10-19)
Dependencies
- The following workspace dependencies were updated
- dependencies
- @netlify/dev bumped from 4.6.2 to 4.6.3
- dependencies
vite-plugin-tanstack-start: v1.1.4
1.1.4 (2025-10-19)
Dependencies
- The following workspace dependencies were updated
- dependencies
- @netlify/vite-plugin bumped from ^2.7.3 to ^2.7.4
- dependencies
nuxt: v0.2.3
0.2.3 (2025-10-19)
Dependencies
- The following workspace dependencies were updated
- dependencies
- @netlify/dev bumped from ^4.6.2 to ^4.6.3
- dependencies
edge-functions: v3.0.0
3.0.0 (2025-10-19)
Performance
🚀 The @netlify/edge-functions package now has a 4000x(!) smaller install size:
- Direct dependencies: 13 → 1
- Total transitive dependencies: 98 → 1
- Total install size: 32 MB → 8 KB
⚠ BREAKING CHANGES
-
split edge-functions package (#485)
-
The
/devexport has been removedThe local development functionality has been extracted into a new
@netlify/edge-functions-devpackage. If your application relies on that logic, you shouldnpm install @netlify/edge-functions-devand update your import:-import { EdgeFunctionsHandler } from "@netlify/edge-functions/dev" +import { EdgeFunctionsHandler } from "@netlify/edge-functions-dev"
-
The
/versionexport has been removedIf you want to retrieve the URL of the latest bootstrap, use the
@netlify/edge-functions-bootstrappackage-import { getURL } from "@netlify/edge-functions/version" +import { getURL } from "@netlify/edge-functions-bootstrap"
-