Skip to content

Commit 9f4859b

Browse files
authored
Merge pull request #2557 from fitzgen/wasmtime-0.22.0
Wasmtime 0.22.0
2 parents ee7131b + 3a3f35e commit 9f4859b

File tree

55 files changed

+288
-243
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+288
-243
lines changed

Cargo.lock

Lines changed: 49 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmtime-cli"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors = ["The Wasmtime Project Developers"]
55
description = "Command-line interface for Wasmtime"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -22,16 +22,16 @@ doc = false
2222

2323
[dependencies]
2424
# Enable all supported architectures by default.
25-
wasmtime = { path = "crates/wasmtime", version = "0.21.0", default-features = false, features = ['cache'] }
26-
wasmtime-cache = { path = "crates/cache", version = "0.21.0" }
27-
wasmtime-debug = { path = "crates/debug", version = "0.21.0" }
28-
wasmtime-environ = { path = "crates/environ", version = "0.21.0" }
29-
wasmtime-jit = { path = "crates/jit", version = "0.21.0" }
30-
wasmtime-obj = { path = "crates/obj", version = "0.21.0" }
31-
wasmtime-wast = { path = "crates/wast", version = "0.21.0" }
32-
wasmtime-wasi = { path = "crates/wasi", version = "0.21.0" }
33-
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.21.0", optional = true }
34-
wasi-common = { path = "crates/wasi-common", version = "0.21.0" }
25+
wasmtime = { path = "crates/wasmtime", version = "0.22.0", default-features = false, features = ['cache'] }
26+
wasmtime-cache = { path = "crates/cache", version = "0.22.0" }
27+
wasmtime-debug = { path = "crates/debug", version = "0.22.0" }
28+
wasmtime-environ = { path = "crates/environ", version = "0.22.0" }
29+
wasmtime-jit = { path = "crates/jit", version = "0.22.0" }
30+
wasmtime-obj = { path = "crates/obj", version = "0.22.0" }
31+
wasmtime-wast = { path = "crates/wast", version = "0.22.0" }
32+
wasmtime-wasi = { path = "crates/wasi", version = "0.22.0" }
33+
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.22.0", optional = true }
34+
wasi-common = { path = "crates/wasi-common", version = "0.22.0" }
3535
structopt = { version = "0.3.5", features = ["color", "suggestions"] }
3636
object = { version = "0.22.0", default-features = false, features = ["write"] }
3737
anyhow = "1.0.19"

RELEASES.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,51 @@
22

33
--------------------------------------------------------------------------------
44

