Skip to content

functions: v5.0.0

Choose a tag to compare

@token-generator-app token-generator-app released this 14 Oct 09:38
73f02d7

5.0.0 (2025-10-14)

Performance

πŸš€ The @netlify/functions package now has a 1000x(!) smaller install size:

  • Direct dependencies: 13 β†’ 1
  • Total transitive dependencies: 311 β†’ 1
  • Total install size: 82 MB β†’ 84 KB

⚠ BREAKING CHANGES

The /dev export, introduced in version 3.1.0, has been removed.

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

-import { FunctionsHandler } from "@netlify/functions/dev"
+import { FunctionsHandler } from "@netlify/functions-dev"

No other changes are needed.

Features

  • extract dev logic into new @netlify/functions-dev package (#475) (0730f5f)