Skip to content

Commit c5569e6

Browse files
Release Wasmtime 46.0.3 (#14170)
* Release Wasmtime 46.0.3 [automatically-tag-and-release-this-commit] * Add release notes --------- Co-authored-by: Wasmtime Publish <wasmtime-publish@users.noreply.github.com> Co-authored-by: Alex Crichton <alex@alexcrichton.com>
1 parent 85348be commit c5569e6

25 files changed

Lines changed: 511 additions & 265 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 53 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ exclude = [
204204
]
205205

206206
[workspace.package]
207-
version = "46.0.2"
207+
version = "46.0.3"
208208
authors = ["The Wasmtime Project Developers"]
209209
edition = "2024"
210210
# Wasmtime's current policy is that this number can be no larger than the
@@ -265,18 +265,18 @@ extra_unused_type_parameters = 'warn'
265265
# tooling but aren't intended to be widely depended on.
266266
#
267267
# All of these crates are supported though in the sense that
268-
wasmtime = { path = "crates/wasmtime", version = "46.0.2", default-features = false }
269-
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=46.0.2" }
270-
wasmtime-environ = { path = "crates/environ", version = "=46.0.2" }
271-
wasmtime-wasi = { path = "crates/wasi", version = "46.0.2", default-features = false }
272-
wasmtime-wasi-io = { path = "crates/wasi-io", version = "46.0.2", default-features = false }
273-
wasmtime-wasi-http = { path = "crates/wasi-http", version = "46.0.2", default-features = false }
274-
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "46.0.2" }
275-
wasmtime-wasi-config = { path = "crates/wasi-config", version = "46.0.2" }
276-
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "46.0.2" }
277-
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "46.0.2" }
278-
wasmtime-wasi-tls = { path = "crates/wasi-tls", version = "46.0.2" }
279-
wasmtime-wast = { path = "crates/wast", version = "=46.0.2" }
268+
wasmtime = { path = "crates/wasmtime", version = "46.0.3", default-features = false }
269+
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=46.0.3" }
270+
wasmtime-environ = { path = "crates/environ", version = "=46.0.3" }
271+
wasmtime-wasi = { path = "crates/wasi", version = "46.0.3", default-features = false }
272+
wasmtime-wasi-io = { path = "crates/wasi-io", version = "46.0.3", default-features = false }
273+
wasmtime-wasi-http = { path = "crates/wasi-http", version = "46.0.3", default-features = false }
274+
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "46.0.3" }
275+
wasmtime-wasi-config = { path = "crates/wasi-config", version = "46.0.3" }
276+
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "46.0.3" }
277+
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "46.0.3" }
278+
wasmtime-wasi-tls = { path = "crates/wasi-tls", version = "46.0.3" }
279+
wasmtime-wast = { path = "crates/wast", version = "=46.0.3" }
280280