5+
## 0.22.0
6+
7+
Released 2021-01-07.
8+
9+
### Added
10+
11+
* Experimental support for [the module-linking
12+
proposal](https://github.com/WebAssembly/module-linking) was
13+
added. [#2094](https://github.com/bytecodealliance/wasmtime/pull/2094)
14+
15+
* Added support for [the reference types
16+
proposal](https://webassembly.github.io/reference-types) on the aarch64
17+
architecture. [#2410](https://github.com/bytecodealliance/wasmtime/pull/2410)
18+
19+
* Experimental support for [wasi-nn](https://github.com/WebAssembly/wasi-nn) was
20+
added. [#2208](https://github.com/bytecodealliance/wasmtime/pull/2208)
21+
22+
### Changed
23+
24+
### Fixed
25+
26+
* Fixed an issue where the `select` instruction didn't accept `v128` SIMD
27+
operands. [#2391](https://github.com/bytecodealliance/wasmtime/pull/2391)
28+
29+
* Fixed an issue where Wasmtime could potentially use the wrong stack map during
30+
GCs, leading to a
31+
panic. [#2396](https://github.com/bytecodealliance/wasmtime/pull/2396)
32+
33+
* Fixed an issue where if a host-defined function erroneously returned a value
34+
from a different store, that value would be
35+
leaked. [#2424](https://github.com/bytecodealliance/wasmtime/pull/2424)
36+
37+
* Fixed a bug where in certain cases if a module's instantiation failed, it
38+
could leave trampolines in the store that referenced the no-longer-valid
39+
instance. These trampolines could be reused in future instantiations, leading
40+
to use after free bugs.
41+
[#2408](https://github.com/bytecodealliance/wasmtime/pull/2408)
42+
43+
* Fixed a miscompilation on aarch64 where certain instructions would read `SP`
44+
instead of the zero register. This could only affect you if you explicitly
45+
enabled the Wasm SIMD
46+
proposal. [#2548](https://github.com/bytecodealliance/wasmtime/pull/2548)
47+
48+
--------------------------------------------------------------------------------
49+
550
## 0.21.0
651

752
Released 2020-11-05.

cranelift/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,27 @@ path = "src/clif-util.rs"
1515

1616
[dependencies]
1717
cfg-if = "1.0"
18-
cranelift-codegen = { path = "codegen", version = "0.68.0" }
19-
cranelift-entity = { path = "entity", version = "0.68.0" }
20-
cranelift-interpreter = { path = "interpreter", version = "0.68.0" }
21-
cranelift-reader = { path = "reader", version = "0.68.0" }
22-
cranelift-frontend = { path = "frontend", version = "0.68.0" }
23-
cranelift-serde = { path = "serde", version = "0.68.0", optional = true }
24-
cranelift-wasm = { path = "wasm", version = "0.68.0", optional = true }
25-
cranelift-native = { path = "native", version = "0.68.0" }
18+
cranelift-codegen = { path = "codegen", version = "0.69.0" }
19+
cranelift-entity = { path = "entity", version = "0.69.0" }
20+
cranelift-interpreter = { path = "interpreter", version = "0.69.0" }
21+
cranelift-reader = { path = "reader", version = "0.69.0" }
22+
cranelift-frontend = { path = "frontend", version = "0.69.0" }
23+
cranelift-serde = { path = "serde", version = "0.69.0", optional = true }
24+
cranelift-wasm = { path = "wasm", version = "0.69.0", optional = true }
25+
cranelift-native = { path = "native", version = "0.69.0" }
2626
cranelift-filetests = { path = "filetests", version = "0.66.0" }
27-
cranelift-module = { path = "module", version = "0.68.0" }
28-
cranelift-object = { path = "object", version = "0.68.0" }
29-
cranelift-jit = { path = "jit", version = "0.68.0" }
30-
cranelift-preopt = { path = "preopt", version = "0.68.0" }
31-
cranelift = { path = "umbrella", version = "0.68.0" }
27+
cranelift-module = { path = "module", version = "0.69.0" }
28+
cranelift-object = { path = "object", version = "0.69.0" }
29+
cranelift-jit = { path = "jit", version = "0.69.0" }
30+
cranelift-preopt = { path = "preopt", version = "0.69.0" }
31+
cranelift = { path = "umbrella", version = "0.69.0" }
3232
filecheck = "0.5.0"
3333
log = "0.4.8"
3434
term = "0.6.1"
3535
capstone = { version = "0.7.0", optional = true }
3636
wat = { version = "1.0.18", optional = true }
3737
target-lexicon = { version = "0.11", features = ["std"] }
38-
peepmatic-souper = { path = "./peepmatic/crates/souper", version = "0.68.0", optional = true }
38+
peepmatic-souper = { path = "./peepmatic/crates/souper", version = "0.69.0", optional = true }
3939
pretty_env_logger = "0.4.0"
4040
rayon = { version = "1", optional = true }
4141
file-per-thread-logger = "0.1.2"

cranelift/bforest/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-bforest"
4-
version = "0.68.0"
4+
version = "0.69.0"
55
description = "A forest of B+-trees"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-bforest"
@@ -12,7 +12,7 @@ keywords = ["btree", "forest", "set", "map"]
1212
edition = "2018"
1313

1414
[dependencies]
15-
cranelift-entity = { path = "../entity", version = "0.68.0", default-features = false }
15+
cranelift-entity = { path = "../entity", version = "0.69.0", default-features = false }
1616

1717
[badges]
1818
maintenance = { status = "experimental" }

cranelift/codegen/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-codegen"
4-
version = "0.68.0"
4+
version = "0.69.0"
55
description = "Low-level code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-codegen"
@@ -13,9 +13,9 @@ build = "build.rs"
1313
edition = "2018"
1414

1515
[dependencies]
16-
cranelift-codegen-shared = { path = "./shared", version = "0.68.0" }
17-
cranelift-entity = { path = "../entity", version = "0.68.0" }
18-
cranelift-bforest = { path = "../bforest", version = "0.68.0" }
16+
cranelift-codegen-shared = { path = "./shared", version = "0.69.0" }
17+
cranelift-entity = { path = "../entity", version = "0.69.0" }
18+
cranelift-bforest = { path = "../bforest", version = "0.69.0" }
1919
hashbrown = { version = "0.9.1", optional = true }
2020
target-lexicon = "0.11"
2121
log = { version = "0.4.6", default-features = false }
@@ -25,9 +25,9 @@ gimli = { version = "0.23.0", default-features = false, features = ["write"], op
2525
smallvec = { version = "1.0.0" }
2626
thiserror = "1.0.4"
2727
byteorder = { version = "1.3.2", default-features = false }
28-
peepmatic = { path = "../peepmatic", optional = true, version = "0.68.0" }
29-
peepmatic-traits = { path = "../peepmatic/crates/traits", optional = true, version = "0.68.0" }
30-
peepmatic-runtime = { path = "../peepmatic/crates/runtime", optional = true, version = "0.68.0" }
28+
peepmatic = { path = "../peepmatic", optional = true, version = "0.69.0" }
29+
peepmatic-traits = { path = "../peepmatic/crates/traits", optional = true, version = "0.69.0" }
30+
peepmatic-runtime = { path = "../peepmatic/crates/runtime", optional = true, version = "0.69.0" }
3131
regalloc = { version = "0.0.31" }
3232
souper-ir = { version = "2.1.0", optional = true }
3333
wast = { version = "29.0.0", optional = true }
@@ -37,7 +37,7 @@ wast = { version = "29.0.0", optional = true }
3737
# accomodated in `tests`.
3838

3939
[build-dependencies]
40-
cranelift-codegen-meta = { path = "meta", version = "0.68.0" }
40+
cranelift-codegen-meta = { path = "meta", version = "0.69.0" }
4141

4242
[features]
4343
default = ["std", "unwind"]

cranelift/codegen/meta/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cranelift-codegen-meta"
33
authors = ["The Cranelift Project Developers"]
4-
version = "0.68.0"
4+
version = "0.69.0"
55
description = "Metaprogram for cranelift-codegen code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -12,8 +12,8 @@ edition = "2018"
1212
rustdoc-args = [ "--document-private-items" ]
1313

1414
[dependencies]
15-
cranelift-codegen-shared = { path = "../shared", version = "0.68.0" }
16-
cranelift-entity = { path = "../../entity", version = "0.68.0" }
15+
cranelift-codegen-shared = { path = "../shared", version = "0.69.0" }
16+
cranelift-entity = { path = "../../entity", version = "0.69.0" }
1717

1818
[badges]
1919
maintenance = { status = "experimental" }

cranelift/codegen/shared/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-codegen-shared"
4-
version = "0.68.0"
4+
version = "0.69.0"
55
description = "For code shared between cranelift-codegen-meta and cranelift-codegen"
66
license = "Apache-2.0 WITH LLVM-exception"
77
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/entity/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-entity"
4-
version = "0.68.0"
4+
version = "0.69.0"
55
description = "Data structures using entity references as mapping keys"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-entity"

cranelift/filetests/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ publish = false
1010
edition = "2018"
1111

1212
[dependencies]
13-
cranelift-codegen = { path = "../codegen", version = "0.68.0", features = ["testing_hooks"] }
14-
cranelift-frontend = { path = "../frontend", version = "0.68.0" }
15-
cranelift-interpreter = { path = "../interpreter", version = "0.68.0" }
16-
cranelift-native = { path = "../native", version = "0.68.0" }
17-
cranelift-reader = { path = "../reader", version = "0.68.0" }
18-
cranelift-preopt = { path = "../preopt", version = "0.68.0" }
13+
cranelift-codegen = { path = "../codegen", version = "0.69.0", features = ["testing_hooks"] }
14+
cranelift-frontend = { path = "../frontend", version = "0.69.0" }
15+
cranelift-interpreter = { path = "../interpreter", version = "0.69.0" }
16+
cranelift-native = { path = "../native", version = "0.69.0" }
17+
cranelift-reader = { path = "../reader", version = "0.69.0" }
18+
cranelift-preopt = { path = "../preopt", version = "0.69.0" }
1919
byteorder = { version = "1.3.2", default-features = false }
2020
file-per-thread-logger = "0.1.2"
2121
filecheck = "0.5.0"

0 commit comments

Comments
 (0)