summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorHenry <mail@henrygressmann.de>2026-07-15 20:52:43 +0200
committerHenry <mail@henrygressmann.de>2026-07-15 20:52:43 +0200
commit1d754813f178fc92afffe43e3ab638ddfc03cb66 (patch)
tree480703da2a959d721efb89b0b06be7b8bca4430f /CHANGELOG.md
parent50545457d9d7439ca8ab6e3f0f88b04d208cd818 (diff)
docs: update changelog
Signed-off-by: Henry <mail@henrygressmann.de>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d35f070..0b65ccc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,7 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### 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.
+- Fixed table addressing for 64-bit tables.
+- Added `validation` option to `ParserConfig` to enable/disable wasmparser validation.
+
+### Breaking Changes
+
+- `instantiate` / `start` / `start_func` no longer fall back to `_start` if the module has no start section. Call the `_start` function explicitly if you want to run it.
+- Removed the parser's `optimize_remove_nop` option and accessors.
+- Changed public `Instruction` variants and the `.twasm` format. Existing archives must be regenerated.
+- `TableType` limits now use `u64`. Use `TableType::new` or `TableType::new64` instead of struct literals.
## [0.9.1] - 2026-06-29