281281
# Internal Wasmtime-specific crates.
282282
#
@@ -285,55 +285,55 @@ wasmtime-wast = { path = "crates/wast", version = "=46.0.2" }
285285
# that these are internal unsupported crates for external use. These exist as
286286
# part of the project organization of other public crates in Wasmtime and are
287287
# otherwise not supported in terms of CVEs for example.
288-
wasmtime-core = { path = "crates/core", version = "=46.0.2", package = 'wasmtime-internal-core' }
289-
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=46.0.2", package = 'wasmtime-internal-wmemcheck' }
290-
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=46.0.2", package = 'wasmtime-internal-c-api-macros' }
291-
wasmtime-cache = { path = "crates/cache", version = "=46.0.2", package = 'wasmtime-internal-cache' }
292-
wasmtime-cranelift = { path = "crates/cranelift", version = "=46.0.2", package = 'wasmtime-internal-cranelift' }
293-
wasmtime-winch = { path = "crates/winch", version = "=46.0.2", package = 'wasmtime-internal-winch' }
294-
wasmtime-explorer = { path = "crates/explorer", version = "=46.0.2", package = 'wasmtime-internal-explorer' }
295-
wasmtime-fiber = { path = "crates/fiber", version = "=46.0.2", package = 'wasmtime-internal-fiber' }
296-
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=46.0.2", package = 'wasmtime-internal-jit-debug' }
297-
wasmtime-component-util = { path = "crates/component-util", version = "=46.0.2", package = 'wasmtime-internal-component-util' }
298-
wasmtime-component-macro = { path = "crates/component-macro", version = "=46.0.2", package = 'wasmtime-internal-component-macro' }
299-
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=46.0.2", package = 'wasmtime-internal-versioned-export-macros' }
300-
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=46.0.2", package = 'wasmtime-internal-jit-icache-coherence' }
301-
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=46.0.2", package = 'wasmtime-internal-wit-bindgen' }
302-
wasmtime-unwinder = { path = "crates/unwinder", version = "=46.0.2", package = 'wasmtime-internal-unwinder' }
303-
wasmtime-debugger = { path = "crates/debugger", version = "=46.0.2", package = "wasmtime-internal-debugger" }
304-
gdbstub-component-artifact = { path = "crates/gdbstub-component/artifact", version = "=46.0.2", package = "wasmtime-internal-gdbstub-component-artifact" }
305-
wasmtime-wizer = { path = "crates/wizer", version = "46.0.2" }
288+
wasmtime-core = { path = "crates/core", version = "=46.0.3", package = 'wasmtime-internal-core' }
289+
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=46.0.3", package = 'wasmtime-internal-wmemcheck' }
290+
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=46.0.3", package = 'wasmtime-internal-c-api-macros' }
291+
wasmtime-cache = { path = "crates/cache", version = "=46.0.3", package = 'wasmtime-internal-cache' }
292+
wasmtime-cranelift = { path = "crates/cranelift", version = "=46.0.3", package = 'wasmtime-internal-cranelift' }
293+
wasmtime-winch = { path = "crates/winch", version = "=46.0.3", package = 'wasmtime-internal-winch' }
294+
wasmtime-explorer = { path = "crates/explorer", version = "=46.0.3", package = 'wasmtime-internal-explorer' }
295+
wasmtime-fiber = { path = "crates/fiber", version = "=46.0.3", package = 'wasmtime-internal-fiber' }
296+
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=46.0.3", package = 'wasmtime-internal-jit-debug' }
297+
wasmtime-component-util = { path = "crates/component-util", version = "=46.0.3", package = 'wasmtime-internal-component-util' }
298+
wasmtime-component-macro = { path = "crates/component-macro", version = "=46.0.3", package = 'wasmtime-internal-component-macro' }
299+
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=46.0.3", package = 'wasmtime-internal-versioned-export-macros' }
300+
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=46.0.3", package = 'wasmtime-internal-jit-icache-coherence' }
301+
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=46.0.3", package = 'wasmtime-internal-wit-bindgen' }
302+
wasmtime-unwinder = { path = "crates/unwinder", version = "=46.0.3", package = 'wasmtime-internal-unwinder' }
303+
wasmtime-debugger = { path = "crates/debugger", version = "=46.0.3", package = "wasmtime-internal-debugger" }
304+
gdbstub-component-artifact = { path = "crates/gdbstub-component/artifact", version = "=46.0.3", package = "wasmtime-internal-gdbstub-component-artifact" }
305+
wasmtime-wizer = { path = "crates/wizer", version = "46.0.3" }
306306

