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

Release Wasmtime 0.38.2 #4482

Merged
merged 2 commits into from Jul 20, 2022
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
76 changes: 38 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-cli"
version = "0.38.1"
version = "0.38.2"
authors = ["The Wasmtime Project Developers"]
description = "Command-line interface for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -21,15 +21,15 @@ path = "src/bin/wasmtime.rs"
doc = false

[dependencies]
wasmtime = { path = "crates/wasmtime", version = "0.38.1", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=0.38.1" }
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=0.38.1" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.38.1" }
wasmtime-environ = { path = "crates/environ", version = "=0.38.1" }
wasmtime-wast = { path = "crates/wast", version = "=0.38.1" }
wasmtime-wasi = { path = "crates/wasi", version = "0.38.1" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.38.1", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.38.1", optional = true }
wasmtime = { path = "crates/wasmtime", version = "0.38.2", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=0.38.2" }
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=0.38.2" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.38.2" }
wasmtime-environ = { path = "crates/environ", version = "=0.38.2" }
wasmtime-wast = { path = "crates/wast", version = "=0.38.2" }
wasmtime-wasi = { path = "crates/wasi", version = "0.38.2" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.38.2", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.38.2", optional = true }
clap = { version = "3.1.12", features = ["color", "suggestions", "derive"] }
anyhow = "1.0.19"
target-lexicon = { version = "0.12.0", default-features = false }
Expand All @@ -43,7 +43,7 @@ rustix = "0.33.7"

[dev-dependencies]
# depend again on wasmtime to activate its default features for tests
wasmtime = { path = "crates/wasmtime", version = "0.38.1" }
wasmtime = { path = "crates/wasmtime", version = "0.38.2" }
env_logger = "0.9.0"
filecheck = "0.5.0"
more-asserts = "0.2.1"
Expand Down
14 changes: 14 additions & 0 deletions RELEASES.md
@@ -1,5 +1,19 @@
--------------------------------------------------------------------------------

## 0.38.2

Released 2022-07-20.

### Fixed.

* A miscompilation when handling constant divisors on AArch64 has been fixed.
[CVE-2022-31169](https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-7f6x-jwh5-m9r4)

* A use-after-free possible with accidentally missing stack maps has been fixed.
[CVE-2022-31146](https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-5fhj-g3p3-pq9g)

--------------------------------------------------------------------------------

## 0.38.1

Released 2022-06-27.
Expand Down