Skip to content

Commit c138e08

Browse files
Release Wasmtime 26.0.1 (#9561)
* Release Wasmtime 26.0.1 [automatically-tag-and-release-this-commit] * Add release notes. --------- Co-authored-by: Wasmtime Publish <wasmtime-publish@users.noreply.github.com> Co-authored-by: Dan Gohman <dev@sunfishcode.online>
1 parent a8fa7b8 commit c138e08

File tree

22 files changed

+607
-125
lines changed

22 files changed

+607
-125
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ exclude = [
160160
]
161161

162162
[workspace.package]
163-
version = "26.0.0"
163+
version = "26.0.1"
164164
authors = ["The Wasmtime Project Developers"]
165165
edition = "2021"
166166
# Wasmtime's current policy is that this number can be no larger than the
@@ -192,60 +192,60 @@ unnecessary_cast = 'warn'
192192

193193
[workspace.dependencies]
194194
arbitrary = { version = "1.3.1" }
195-
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=26.0.0" }
196-
wasmtime = { path = "crates/wasmtime", version = "26.0.0", default-features = false }
197-
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=26.0.0" }
198-
wasmtime-cache = { path = "crates/cache", version = "=26.0.0" }
199-
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=26.0.0" }
200-
wasmtime-cranelift = { path = "crates/cranelift", version = "=26.0.0" }
201-
wasmtime-winch = { path = "crates/winch", version = "=26.0.0" }
202-
wasmtime-environ = { path = "crates/environ", version = "=26.0.0" }
203-
wasmtime-explorer = { path = "crates/explorer", version = "=26.0.0" }
204-
wasmtime-fiber = { path = "crates/fiber", version = "=26.0.0" }
205-
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=26.0.0" }
206-
wasmtime-wast = { path = "crates/wast", version = "=26.0.0" }
207-
wasmtime-wasi = { path = "crates/wasi", version = "26.0.0", default-features = false }
208-
wasmtime-wasi-http = { path = "crates/wasi-http", version = "=26.0.0", default-features = false }
209-
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "26.0.0" }
210-
wasmtime-wasi-runtime-config = { path = "crates/wasi-runtime-config", version = "26.0.0" }
211-
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "26.0.0" }
212-
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "26.0.0" }
213-
wasmtime-component-util = { path = "crates/component-util", version = "=26.0.0" }
214-
wasmtime-component-macro = { path = "crates/component-macro", version = "=26.0.0" }
215-
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=26.0.0" }
216-
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=26.0.0" }
217-
wasmtime-slab = { path = "crates/slab", version = "=26.0.0" }
195+
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=26.0.1" }
196+
wasmtime = { path = "crates/wasmtime", version = "26.0.1", default-features = false }
197+
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=26.0.1" }
198+
wasmtime-cache = { path = "crates/cache", version = "=26.0.1" }
199+
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=26.0.1" }
200+
wasmtime-cranelift = { path = "crates/cranelift", version = "=26.0.1" }
201+
wasmtime-winch = { path = "crates/winch", version = "=26.0.1" }
202+
wasmtime-environ = { path = "crates/environ", version = "=26.0.1" }
203+
wasmtime-explorer = { path = "crates/explorer", version = "=26.0.1" }
204+
wasmtime-fiber = { path = "crates/fiber", version = "=26.0.1" }
205+
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=26.0.1" }
206+
wasmtime-wast = { path = "crates/wast", version = "=26.0.1" }
207+
wasmtime-wasi = { path = "crates/wasi", version = "26.0.1", default-features = false }
208+
wasmtime-wasi-http = { path = "crates/wasi-http", version = "=26.0.1", default-features = false }
209+
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "26.0.1" }
210+
wasmtime-wasi-runtime-config = { path = "crates/wasi-runtime-config", version = "26.0.1" }
211+
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "26.0.1" }
212+
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "26.0.1" }
213+
wasmtime-component-util = { path = "crates/component-util", version = "=26.0.1" }
214+
wasmtime-component-macro = { path = "crates/component-macro", version = "=26.0.1" }
215+
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=26.0.1" }
216+
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=26.0.1" }
217+
wasmtime-slab = { path = "crates/slab", version = "=26.0.1" }
218218
component-test-util = { path = "crates/misc/component-test-util" }
219219
component-fuzz-util = { path = "crates/misc/component-fuzz-util" }
220-
wiggle = { path = "crates/wiggle", version = "=26.0.0", default-features = false }
221-
wiggle-macro = { path = "crates/wiggle/macro", version = "=26.0.0" }
222-
wiggle-generate = { path = "crates/wiggle/generate", version = "=26.0.0" }
223-
wasi-common = { path = "crates/wasi-common", version = "=26.0.0", default-features = false }
220+
wiggle = { path = "crates/wiggle", version = "=26.0.1", default-features = false }
221+
wiggle-macro = { path = "crates/wiggle/macro", version = "=26.0.1" }
222+
wiggle-generate = { path = "crates/wiggle/generate", version = "=26.0.1" }
223+
wasi-common = { path = "crates/wasi-common", version = "=26.0.1", default-features = false }
224224
wasmtime-fuzzing = { path = "crates/fuzzing" }
225-
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=26.0.0" }
226-
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=26.0.0" }
225+
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=26.0.1" }
226+
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=26.0.1" }
227227
test-programs-artifacts = { path = 'crates/test-programs/artifacts' }
228228

