Skip to content

Releases: netlify/primitives

edge-functions: v3.0.1

22 Oct 12:57
a044bf8

Choose a tag to compare

3.0.1 (2025-10-22)

Bug Fixes

  • types: allow global.Netlify declaration merging (#494) (bd39b15)

edge-functions-dev: v1.0.1

22 Oct 12:57
a044bf8

Choose a tag to compare

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

dev: v4.6.5

22 Oct 20:34
4c23f80

Choose a tag to compare

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

dev: v4.6.4

22 Oct 12:57
a044bf8

Choose a tag to compare

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

blobs: v10.2.1

22 Oct 20:34
4c23f80

Choose a tag to compare

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

blobs: v10.2.0

22 Oct 12:57
a044bf8

Choose a tag to compare

10.2.0 (2025-10-22)

Features

  • add instrumentation to @netlify/blobs (#384) (9fe3782)

vite-plugin: v2.7.4

20 Oct 09:42
cd26425

Choose a tag to compare

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

vite-plugin-tanstack-start: v1.1.4

20 Oct 09:42
cd26425

Choose a tag to compare

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

nuxt: v0.2.3

20 Oct 09:42
cd26425

Choose a tag to compare

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

edge-functions: v3.0.0

20 Oct 09:42
cd26425

Choose a tag to compare

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 /dev export has been removed

      The local development functionality has been extracted into a new @netlify/edge-functions-dev package. If your application relies on that logic, you should npm install @netlify/edge-functions-dev and update your import:

      -import { EdgeFunctionsHandler } from "@netlify/edge-functions/dev"
      +import { EdgeFunctionsHandler } from "@netlify/edge-functions-dev"
    • The /version export has been removed

      If you want to retrieve the URL of the latest bootstrap, use the @netlify/edge-functions-bootstrap package

      -import { getURL } from "@netlify/edge-functions/version"
      +import { getURL } from "@netlify/edge-functions-bootstrap"