307307
# Miscellaneous crates without a `wasmtime-*` prefix in their name but still
308308
# used in the `wasmtime-*` family of crates depending on various features/etc.
309-
wiggle = { path = "crates/wiggle", version = "=46.0.2", default-features = false }
310-
wiggle-macro = { path = "crates/wiggle/macro", version = "=46.0.2" }
311-
wiggle-generate = { path = "crates/wiggle/generate", version = "=46.0.2" }
312-
wasi-common = { path = "crates/wasi-common", version = "=46.0.2", default-features = false }
313-
pulley-interpreter = { path = 'pulley', version = "=46.0.2" }
314-
pulley-macros = { path = 'pulley/macros', version = "=46.0.2" }
309+
wiggle = { path = "crates/wiggle", version = "=46.0.3", default-features = false }
310+
wiggle-macro = { path = "crates/wiggle/macro", version = "=46.0.3" }
311+
wiggle-generate = { path = "crates/wiggle/generate", version = "=46.0.3" }
312+
wasi-common = { path = "crates/wasi-common", version = "=46.0.3", default-features = false }
313+
pulley-interpreter = { path = 'pulley', version = "=46.0.3" }
314+
pulley-macros = { path = 'pulley/macros', version = "=46.0.3" }
315315

316316
# Cranelift crates in this workspace
317-
cranelift-assembler-x64 = { path = "cranelift/assembler-x64", version = "0.133.2" }
318-
cranelift-codegen = { path = "cranelift/codegen", version = "0.133.2", default-features = false, features = ["unwind"] }
319-
cranelift-frontend = { path = "cranelift/frontend", version = "0.133.2" }
320-
cranelift-entity = { path = "cranelift/entity", version = "0.133.2" }
321-
cranelift-native = { path = "cranelift/native", version = "0.133.2" }
322-
cranelift-module = { path = "cranelift/module", version = "0.133.2" }
323-
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.133.2" }
324-
cranelift-reader = { path = "cranelift/reader", version = "0.133.2" }
317+
cranelift-assembler-x64 = { path = "cranelift/assembler-x64", version = "0.133.3" }
318+
cranelift-codegen = { path = "cranelift/codegen", version = "0.133.3", default-features = false, features = ["unwind"] }
319+
cranelift-frontend = { path = "cranelift/frontend", version = "0.133.3" }
320+
cranelift-entity = { path = "cranelift/entity", version = "0.133.3" }
321+
cranelift-native = { path = "cranelift/native", version = "0.133.3" }
322+
cranelift-module = { path = "cranelift/module", version = "0.133.3" }
323+
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.133.3" }
324+
cranelift-reader = { path = "cranelift/reader", version = "0.133.3" }
325325
cranelift-filetests = { path = "cranelift/filetests" }
326-
cranelift-object = { path = "cranelift/object", version = "0.133.2" }
327-
cranelift-jit = { path = "cranelift/jit", version = "0.133.2" }
326+
cranelift-object = { path = "cranelift/object", version = "0.133.3" }
327+
cranelift-jit = { path = "cranelift/jit", version = "0.133.3" }
328328
cranelift-fuzzgen = { path = "cranelift/fuzzgen" }
329-
cranelift-bforest = { path = "cranelift/bforest", version = "0.133.2" }
330-
cranelift-bitset = { path = "cranelift/bitset", version = "0.133.2" }
331-
cranelift-control = { path = "cranelift/control", version = "0.133.2", default-features = false }
332-
cranelift-srcgen = { path = "cranelift/srcgen", version = "0.133.2" }
333-
cranelift = { path = "cranelift/umbrella", version = "0.133.2" }
329+
cranelift-bforest = { path = "cranelift/bforest", version = "0.133.3" }
330+
cranelift-bitset = { path = "cranelift/bitset", version = "0.133.3" }
331+
cranelift-control = { path = "cranelift/control", version = "0.133.3", default-features = false }
332+
cranelift-srcgen = { path = "cranelift/srcgen", version = "0.133.3" }
333+
cranelift = { path = "cranelift/umbrella", version = "0.133.3" }
334334

335335
# Winch crates in this workspace.
336-
winch-codegen = { path = "winch/codegen", version = "=46.0.2" }
336+
winch-codegen = { path = "winch/codegen", version = "=46.0.3" }
337337

338338
# Internal crates not published to crates.io used in testing, builds, etc
339339
wasi-preview1-component-adapter = { path = "crates/wasi-preview1-component-adapter" }