229-
pulley-interpreter = { path = 'pulley', version = "=26.0.0" }
229+
pulley-interpreter = { path = 'pulley', version = "=26.0.1" }
230230
pulley-interpreter-fuzz = { path = 'pulley/fuzz' }
231231

232-
cranelift-codegen = { path = "cranelift/codegen", version = "0.113.0", default-features = false, features = ["std", "unwind"] }
233-
cranelift-frontend = { path = "cranelift/frontend", version = "0.113.0" }
234-
cranelift-entity = { path = "cranelift/entity", version = "0.113.0" }
235-
cranelift-native = { path = "cranelift/native", version = "0.113.0" }
236-
cranelift-module = { path = "cranelift/module", version = "0.113.0" }
237-
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.113.0" }
238-
cranelift-reader = { path = "cranelift/reader", version = "0.113.0" }
232+
cranelift-codegen = { path = "cranelift/codegen", version = "0.113.1", default-features = false, features = ["std", "unwind"] }
233+
cranelift-frontend = { path = "cranelift/frontend", version = "0.113.1" }
234+
cranelift-entity = { path = "cranelift/entity", version = "0.113.1" }
235+
cranelift-native = { path = "cranelift/native", version = "0.113.1" }
236+
cranelift-module = { path = "cranelift/module", version = "0.113.1" }
237+
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.113.1" }
238+
cranelift-reader = { path = "cranelift/reader", version = "0.113.1" }
239239
cranelift-filetests = { path = "cranelift/filetests" }
240-
cranelift-object = { path = "cranelift/object", version = "0.113.0" }
241-
cranelift-jit = { path = "cranelift/jit", version = "0.113.0" }
240+
cranelift-object = { path = "cranelift/object", version = "0.113.1" }
241+
cranelift-jit = { path = "cranelift/jit", version = "0.113.1" }
242242
cranelift-fuzzgen = { path = "cranelift/fuzzgen" }
243-
cranelift-bforest = { path = "cranelift/bforest", version = "0.113.0" }
244-
cranelift-bitset = { path = "cranelift/bitset", version = "0.113.0" }
245-
cranelift-control = { path = "cranelift/control", version = "0.113.0" }
246-
cranelift = { path = "cranelift/umbrella", version = "0.113.0" }
243+
cranelift-bforest = { path = "cranelift/bforest", version = "0.113.1" }
244+
cranelift-bitset = { path = "cranelift/bitset", version = "0.113.1" }
245+
cranelift-control = { path = "cranelift/control", version = "0.113.1" }
246+
cranelift = { path = "cranelift/umbrella", version = "0.113.1" }
247247

248-
winch-codegen = { path = "winch/codegen", version = "=26.0.0" }
248+
winch-codegen = { path = "winch/codegen", version = "=26.0.1" }
249249

250250
wasi-preview1-component-adapter = { path = "crates/wasi-preview1-component-adapter" }
251251
byte-array-literals = { path = "crates/wasi-preview1-component-adapter/byte-array-literals" }

RELEASES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 26.0.1
2+
3+
Released 2024-11-05.
4+
5+
### Fixed
6+
7+
* Update to cap-std 3.4.1, for #9559, which fixes a wasi-filesystem sandbox
8+
escape on Windows.
9+
[CVE-2024-51745](https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-c2f5-jxjv-2hh8).
10+
11+
--------------------------------------------------------------------------------
12+
113
## 26.0.0
214

315
Released 2024-10-22.

cranelift/bforest/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-bforest"
4-
version = "0.113.0"
4+
version = "0.113.1"
55
description = "A forest of B+-trees"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-bforest"

cranelift/bitset/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-bitset"
4-
version = "0.113.0"
4+
version = "0.113.1"
55
description = "Various bitset stuff for use inside Cranelift"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-bitset"

cranelift/codegen/Cargo.toml

