Skip to content

Commit 99c6463

Browse files
Release Wasmtime 0.38.0 (#4288)
* Release Wasmtime 0.38.0 [automatically-tag-and-release-this-commit] * Update release date * Update release notes for 0.38.0 (#4227) * Update release notes for 0.38.0 * Fix a typo Co-authored-by: Wasmtime Publish <[email protected]> Co-authored-by: Alex Crichton <[email protected]>
1 parent b80491b commit 99c6463

File tree

1 file changed

+44
-1
lines changed

1 file changed

+44
-1
lines changed

RELEASES.md

+44-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,55 @@
22

33
## 0.38.0
44

5-
Unreleased.
5+
Released 2022-06-21.
66

77
### Added
88

9+
* Enabling or disabling NaN canonicalization in generated code is now exposed
10+
through the C API.
11+
[#4154](https://github.com/bytecodealliance/wasmtime/pull/4154)
12+
13+
* A user-defined callback can now be invoked when an epoch interruption happens
14+
via the `Store::epoch_deadline_callback` API.
15+
[#4152](https://github.com/bytecodealliance/wasmtime/pull/4152)
16+
17+
* Basic alias analysis with redundant-load elimintation and store-to-load
18+
forwarding optimizations has been added to Cranelift.
19+
[#4163](https://github.com/bytecodealliance/wasmtime/pull/4163)
20+
921
### Changed
1022

23+
* Traps originating from epoch-based interruption are now exposed as
24+
`TrapCode::Interrupt`.
25+
[#4105](https://github.com/bytecodealliance/wasmtime/pull/4105)
26+
27+
* Binary builds for AArch64 now require glibc 2.17 and for s390x require glibc
28+
2.16. Previously glibc 2.28 was required.
29+
[#4171](https://github.com/bytecodealliance/wasmtime/pull/4171)
30+
31+
* The `wasmtime::ValRaw` now has all of its fields listed as private and instead
32+
constructors/accessors are provided for getting at the internal data.
33+
[#4186](https://github.com/bytecodealliance/wasmtime/pull/4186)
34+
35+
* The `wasm-backtrace` Cargo feature has been removed in favor of a
36+
`Config::wasm_backtrace` runtime configuration option. Additionally backtraces
37+
are now only captured when an embedder-generated trap actually reaches a
38+
WebAssembly call stack.
39+
[#4183](https://github.com/bytecodealliance/wasmtime/pull/4183)
40+
41+
* Usage of `*_unchecked` APIs for `Func` in the `wasmtime` crate and C API now
42+
take a `usize` parameter indicating the number of `ValRaw` values behind
43+
the associated pointer.
44+
[#4192](https://github.com/bytecodealliance/wasmtime/pull/4192)
45+
46+
### Fixed
47+
48+
* An improvement was made to the spill-slot allocation in code generation to fix
49+
an issue where some stack slots accidentally weren't reused. This issue was
50+
introduced with the landing of regalloc2 in 0.37.0 and may have resulted in
51+
larger-than-intended increases in stack frame sizes.
52+
[#4222](https://github.com/bytecodealliance/wasmtime/pull/4222)
53+
1154
--------------------------------------------------------------------------------
1255

1356
## 0.37.0

0 commit comments

Comments
 (0)