Releases: probot/example-netlify-functions
Releases · probot/example-netlify-functions
v3.0.0
3.0.0 (2025-06-04)
Features
BREAKING CHANGES
- Transition to ESM only
Converts the repository to use ESM syntax, enabling module support.
- Adds
"type": "module"topackage.jsonto specify ESM support. - Updates
app.jsandnetlify/functions/webhooks.jsby replacingrequirestatements withimportstatements and changingmodule.exportstoexport default. - Modifies
test.jsto use ESM import/export syntax, including updatingrequirestatements toimportand changingmodule.exportstoexport defaultfor the test suite.