Lines changed: 4 additions & 4 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.113.0"
4+
version = "0.113.1"
55
description = "Low-level code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-codegen"
@@ -20,7 +20,7 @@ workspace = true
2020
anyhow = { workspace = true, optional = true, features = ['std'] }
2121
bumpalo = "3"
2222
capstone = { workspace = true, optional = true }
23-
cranelift-codegen-shared = { path = "./shared", version = "0.113.0" }
23+
cranelift-codegen-shared = { path = "./shared", version = "0.113.1" }
2424
cranelift-entity = { workspace = true }
2525
cranelift-bforest = { workspace = true }
2626
cranelift-bitset = { workspace = true }
@@ -49,8 +49,8 @@ similar = "2.1.0"
4949
env_logger = { workspace = true }
5050

5151
[build-dependencies]
52-
cranelift-codegen-meta = { path = "meta", version = "0.113.0" }
53-
cranelift-isle = { path = "../isle/isle", version = "=0.113.0" }
52+
cranelift-codegen-meta = { path = "meta", version = "0.113.1" }
53+
cranelift-isle = { path = "../isle/isle", version = "=0.113.1" }
5454

5555
[features]
5656
default = ["std", "unwind", "host-arch", "timing"]

cranelift/codegen/meta/Cargo.toml

Lines changed: 2 additions & 2 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.113.0"
4+
version = "0.113.1"
55
description = "Metaprogram for cranelift-codegen code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -16,4 +16,4 @@ workspace = true
1616
rustdoc-args = [ "--document-private-items" ]
1717

1818
[dependencies]
19-
cranelift-codegen-shared = { path = "../shared", version = "0.113.0" }
19+
cranelift-codegen-shared = { path = "../shared", version = "0.113.1" }

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.113.0"
4+
version = "0.113.1"
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/control/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-control"
4-
version = "0.113.0"
4+
version = "0.113.1"
55
description = "White-box fuzz testing framework"
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.113.0"
4+
version = "0.113.1"
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/frontend/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-frontend"
4-
version = "0.113.0"
4+
version = "0.113.1"
55
description = "Cranelift IR builder helper"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-frontend"

cranelift/interpreter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-interpreter"
3-
version = "0.113.0"
3+
version = "0.113.1"
44
authors = ["The Cranelift Project Developers"]
55
description = "Interpret Cranelift IR"
66
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/isle/isle/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "Apache-2.0 WITH LLVM-exception"
77
name = "cranelift-isle"
88
readme = "../README.md"
99
repository = "https://github.com/bytecodealliance/wasmtime/tree/main/cranelift/isle"
10-
version = "0.113.0"
10+
version = "0.113.1"
1111

1212
[lints]
1313
workspace = true

cranelift/jit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-jit"
3-
version = "0.113.0"
3+
version = "0.113.1"
44
authors = ["The Cranelift Project Developers"]
55
description = "A JIT library backed by Cranelift"
66
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/module/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-module"
3-
version = "0.113.0"
3+
version = "0.113.1"
44
authors = ["The Cranelift Project Developers"]
55
description = "Support for linking functions and data with Cranelift"
66
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/native/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-native"
3-
version = "0.113.0"
3+
version = "0.113.1"
44
authors = ["The Cranelift Project Developers"]
55
description = "Support for targeting the host with Cranelift"
66
documentation = "https://docs.rs/cranelift-native"

cranelift/object/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-object"
3-
version = "0.113.0"
3+
version = "0.113.1"
44
authors = ["The Cranelift Project Developers"]
55
description = "Emit Cranelift output to native object files with `object`"
66
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/reader/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-reader"
4-
version = "0.113.0"
4+
version = "0.113.1"
55
description = "Cranelift textual IR reader"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-reader"

cranelift/serde/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-serde"
3-
version = "0.113.0"
3+
version = "0.113.1"
44
authors = ["The Cranelift Project Developers"]
55
description = "Serializer/Deserializer for Cranelift IR"
66
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/umbrella/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"
4-
version = "0.113.0"
4+
version = "0.113.1"
55
description = "Umbrella for commonly-used cranelift crates"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift"

crates/c-api/include/wasmtime.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@
206206
/**
207207
* \brief Wasmtime version string.
208208
*/
209-
#define WASMTIME_VERSION "26.0.0"
209+
#define WASMTIME_VERSION "26.0.1"
210210
/**
211211
* \brief Wasmtime major version number.
212212
*/
@@ -218,7 +218,7 @@
218218
/**
219219
* \brief Wasmtime patch version number.
220220
*/
221-
#define WASMTIME_VERSION_PATCH 0
221+
#define WASMTIME_VERSION_PATCH 1
222222

223223
#ifdef __cplusplus
224224
extern "C" {

0 commit comments

Comments
 (0)