summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorHenry <mail@henrygressmann.de>2026-07-14 17:33:43 +0200
committerHenry <mail@henrygressmann.de>2026-07-14 17:33:43 +0200
commitfe43e4816efbf622e8cdc106a552dfb9aadfb80e (patch)
treeb0d4f83e5baa76932d6a31bd401bb8525d58805d /CHANGELOG.md
parent089f5dd1dd73701b83181011f6268f5c1bcbbb6b (diff)
fix: remove `_start` fallback for instantiation
Signed-off-by: Henry <mail@henrygressmann.de>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c1dc0e3..d35f070 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [Unreleased]
+
+### Changed
+
+- `instantiate` / `start` / `start_func` no longer fall back to `_start` if the module has no start section. This is technically a breaking change, but it is more consistent with the WebAssembly spec and prevents accidental execution of `_start` in wasi modules that don't have a start section. Call the `_start` function explicitly if you want to run it.
+
## [0.9.1] - 2026-06-29
### Added