Add release notes for 2.0.0 (#5048)

* Add release notes for 2.0.0

* Review comments
This commit is contained in:
Alex Crichton
2022-10-12 10:39:39 -05:00
committed by GitHub
parent 03d77d4d6b
commit 75cd888e23
2 changed files with 47 additions and 0 deletions

View File

@@ -10,6 +10,51 @@ Unreleased.
--------------------------------------------------------------------------------
## 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
Released 2022-09-20

View File

@@ -46,6 +46,8 @@ For explanations of what each tier means see below.
| Category | Description | Missing Tier 2 Requirements |
|----------------------|-----------------------------------|-----------------------------|
| 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-crypto` | CI testing, clear owner |
| WebAssembly Proposal | `threads` | Complete implementation |