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.34.2 #3984

Merged
merged 4 commits into from Mar 31, 2022
Merged
Show file tree
Hide file tree
Changes from 2 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
72 changes: 36 additions & 36 deletions Cargo.lock

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

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

[dependencies]
wasmtime = { path = "crates/wasmtime", version = "0.34.1", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=0.34.1" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.34.1" }
wasmtime-environ = { path = "crates/environ", version = "=0.34.1" }
wasmtime-wast = { path = "crates/wast", version = "=0.34.1" }
wasmtime-wasi = { path = "crates/wasi", version = "0.34.1" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.34.1", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.34.1", optional = true }
wasmtime = { path = "crates/wasmtime", version = "0.34.2", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=0.34.2" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.34.2" }
wasmtime-environ = { path = "crates/environ", version = "=0.34.2" }
wasmtime-wast = { path = "crates/wast", version = "=0.34.2" }
wasmtime-wasi = { path = "crates/wasi", version = "0.34.2" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.34.2", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.34.2", optional = true }
structopt = { version = "0.3.5", features = ["color", "suggestions"] }
anyhow = "1.0.19"
target-lexicon = { version = "0.12.0", default-features = false }
Expand All @@ -46,7 +46,7 @@ rustix = "0.33.0"

[dev-dependencies]
# depend again on wasmtime to activate its default features for tests
wasmtime = { path = "crates/wasmtime", version = "0.34.1" }
wasmtime = { path = "crates/wasmtime", version = "0.34.2" }
env_logger = "0.8.1"
filecheck = "0.5.0"
more-asserts = "0.2.1"
Expand Down
13 changes: 13 additions & 0 deletions RELEASES.md
Expand Up @@ -2,6 +2,17 @@

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

## 0.34.2

Released 2022-03-31.

### Security Fixes

* [CVE-2022-24791](https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-gwc9-348x-qwv2):
Fixed a use after free with `externref`s and epoch interruption.

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

## 0.34.1

Released 2022-02-16.
Expand All @@ -12,6 +23,8 @@ Released 2022-02-16.
Fixed an invalid drop of a partially-initialized instance in the pooling instance
allocator.

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

## 0.34.0

Released 2022-02-07.
Expand Down