Browse Source
Add some release notes for 0.37.0 (#4056)
I was poking at the release process so figured I'd do some release notes
touch-up as well.
pull/4057/head
Alex Crichton
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
20 additions and
0 deletions
-
RELEASES.md
|
|
@ -15,12 +15,32 @@ Unreleased. |
|
|
|
artifacts. |
|
|
|
[#3983](https://github.com/bytecodealliance/wasmtime/pull/3983) |
|
|
|
|
|
|
|
* Copy-on-write images of memory can now be manually initialized for a `Module` |
|
|
|
with an explicit method call, but it is still not required to call this method |
|
|
|
and will automatically otherwise happen on the first instantiation. |
|
|
|
[#3964](https://github.com/bytecodealliance/wasmtime/pull/3964) |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
* Using `InstancePre::instantiate` or `Linker::instantiate` will now panic as |
|
|
|
intended when used with an async-configured `Store`. |
|
|
|
[#3972](https://github.com/bytecodealliance/wasmtime/pull/3972) |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
* The unsafe `ValRaw` type in the `wasmtime` crate now always stores its values |
|
|
|
in little-endian format instead of the prior native-endian format. Users of |
|
|
|
`ValRaw` are recommended to audit their existing code for usage to continue |
|
|
|
working on big-endian platforms. |
|
|
|
[#4035](https://github.com/bytecodealliance/wasmtime/pull/4035) |
|
|
|
|
|
|
|
### Removed |
|
|
|
|
|
|
|
* Support for `Config::paged_memory_initialization` and the `uffd` crate feature |
|
|
|
have been removed from the `wasmtime` crate. Users should migrate to using |
|
|
|
`Config::memory_init_cow` which is more portable and faster at this point. |
|
|
|
[#4040](https://github.com/bytecodealliance/wasmtime/pull/4040) |
|
|
|
|
|
|
|
-------------------------------------------------------------------------------- |
|
|
|
|
|
|
|
## 0.36.0 |
|
|
|