|
2 | 2 |
|
3 | 3 | -------------------------------------------------------------------------------- |
4 | 4 |
|
| 5 | +## 0.22.0 |
| 6 | + |
| 7 | +Released 2021-01-07. |
| 8 | + |
| 9 | +### Added |
| 10 | + |
| 11 | +* Experimental support for [the module-linking |
| 12 | + proposal](https://github.com/WebAssembly/module-linking) was |
| 13 | + added. [#2094](https://github.com/bytecodealliance/wasmtime/pull/2094) |
| 14 | + |
| 15 | +* Added support for [the reference types |
| 16 | + proposal](https://webassembly.github.io/reference-types) on the aarch64 |
| 17 | + architecture. [#2410](https://github.com/bytecodealliance/wasmtime/pull/2410) |
| 18 | + |
| 19 | +* Experimental support for [wasi-nn](https://github.com/WebAssembly/wasi-nn) was |
| 20 | + added. [#2208](https://github.com/bytecodealliance/wasmtime/pull/2208) |
| 21 | + |
| 22 | +### Changed |
| 23 | + |
| 24 | +### Fixed |
| 25 | + |
| 26 | +* Fixed an issue where the `select` instruction didn't accept `v128` SIMD |
| 27 | + operands. [#2391](https://github.com/bytecodealliance/wasmtime/pull/2391) |
| 28 | + |
| 29 | +* Fixed an issue where Wasmtime could potentially use the wrong stack map during |
| 30 | + GCs, leading to a |
| 31 | + panic. [#2396](https://github.com/bytecodealliance/wasmtime/pull/2396) |
| 32 | + |
| 33 | +* Fixed an issue where if a host-defined function erroneously returned a value |
| 34 | + from a different store, that value would be |
| 35 | + leaked. [#2424](https://github.com/bytecodealliance/wasmtime/pull/2424) |
| 36 | + |
| 37 | +* Fixed a bug where in certain cases if a module's instantiation failed, it |
| 38 | + could leave trampolines in the store that referenced the no-longer-valid |
| 39 | + instance. These trampolines could be reused in future instantiations, leading |
| 40 | + to use after free bugs. |
| 41 | + [#2408](https://github.com/bytecodealliance/wasmtime/pull/2408) |
| 42 | + |
| 43 | +* Fixed a miscompilation on aarch64 where certain instructions would read `SP` |
| 44 | + instead of the zero register. This could only affect you if you explicitly |
| 45 | + enabled the Wasm SIMD |
| 46 | + proposal. [#2548](https://github.com/bytecodealliance/wasmtime/pull/2548) |
| 47 | + |
| 48 | +-------------------------------------------------------------------------------- |
| 49 | + |
5 | 50 | ## 0.21.0 |
6 | 51 |
|
7 | 52 | Released 2020-11-05. |
|
0 commit comments