You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: wasm/CHANGELOG.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@
2
2
3
3
This changelog summarizes major changes to the WebAssembly engine implemented in GraalVM (GraalWasm).
4
4
5
+
## Version 25.1.0
6
+
7
+
* Implemented the [exception handling](https://github.com/WebAssembly/exception-handling) proposal. This feature can be enabled with the experimental option `wasm.Exceptions=true`.
8
+
5
9
## Version 25.0.0
6
10
7
11
* BREAKING: Changed Context.eval of _wasm_ sources to return a compiled, but not yet instantiated, module object instead of the module instance.
@@ -27,14 +31,13 @@ This changelog summarizes major changes to the WebAssembly engine implemented in
27
31
* Added an implementation of the [SIMD](https://github.com/WebAssembly/simd) proposal using the JDK's Vector API. This improves peak performance when running WebAssembly code which makes heavy use of the new instructions in the SIMD proposal. This new implementation is always used in native image. On the JVM, it is opt-in and requires setting `--add-modules=jdk.incubator.vector`. Use of the incubating Vector API will result in the following warning message being printed to stderr:
28
32
```
29
33
WARNING: Using incubator modules: jdk.incubator.vector
30
-
```
31
-
34
+
```
32
35
33
36
## Version 24.2.0
34
37
35
38
* Updated developer metadata of Maven artifacts.
36
39
* Deprecated the `--wasm.AsyncParsingBinarySize` and `--wasm.AsyncParsingStackSize` options. These options no longer have any effect and will be removed in a future release.
37
-
* Implemented the [Relaxed SIMD](https://github.com/WebAssembly/relaxed-simd) proposal. This feature can be enabled with the options`--wasm.RelaxedSIMD`.
40
+
* Implemented the [Relaxed SIMD](https://github.com/WebAssembly/relaxed-simd) proposal. This feature can be enabled with the option`--wasm.RelaxedSIMD`.
0 commit comments