RELEASES.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 46.0.3
2+
3+
Released 2026-08-20
4+
5+
### Fixed
6+
7+
* Guest controlled-size host heap allocation through WASIp3 streams.
8+
[GHSA-x84v-gj2h-g759](https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-x84v-gj2h-g759)
9+
10+
* Filesystem sandbox escape when paths or symlinks contain trailing slashes.
11+
[GHSA-vqjp-4c8c-hfgg](https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-vqjp-4c8c-hfgg)
12+
13+
--------------------------------------------------------------------------------
14+
115
## 46.0.2
216

317
Released 2026-07-31.

cranelift/assembler-x64/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-assembler-x64"
33
description = "A Cranelift-specific x64 assembler"
4-
version = "0.133.2"
4+
version = "0.133.3"
55
license = "Apache-2.0 WITH LLVM-exception"
66
edition.workspace = true
77
rust-version.workspace = true
@@ -16,7 +16,7 @@ arbtest = { workspace = true }
1616
capstone = { workspace = true }
1717

1818
[build-dependencies]
19-
cranelift-assembler-x64-meta = { path = "meta", version = "0.133.2" }
19+
cranelift-assembler-x64-meta = { path = "meta", version = "0.133.3" }
2020

2121
[lints]
2222
workspace = true

cranelift/assembler-x64/meta/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cranelift-assembler-x64-meta"
33
description = "Generate a Cranelift-specific assembler for x64 instructions"
4-
version = "0.133.2"
4+
version = "0.133.3"
55
license = "Apache-2.0 WITH LLVM-exception"
66
edition.workspace = true
77
rust-version.workspace = true

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.133.2"
4+
version = "0.133.3"
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.133.2"
4+
version = "0.133.3"
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.133.2"
4+
version = "0.133.3"
55
description = "Low-level code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-codegen"
@@ -25,7 +25,7 @@ anyhow = { workspace = true, optional = true, features = ['std'] }
2525
bumpalo = { workspace = true }
2626
capstone = { workspace = true, optional = true }
2727
cranelift-assembler-x64 = { workspace = true }
28-
cranelift-codegen-shared = { path = "./shared", version = "0.133.2" }
28+
cranelift-codegen-shared = { path = "./shared", version = "0.133.3" }
2929
cranelift-entity = { workspace = true }
3030
cranelift-bforest = { workspace = true }
3131
cranelift-bitset = { workspace = true }
@@ -57,8 +57,8 @@ env_logger = { workspace = true }
5757
proptest = { workspace = true }
5858

5959
[build-dependencies]
60-
cranelift-codegen-meta = { path = "meta", version = "0.133.2" }
61-
cranelift-isle = { path = "../isle/isle", version = "=0.133.2" }
60+
cranelift-codegen-meta = { path = "meta", version = "0.133.3" }
61+
cranelift-isle = { path = "../isle/isle", version = "=0.133.3" }
6262

6363
[features]
6464
default = ["std", "unwind", "host-arch", "timing"]

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.133.2"
4+
version = "0.133.3"
55
description = "Metaprogram for cranelift-codegen code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -17,8 +17,8 @@ rustdoc-args = ["--document-private-items"]
1717

1818
[dependencies]
1919
cranelift-srcgen = { workspace = true }
20-
cranelift-assembler-x64-meta = { path = "../../assembler-x64/meta", version = "0.133.2" }
21-
cranelift-codegen-shared = { path = "../shared", version = "0.133.2" }
20+
cranelift-assembler-x64-meta = { path = "../../assembler-x64/meta", version = "0.133.3" }
21+
cranelift-codegen-shared = { path = "../shared", version = "0.133.3" }
2222
pulley-interpreter = { workspace = true, optional = true }
2323
heck = "0.5.0"
2424

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.133.2"
4+
version = "0.133.3"
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"

0 commit comments

Comments
 (0)