Browse Source

Add release notes for 2.0.0 (#5048) (#5069)

* Add release notes for 2.0.0

* Review comments
pull/5081/head
Alex Crichton 2 years ago
committed by GitHub
parent
commit
0da585ac4f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 45
      RELEASES.md
  2. 2
      docs/stability-tiers.md

45
RELEASES.md

@ -1,5 +1,50 @@
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
## 2.0.0
Unreleased.
### Added
* Cranelift has gained support for forward-edge CFI on the AArch64 backend.
[#3693](https://github.com/bytecodealliance/wasmtime/pull/3693)
* A `--disable-parallel-compilation` CLI flag is now implemented for `wasmtime`.
[#4911](https://github.com/bytecodealliance/wasmtime/pull/4911)
* [Tier 3] support has been added for for RISC-V 64 with a new backend in
Cranelift for this architecture.
[#4271](https://github.com/bytecodealliance/wasmtime/pull/4271)
* Basic [tier 3] support for Windows ARM64 has been added but features such as
traps don't work at this time.
[#4990](https://github.com/bytecodealliance/wasmtime/pull/4990)
### Changed
* The implementation of the `random_get` function in `wasi-common` is now faster
by using a userspace CSPRNG rather than the OS for randomness.
[#4917](https://github.com/bytecodealliance/wasmtime/pull/4917)
* The AArch64 backend has completed its transition to ISLE.
[#4851](https://github.com/bytecodealliance/wasmtime/pull/4851)
[#4866](https://github.com/bytecodealliance/wasmtime/pull/4866)
[#4898](https://github.com/bytecodealliance/wasmtime/pull/4898)
[#4884](https://github.com/bytecodealliance/wasmtime/pull/4884)
[#4820](https://github.com/bytecodealliance/wasmtime/pull/4820)
[#4913](https://github.com/bytecodealliance/wasmtime/pull/4913)
[#4942](https://github.com/bytecodealliance/wasmtime/pull/4942)
[#4943](https://github.com/bytecodealliance/wasmtime/pull/4943)
* The size of the `sigaltstack` allocated per-thread for signal handling has
been increased from 16k to 64k.
[#4964](https://github.com/bytecodealliance/wasmtime/pull/4964)
[Tier 3]: https://docs.wasmtime.dev/stability-tiers.html
--------------------------------------------------------------------------------
## 1.0.0 ## 1.0.0
Released 2022-09-20 Released 2022-09-20

2
docs/stability-tiers.md

@ -46,6 +46,8 @@ For explanations of what each tier means see below.
| Category | Description | Missing Tier 2 Requirements | | Category | Description | Missing Tier 2 Requirements |
|----------------------|-----------------------------------|-----------------------------| |----------------------|-----------------------------------|-----------------------------|
| Target | `aarch64-apple-darwin` | CI testing | | Target | `aarch64-apple-darwin` | CI testing |
| Target | `aarch64-pc-windows-msvc` | CI testing, unwinding, full-time maintainer |
| Target | `riscv64gc-unknown-linux-gnu` | full-time maintainer |
| WASI Proposal | `wasi-nn` | More expansive CI testing | | WASI Proposal | `wasi-nn` | More expansive CI testing |
| WASI Proposal | `wasi-crypto` | CI testing, clear owner | | WASI Proposal | `wasi-crypto` | CI testing, clear owner |
| WebAssembly Proposal | `threads` | Complete implementation | | WebAssembly Proposal | `threads` | Complete implementation |

Loading…
Cancel
Save