Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.0.0] Add release notes #5069

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
45 changes: 45 additions & 0 deletions 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

Released 2022-09-20
Expand Down
2 changes: 2 additions & 0 deletions docs/stability-tiers.md
Expand Up @@ -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 |
Expand Down