From 60fa6fb6bb72ae021b184053d760505202505162 Mon Sep 17 00:00:00 2001 From: Edoardo Marangoni Date: Tue, 17 Dec 2024 12:36:39 +0100 Subject: [PATCH 1/7] Update CHANGELOG --- CHANGELOG.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0e15682bd7..a3bc3b83e05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,30 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C ## **Unreleased** +## 5.0.4 - 17/12/2024 + +## Added + + +## Changed + + - [#5305](https://github.com/wasmerio/wasmer/pull/5305) make `AppConfig.name` optional in wasmer-config + - [#5292](https://github.com/wasmerio/wasmer/pull/5292) Pass readme content instead of readme file name + - [#5300](https://github.com/wasmerio/wasmer/pull/5300) Refactor path_create_directory and path_remove_directory to… + - [#5277](https://github.com/wasmerio/wasmer/pull/5277) Rephrase the description for `--no-persist-id` + - [#5291](https://github.com/wasmerio/wasmer/pull/5291) chore(wasix): make Capabilities hashable + - [#5293](https://github.com/wasmerio/wasmer/pull/5293) LoongArch: Switch to the medium code model + - [#5283](https://github.com/wasmerio/wasmer/pull/5283) Better network sandbox + +## Fixed + + - [#5306](https://github.com/wasmerio/wasmer/pull/5306) Fix build for 32bit targets (usize == u32) + - [#5307](https://github.com/wasmerio/wasmer/pull/5307) A few WASIX FS-related fixes + - [#5285](https://github.com/wasmerio/wasmer/pull/5285) Fix handling of the root path in WasiFS resulting in a bad inode structure + - [#5294](https://github.com/wasmerio/wasmer/pull/5294) Fix typo in readme file + + + ## 5.0.3 - 07/12/2024 This release adds support for a more fine-grained and flexible control over the network sandbox. Also, some bug fixes From 4ca260af3f1665322320d8d6fe56f734318b5941 Mon Sep 17 00:00:00 2001 From: Edoardo Marangoni Date: Tue, 17 Dec 2024 12:36:40 +0100 Subject: [PATCH 2/7] Release 5.0.4 --- Cargo.toml | 24 +++++++++---------- lib/api/Cargo.toml | 22 ++++++++--------- .../macro-wasmer-universal-test/Cargo.toml | 2 +- lib/c-api/Cargo.toml | 14 +++++------ .../wasmer-capi-examples-runner/Cargo.toml | 2 +- .../tests/wasmer-c-api-test-runner/Cargo.toml | 2 +- lib/cache/Cargo.toml | 6 ++--- lib/cli-compiler/Cargo.toml | 12 +++++----- lib/cli/Cargo.toml | 16 ++++++------- lib/compiler-cranelift/Cargo.toml | 4 ++-- lib/compiler-llvm/Cargo.toml | 6 ++--- lib/compiler-singlepass/Cargo.toml | 4 ++-- lib/compiler/Cargo.toml | 4 ++-- lib/journal/Cargo.toml | 2 +- lib/middlewares/Cargo.toml | 8 +++---- lib/swift/Cargo.toml | 2 +- lib/sys-utils/Cargo.toml | 8 +++---- lib/vm/Cargo.toml | 2 +- lib/wai-bindgen-wasmer/Cargo.toml | 2 +- lib/wasi-types/Cargo.toml | 6 ++--- lib/wasix/Cargo.toml | 8 +++---- scripts/update-version.py | 4 ++-- scripts/windows-installer/wasmer.iss | 2 +- tests/integration/cli/Cargo.toml | 2 +- tests/integration/ios/Cargo.toml | 2 +- tests/lib/wast/Cargo.toml | 4 ++-- tests/wasi-wast/Cargo.toml | 2 +- tests/wasmer-argus/Cargo.toml | 2 +- 28 files changed, 87 insertions(+), 87 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e86fe237996..22813a0c53c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,19 +12,19 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer = { version = "=5.0.3", path = "lib/api", default-features = false } -wasmer-compiler = { version = "=5.0.3", path = "lib/compiler", features = [ +wasmer = { version = "=5.0.4", path = "lib/api", default-features = false } +wasmer-compiler = { version = "=5.0.4", path = "lib/compiler", features = [ "compiler", ], optional = true } -wasmer-compiler-cranelift = { version = "=5.0.3", path = "lib/compiler-cranelift", optional = true } -wasmer-compiler-singlepass = { version = "=5.0.3", path = "lib/compiler-singlepass", optional = true } -wasmer-compiler-llvm = { version = "=5.0.3", path = "lib/compiler-llvm", optional = true } +wasmer-compiler-cranelift = { version = "=5.0.4", path = "lib/compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "=5.0.4", path = "lib/compiler-singlepass", optional = true } +wasmer-compiler-llvm = { version = "=5.0.4", path = "lib/compiler-llvm", optional = true } wasmer-wasix = { path = "lib/wasix", optional = true } -wasmer-wast = { version = "=5.0.3", path = "tests/lib/wast", optional = true } -wasi-test-generator = { version = "=5.0.3", path = "tests/wasi-wast", optional = true } -wasmer-cache = { version = "=5.0.3", path = "lib/cache", optional = true } -wasmer-types = { version = "=5.0.3", path = "lib/types" } -wasmer-middlewares = { version = "=5.0.3", path = "lib/middlewares", optional = true } +wasmer-wast = { version = "=5.0.4", path = "tests/lib/wast", optional = true } +wasi-test-generator = { version = "=5.0.4", path = "tests/wasi-wast", optional = true } +wasmer-cache = { version = "=5.0.4", path = "lib/cache", optional = true } +wasmer-types = { version = "=5.0.4", path = "lib/types" } +wasmer-middlewares = { version = "=5.0.4", path = "lib/middlewares", optional = true } # Third party dependencies cfg-if = "1.0" @@ -83,7 +83,7 @@ homepage = "https://wasmer.io/" license = "MIT" repository = "https://github.com/wasmerio/wasmer" rust-version = "1.81" -version = "5.0.3" +version = "5.0.4" [workspace.dependencies] # Repo-local crates @@ -132,7 +132,7 @@ glob = "0.3" rustc_version = "0.4" [dev-dependencies] -wasmer = { version = "=5.0.3", path = "lib/api", features = [ +wasmer = { version = "=5.0.4", path = "lib/api", features = [ "compiler", "singlepass", "sys", diff --git a/lib/api/Cargo.toml b/lib/api/Cargo.toml index 572edb8d2e3..da0120006c7 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -50,15 +50,15 @@ loupe = { version = "0.1.3", optional = true, features = [ # Dependencies and Development Dependencies for `sys`. [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # - Mandatory dependencies for `sys`. -wasmer-vm = { path = "../vm", version = "=5.0.3" } -wasmer-compiler = { path = "../compiler", version = "=5.0.3" } -wasmer-derive = { path = "../derive", version = "=5.0.3" } -wasmer-types = { path = "../types", version = "=5.0.3" } +wasmer-vm = { path = "../vm", version = "=5.0.4" } +wasmer-compiler = { path = "../compiler", version = "=5.0.4" } +wasmer-derive = { path = "../derive", version = "=5.0.4" } +wasmer-types = { path = "../types", version = "=5.0.4" } target-lexicon = { version = "0.12.2", default-features = false } # - Optional dependencies for `sys`. -wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.3", optional = true } -wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.3", optional = true } -wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.3", optional = true } +wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.4", optional = true } +wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.4", optional = true } +wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.4", optional = true } wasm-bindgen = { version = "0.2.74", optional = true } js-sys = { version = "0.3.51", optional = true } @@ -73,17 +73,17 @@ windows-sys = "0.59" wat = "1.0" tempfile = "3.6.0" anyhow = "1.0" -macro-wasmer-universal-test = { version = "5.0.3", path = "./macro-wasmer-universal-test" } +macro-wasmer-universal-test = { version = "5.0.4", path = "./macro-wasmer-universal-test" } # Dependencies and Develoment Dependencies for `js`. [target.'cfg(target_arch = "wasm32")'.dependencies] # - Mandatory dependencies for `js`. -wasmer-types = { path = "../types", version = "=5.0.3", default-features = false, features = [ +wasmer-types = { path = "../types", version = "=5.0.4", default-features = false, features = [ "std", ] } wasm-bindgen = "0.2.74" js-sys = "0.3.51" -wasmer-derive = { path = "../derive", version = "=5.0.3" } +wasmer-derive = { path = "../derive", version = "=5.0.4" } # - Optional dependencies for `js`. wasmparser = { workspace = true, default-features = false, optional = true } hashbrown = { version = "0.11", optional = true } @@ -96,7 +96,7 @@ target-lexicon = { workspace = true } wat = "1.0" anyhow = "1.0" wasm-bindgen-test = "0.3.0" -macro-wasmer-universal-test = { version = "5.0.3", path = "./macro-wasmer-universal-test" } +macro-wasmer-universal-test = { version = "5.0.4", path = "./macro-wasmer-universal-test" } # Specific to `js`. # diff --git a/lib/api/macro-wasmer-universal-test/Cargo.toml b/lib/api/macro-wasmer-universal-test/Cargo.toml index 8025520d1ac..12d57497ab6 100644 --- a/lib/api/macro-wasmer-universal-test/Cargo.toml +++ b/lib/api/macro-wasmer-universal-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "macro-wasmer-universal-test" -version = "5.0.3" +version = "5.0.4" edition = "2021" license = "MIT" description = "Universal test macro for wasmer-test" diff --git a/lib/c-api/Cargo.toml b/lib/c-api/Cargo.toml index 71132d3ae1d..043a34dc259 100644 --- a/lib/c-api/Cargo.toml +++ b/lib/c-api/Cargo.toml @@ -24,13 +24,13 @@ crate-type = ["staticlib", "cdylib"] #"cdylib", "rlib", "staticlib"] [dependencies] # We rename `wasmer` to `wasmer-api` to avoid the conflict with this # library name (see `[lib]`). -wasmer-api = { version = "=5.0.3", path = "../api", default-features = false, package = "wasmer" } -wasmer-compiler = { version = "=5.0.3", path = "../compiler", optional = true } -wasmer-compiler-cranelift = { version = "=5.0.3", path = "../compiler-cranelift", optional = true } -wasmer-compiler-llvm = { version = "=5.0.3", path = "../compiler-llvm", optional = true } -wasmer-compiler-singlepass = { version = "=5.0.3", path = "../compiler-singlepass", optional = true } -wasmer-middlewares = { version = "=5.0.3", path = "../middlewares", optional = true } -wasmer-types = { version = "=5.0.3", path = "../types" } +wasmer-api = { version = "=5.0.4", path = "../api", default-features = false, package = "wasmer" } +wasmer-compiler = { version = "=5.0.4", path = "../compiler", optional = true } +wasmer-compiler-cranelift = { version = "=5.0.4", path = "../compiler-cranelift", optional = true } +wasmer-compiler-llvm = { version = "=5.0.4", path = "../compiler-llvm", optional = true } +wasmer-compiler-singlepass = { version = "=5.0.4", path = "../compiler-singlepass", optional = true } +wasmer-middlewares = { version = "=5.0.4", path = "../middlewares", optional = true } +wasmer-types = { version = "=5.0.4", path = "../types" } wasmer-wasix = { path = "../wasix", version="=0.33.0", features = ["host-fs", "host-vnet"], optional = true } webc = { workspace = true, optional = true } virtual-fs = { version = "0.20.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] } diff --git a/lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml b/lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml index 1e2ccca0639..e707fc36df6 100644 --- a/lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml +++ b/lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-capi-examples-runner" -version = "5.0.3" +version = "5.0.4" edition = "2021" license = "MIT" description = "wasmer-capi-examples-runner" diff --git a/lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml b/lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml index 29a5aaeffa1..4fd9c9689cf 100644 --- a/lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml +++ b/lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-c-api-test-runner" -version = "5.0.3" +version = "5.0.4" edition = "2021" license = "MIT" description = "wasmer-c-api-test-runner" diff --git a/lib/cache/Cargo.toml b/lib/cache/Cargo.toml index 5663b8c4066..edbbf0981c5 100644 --- a/lib/cache/Cargo.toml +++ b/lib/cache/Cargo.toml @@ -13,7 +13,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer = { path = "../api", version = "=5.0.3", default-features = false } +wasmer = { path = "../api", version = "=5.0.4", default-features = false } hex = "0.4" thiserror = "1" blake3 = "1.0" @@ -26,8 +26,8 @@ clap_derive = { version = "=4.4.7" } clap_lex = { version = "=0.6.0" } tempfile = "3.6.0" rand = "0.8.3" -wasmer = { path = "../api", version = "=5.0.3", default-features = false, features = ["sys", "cranelift"] } -wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.3" } +wasmer = { path = "../api", version = "=5.0.4", default-features = false, features = ["sys", "cranelift"] } +wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.4" } [features] default = ["filesystem"] diff --git a/lib/cli-compiler/Cargo.toml b/lib/cli-compiler/Cargo.toml index 38223c04ace..7fc15932541 100644 --- a/lib/cli-compiler/Cargo.toml +++ b/lib/cli-compiler/Cargo.toml @@ -20,10 +20,10 @@ path = "src/bin/wasmer_compiler.rs" doc = false [dependencies] -wasmer-compiler = { version = "=5.0.3", path = "../compiler", features = [ +wasmer-compiler = { version = "=5.0.4", path = "../compiler", features = [ "compiler", ] } -wasmer-types = { version = "=5.0.3", path = "../types" } +wasmer-types = { version = "=5.0.4", path = "../types" } is-terminal = "0.4.7" colored = "2.0" anyhow = "1.0" @@ -38,15 +38,15 @@ log = { version = "0.4", optional = true } target-lexicon = { version = "0.12", features = ["std"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -wasmer-compiler-singlepass = { version = "=5.0.3", path = "../compiler-singlepass", optional = true } -wasmer-compiler-cranelift = { version = "=5.0.3", path = "../compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "=5.0.4", path = "../compiler-singlepass", optional = true } +wasmer-compiler-cranelift = { version = "=5.0.4", path = "../compiler-cranelift", optional = true } clap = { version = "4.4.0", features = ["derive", "env"] } [target.'cfg(target_arch = "wasm32")'.dependencies] -wasmer-compiler-singlepass = { version = "=5.0.3", path = "../compiler-singlepass", optional = true, default-features = false, features = [ +wasmer-compiler-singlepass = { version = "=5.0.4", path = "../compiler-singlepass", optional = true, default-features = false, features = [ "wasm", ] } -wasmer-compiler-cranelift = { version = "=5.0.3", path = "../compiler-cranelift", optional = true, default-features = false, features = [ +wasmer-compiler-cranelift = { version = "=5.0.4", path = "../compiler-cranelift", optional = true, default-features = false, features = [ "wasm", ] } # NOTE: Must use different features for clap because the "color" feature does not diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index 1e51d64c686..46d0cbbb627 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -110,16 +110,16 @@ enable-serde = [ [dependencies] # Repo-local dependencies. -wasmer = { version = "=5.0.3", path = "../api", default-features = false } -wasmer-compiler = { version = "=5.0.3", path = "../compiler", features = [ +wasmer = { version = "=5.0.4", path = "../api", default-features = false } +wasmer-compiler = { version = "=5.0.4", path = "../compiler", features = [ "compiler", ], optional = true } -wasmer-compiler-cranelift = { version = "=5.0.3", path = "../compiler-cranelift", optional = true } -wasmer-compiler-singlepass = { version = "=5.0.3", path = "../compiler-singlepass", optional = true } -wasmer-compiler-llvm = { version = "=5.0.3", path = "../compiler-llvm", optional = true } +wasmer-compiler-cranelift = { version = "=5.0.4", path = "../compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "=5.0.4", path = "../compiler-singlepass", optional = true } +wasmer-compiler-llvm = { version = "=5.0.4", path = "../compiler-llvm", optional = true } wasmer-package.workspace = true -wasmer-vm = { version = "=5.0.3", path = "../vm", optional = true } +wasmer-vm = { version = "=5.0.4", path = "../vm", optional = true } wasmer-wasix = { path = "../wasix", version = "=0.33.0", features = [ "logging", "webc_runner_rt_wcgi", @@ -128,8 +128,8 @@ wasmer-wasix = { path = "../wasix", version = "=0.33.0", features = [ "host-fs", "ctrlc", ] } -wasmer-wast = { version = "=5.0.3", path = "../../tests/lib/wast", optional = true } -wasmer-types = { version = "=5.0.3", path = "../types", features = [ +wasmer-wast = { version = "=5.0.4", path = "../../tests/lib/wast", optional = true } +wasmer-types = { version = "=5.0.4", path = "../types", features = [ "enable-serde", ] } virtual-fs = { version = "0.20.0", path = "../virtual-fs", default-features = false, features = [ diff --git a/lib/compiler-cranelift/Cargo.toml b/lib/compiler-cranelift/Cargo.toml index 3a3f172d29a..9373cef91b0 100644 --- a/lib/compiler-cranelift/Cargo.toml +++ b/lib/compiler-cranelift/Cargo.toml @@ -14,11 +14,11 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-compiler = { path = "../compiler", version = "=5.0.3", features = [ +wasmer-compiler = { path = "../compiler", version = "=5.0.4", features = [ "translator", "compiler", ], default-features = false } -wasmer-types = { path = "../types", version = "=5.0.3", default-features = false, features = [ +wasmer-types = { path = "../types", version = "=5.0.4", default-features = false, features = [ "std", ] } cranelift-entity = { version = "=0.110.2", default-features = false } diff --git a/lib/compiler-llvm/Cargo.toml b/lib/compiler-llvm/Cargo.toml index 4f0a4a6ab38..c62dfa0cce6 100644 --- a/lib/compiler-llvm/Cargo.toml +++ b/lib/compiler-llvm/Cargo.toml @@ -14,11 +14,11 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-compiler = { path = "../compiler", version = "=5.0.3", features = [ +wasmer-compiler = { path = "../compiler", version = "=5.0.4", features = [ "translator", "compiler" ] } -wasmer-vm = { path = "../vm", version = "=5.0.3" } -wasmer-types = { path = "../types", version = "=5.0.3" } +wasmer-vm = { path = "../vm", version = "=5.0.4" } +wasmer-types = { path = "../types", version = "=5.0.4" } target-lexicon = { version = "0.12.2", default-features = false } smallvec = "1.6" object = { version = "0.30.3", default-features = false, features = ["read"] } diff --git a/lib/compiler-singlepass/Cargo.toml b/lib/compiler-singlepass/Cargo.toml index b190109212c..4c379feba83 100644 --- a/lib/compiler-singlepass/Cargo.toml +++ b/lib/compiler-singlepass/Cargo.toml @@ -14,8 +14,8 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-compiler = { path = "../compiler", version = "=5.0.3", features = ["translator", "compiler"], default-features = false } -wasmer-types = { path = "../types", version = "=5.0.3", default-features = false, features = ["std"] } +wasmer-compiler = { path = "../compiler", version = "=5.0.4", features = ["translator", "compiler"], default-features = false } +wasmer-types = { path = "../types", version = "=5.0.4", default-features = false, features = ["std"] } hashbrown = { version = "0.11", optional = true } gimli = { workspace = true, optional = true } enumset.workspace = true diff --git a/lib/compiler/Cargo.toml b/lib/compiler/Cargo.toml index 1764f48e134..0f3d5c0f5a6 100644 --- a/lib/compiler/Cargo.toml +++ b/lib/compiler/Cargo.toml @@ -13,7 +13,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-types = { path = "../types", version = "=5.0.3", default-features = false } +wasmer-types = { path = "../types", version = "=5.0.4", default-features = false } wasmparser = { workspace = true, optional = true, default-features = false } enumset.workspace = true hashbrown = { version = "0.11", optional = true } @@ -46,7 +46,7 @@ target-lexicon = { workspace = true } object = { workspace = true, features = ["write"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -wasmer-vm = { path = "../vm", version = "=5.0.3" } +wasmer-vm = { path = "../vm", version = "=5.0.4" } region = { version = "3.0" } [target.'cfg(target_os = "windows")'.dependencies] diff --git a/lib/journal/Cargo.toml b/lib/journal/Cargo.toml index e3be3a76b35..3e5c5211900 100644 --- a/lib/journal/Cargo.toml +++ b/lib/journal/Cargo.toml @@ -14,7 +14,7 @@ default = ["log-file", "wasmer/sys"] log-file = ["shared-buffer"] [dependencies] -wasmer = { default-features = false, path = "../api", version = "=5.0.3" } +wasmer = { default-features = false, path = "../api", version = "=5.0.4" } wasmer-wasix-types = { path = "../wasi-types", version = "0.33.0", features = [ "enable-serde", ] } diff --git a/lib/middlewares/Cargo.toml b/lib/middlewares/Cargo.toml index 66aecf04053..95be59fbed5 100644 --- a/lib/middlewares/Cargo.toml +++ b/lib/middlewares/Cargo.toml @@ -13,12 +13,12 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer = { path = "../api", version = "=5.0.3", default-features = false, features = ["compiler"] } -wasmer-types = { path = "../types", version = "=5.0.3" } -wasmer-vm = { path = "../vm", version = "=5.0.3" } +wasmer = { path = "../api", version = "=5.0.4", default-features = false, features = ["compiler"] } +wasmer-types = { path = "../types", version = "=5.0.4" } +wasmer-vm = { path = "../vm", version = "=5.0.4" } [dev-dependencies] -wasmer = { path = "../api", version = "=5.0.3", features = ["compiler"] } +wasmer = { path = "../api", version = "=5.0.4", features = ["compiler"] } [badges] maintenance = { status = "actively-developed" } diff --git a/lib/swift/Cargo.toml b/lib/swift/Cargo.toml index 236261fd054..33391da53a7 100644 --- a/lib/swift/Cargo.toml +++ b/lib/swift/Cargo.toml @@ -18,7 +18,7 @@ uniffi = "0.27" virtual-fs = { path = "../virtual-fs", version = "=0.20.0", default-features = false, features = [ "webc-fs", ] } -wasmer = { version = "=5.0.3", path = "../api", default-features = false, features = [ +wasmer = { version = "=5.0.4", path = "../api", default-features = false, features = [ "wamr", "std", ] } diff --git a/lib/sys-utils/Cargo.toml b/lib/sys-utils/Cargo.toml index 5b34e8e5fba..38a86774205 100644 --- a/lib/sys-utils/Cargo.toml +++ b/lib/sys-utils/Cargo.toml @@ -12,9 +12,9 @@ repository.workspace = true rust-version.workspace = true [dependencies] -wasmer = { path = "../api", version = "=5.0.3", default-features = false, features = ["sys", "compiler"] } -wasmer-vm = { path = "../vm", version = "=5.0.3" } -wasmer-types = { path = "../types", version = "=5.0.3" } +wasmer = { path = "../api", version = "=5.0.4", default-features = false, features = ["sys", "compiler"] } +wasmer-vm = { path = "../vm", version = "=5.0.4" } +wasmer-types = { path = "../types", version = "=5.0.4" } region = { version = "3.0" } tracing = "0.1.37" @@ -23,7 +23,7 @@ libc.workspace = true [dev-dependencies] wasmer-wasix.workspace = true -wasmer = { path = "../api", version = "=5.0.3", default-features = false, features = ["sys", "compiler", "cranelift"] } +wasmer = { path = "../api", version = "=5.0.4", default-features = false, features = ["sys", "compiler", "cranelift"] } tracing-subscriber = { version = "0.3.16", features = ["fmt"] } tracing = "0.1.37" diff --git a/lib/vm/Cargo.toml b/lib/vm/Cargo.toml index 7afecc937f4..b1a23813135 100644 --- a/lib/vm/Cargo.toml +++ b/lib/vm/Cargo.toml @@ -15,7 +15,7 @@ version.workspace = true [dependencies] memoffset.workspace = true dashmap.workspace = true -wasmer-types = { path = "../types", version = "=5.0.3" } +wasmer-types = { path = "../types", version = "=5.0.4" } libc.workspace = true indexmap = { workspace = true } thiserror = "1.0" diff --git a/lib/wai-bindgen-wasmer/Cargo.toml b/lib/wai-bindgen-wasmer/Cargo.toml index 0291f894e3c..bbeb34f8b03 100644 --- a/lib/wai-bindgen-wasmer/Cargo.toml +++ b/lib/wai-bindgen-wasmer/Cargo.toml @@ -20,7 +20,7 @@ once_cell = "1.13" thiserror = "1.0" tracing-lib = { version = "0.1.26", optional = true, package = "tracing" } wai-bindgen-wasmer-impl = { version = "0.2.2" } -wasmer = { version = "=5.0.3", path = "../api", default-features = false } +wasmer = { version = "=5.0.4", path = "../api", default-features = false } [features] # Enables generated code to emit events via the `tracing` crate whenever wasm is diff --git a/lib/wasi-types/Cargo.toml b/lib/wasi-types/Cargo.toml index 9d298b3323e..e9577e2a9aa 100644 --- a/lib/wasi-types/Cargo.toml +++ b/lib/wasi-types/Cargo.toml @@ -15,9 +15,9 @@ rust-version.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wasmer = { default-features = false, path = "../api", version = "=5.0.3" } -wasmer-types = { path = "../types", version = "=5.0.3" } -wasmer-derive = { path = "../derive", version = "=5.0.3" } +wasmer = { default-features = false, path = "../api", version = "=5.0.4" } +wasmer-types = { path = "../types", version = "=5.0.4" } +wasmer-derive = { path = "../derive", version = "=5.0.4" } wai-bindgen-gen-rust = "0.2.1" wai-bindgen-rust = { version = "0.2.1", default-features = false, features = ["macros"] } wai-bindgen-gen-rust-wasm = "0.2.1" diff --git a/lib/wasix/Cargo.toml b/lib/wasix/Cargo.toml index 933821c6816..ba5348129c2 100644 --- a/lib/wasix/Cargo.toml +++ b/lib/wasix/Cargo.toml @@ -17,8 +17,8 @@ wasmer-package.workspace = true wasmer-wasix-types = { path = "../wasi-types", version = "0.33.0", features = [ "enable-serde", ] } -wasmer-types = { path = "../types", version = "=5.0.3", default-features = false } -wasmer = { path = "../api", version = "=5.0.3", default-features = false, features = [ +wasmer-types = { path = "../types", version = "=5.0.4", default-features = false } +wasmer = { path = "../api", version = "=5.0.4", default-features = false, features = [ "wat", "js-serializable-module", ] } @@ -151,7 +151,7 @@ windows-sys = { version = "0.59", features = [ terminal_size = { version = "0.3.0" } [dev-dependencies] -wasmer = { path = "../api", version = "=5.0.3", default-features = false, features = [ +wasmer = { path = "../api", version = "=5.0.4", default-features = false, features = [ "wat", "js-serializable-module", ] } @@ -172,7 +172,7 @@ tracing-wasm = "0.2" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tracing-subscriber = { version = "^0.3" } -wasmer = { path = "../api", version = "=5.0.3", default-features = false, features = [ +wasmer = { path = "../api", version = "=5.0.4", default-features = false, features = [ "wat", "js-serializable-module", "cranelift", diff --git a/scripts/update-version.py b/scripts/update-version.py index c5be3c9899b..2f6a790d5e3 100644 --- a/scripts/update-version.py +++ b/scripts/update-version.py @@ -1,7 +1,7 @@ #!/usr/bin/python -PREVIOUS_VERSION='5.0.2' -NEXT_VERSION='5.0.3' +PREVIOUS_VERSION='5.0.3' +NEXT_VERSION='5.0.4' import os import re diff --git a/scripts/windows-installer/wasmer.iss b/scripts/windows-installer/wasmer.iss index d6caef7c776..8177274966c 100644 --- a/scripts/windows-installer/wasmer.iss +++ b/scripts/windows-installer/wasmer.iss @@ -1,6 +1,6 @@ [Setup] AppName=Wasmer -AppVersion=5.0.3 +AppVersion=5.0.4 DefaultDirName={pf}\Wasmer DefaultGroupName=Wasmer Compression=lzma2 diff --git a/tests/integration/cli/Cargo.toml b/tests/integration/cli/Cargo.toml index 828d3f40fab..11b260f3eda 100644 --- a/tests/integration/cli/Cargo.toml +++ b/tests/integration/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-integration-tests-cli" -version = "5.0.3" +version = "5.0.4" authors = ["Wasmer Engineering Team "] description = "CLI integration tests" repository = "https://github.com/wasmerio/wasmer" diff --git a/tests/integration/ios/Cargo.toml b/tests/integration/ios/Cargo.toml index a841260d4d9..8067b45651f 100644 --- a/tests/integration/ios/Cargo.toml +++ b/tests/integration/ios/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-integration-tests-ios" -version = "5.0.3" +version = "5.0.4" authors = ["Wasmer Engineering Team "] description = "iOS integration tests" repository = "https://github.com/wasmerio/wasmer" diff --git a/tests/lib/wast/Cargo.toml b/tests/lib/wast/Cargo.toml index 759ed54c006..c9ea7da52ec 100644 --- a/tests/lib/wast/Cargo.toml +++ b/tests/lib/wast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wast" -version = "5.0.3" +version = "5.0.4" authors = ["Wasmer Engineering Team "] description = "wast testing support for wasmer" license = "MIT OR Apache-2.0 WITH LLVM-exception" @@ -13,7 +13,7 @@ edition = "2018" [dependencies] wasmer-types = { path = "../../../lib/types", version="=5.0.3" } wasmer-wasix = { path = "../../../lib/wasix", version="=0.33.0" } -wasmer = { path = "../../../lib/api", version = "=5.0.3", default-features = false } +wasmer = { path = "../../../lib/api", version = "=5.0.4", default-features = false } virtual-fs = { path = "../../../lib/virtual-fs", version = "0.20.0" } anyhow = "1.0" diff --git a/tests/wasi-wast/Cargo.toml b/tests/wasi-wast/Cargo.toml index 8e779ba01a8..536117cd087 100644 --- a/tests/wasi-wast/Cargo.toml +++ b/tests/wasi-wast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasi-test-generator" -version = "5.0.3" +version = "5.0.4" description = "Tests for our WASI implementation" license = "MIT" authors = ["Wasmer Engineering Team "] diff --git a/tests/wasmer-argus/Cargo.toml b/tests/wasmer-argus/Cargo.toml index fa5e1bb1d93..9ec9e1e8613 100644 --- a/tests/wasmer-argus/Cargo.toml +++ b/tests/wasmer-argus/Cargo.toml @@ -24,7 +24,7 @@ clap = {version = "4.4.11", features = ["derive", "string"]} tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.114" -wasmer = { version = "5.0.3", path = "../../lib/api", features = ["engine", "core", "singlepass", "cranelift", "llvm"], optional = true } +wasmer = { version = "5.0.4", path = "../../lib/api", features = ["engine", "core", "singlepass", "cranelift", "llvm"], optional = true } derive_more = "0.99.17" webc.workspace = true async-trait = "0.1.77" From 76cbdba05982996772ef672b767b3da6cfaa1faa Mon Sep 17 00:00:00 2001 From: Edoardo Marangoni Date: Tue, 17 Dec 2024 13:04:55 +0100 Subject: [PATCH 3/7] update 0.x package versions --- Cargo.lock | 64 +++++++++++++++---------------- Cargo.toml | 2 +- lib/backend-api/Cargo.toml | 4 +- lib/c-api/Cargo.toml | 2 +- lib/cli/Cargo.toml | 8 ++-- lib/config/Cargo.toml | 2 +- lib/journal/Cargo.toml | 4 +- lib/package/Cargo.toml | 4 +- lib/swift/Cargo.toml | 4 +- lib/sys-utils/Cargo.toml | 2 +- lib/virtual-io/Cargo.toml | 2 +- lib/virtual-net/Cargo.toml | 2 +- lib/wai-bindgen-wasmer/Cargo.toml | 2 +- lib/wasi-types/Cargo.toml | 6 ++- lib/wasix/Cargo.toml | 10 ++--- tests/lib/wast/Cargo.toml | 8 ++-- 16 files changed, 64 insertions(+), 62 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d200739c103..acc290284e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3099,7 +3099,7 @@ dependencies = [ [[package]] name = "macro-wasmer-universal-test" -version = "5.0.3" +version = "5.0.4" dependencies = [ "proc-macro2", "quote", @@ -6053,7 +6053,7 @@ dependencies = [ [[package]] name = "virtual-mio" -version = "0.6.0" +version = "0.7.0" dependencies = [ "async-trait", "bytes", @@ -6166,7 +6166,7 @@ dependencies = [ [[package]] name = "wai-bindgen-wasmer" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "async-trait", @@ -6251,7 +6251,7 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasi-test-generator" -version = "5.0.3" +version = "5.0.4" dependencies = [ "glob", "gumdrop", @@ -6435,7 +6435,7 @@ dependencies = [ [[package]] name = "wasmer" -version = "5.0.3" +version = "5.0.4" dependencies = [ "anyhow", "bindgen", @@ -6479,7 +6479,7 @@ dependencies = [ [[package]] name = "wasmer-argus" -version = "5.0.3" +version = "5.0.4" dependencies = [ "anyhow", "async-trait", @@ -6504,7 +6504,7 @@ dependencies = [ [[package]] name = "wasmer-backend-api" -version = "0.3.0" +version = "0.4.0" dependencies = [ "anyhow", "async-tungstenite", @@ -6549,7 +6549,7 @@ dependencies = [ [[package]] name = "wasmer-c-api" -version = "5.0.3" +version = "5.0.4" dependencies = [ "cbindgen", "cfg-if", @@ -6579,7 +6579,7 @@ dependencies = [ [[package]] name = "wasmer-c-api-test-runner" -version = "5.0.3" +version = "5.0.4" dependencies = [ "cc", "regex", @@ -6589,7 +6589,7 @@ dependencies = [ [[package]] name = "wasmer-cache" -version = "5.0.3" +version = "5.0.4" dependencies = [ "blake3", "clap", @@ -6607,7 +6607,7 @@ dependencies = [ [[package]] name = "wasmer-capi-examples-runner" -version = "5.0.3" +version = "5.0.4" dependencies = [ "cc", "regex", @@ -6617,7 +6617,7 @@ dependencies = [ [[package]] name = "wasmer-cli" -version = "5.0.3" +version = "5.0.4" dependencies = [ "anyhow", "assert_cmd 2.0.16", @@ -6710,7 +6710,7 @@ dependencies = [ [[package]] name = "wasmer-compiler" -version = "5.0.3" +version = "5.0.4" dependencies = [ "backtrace", "bytes", @@ -6743,7 +6743,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-cli" -version = "5.0.3" +version = "5.0.4" dependencies = [ "anyhow", "bytesize", @@ -6764,7 +6764,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-cranelift" -version = "5.0.3" +version = "5.0.4" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -6784,7 +6784,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-llvm" -version = "5.0.3" +version = "5.0.4" dependencies = [ "byteorder", "cc", @@ -6806,7 +6806,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-singlepass" -version = "5.0.3" +version = "5.0.4" dependencies = [ "byteorder", "dynasm", @@ -6825,7 +6825,7 @@ dependencies = [ [[package]] name = "wasmer-config" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "bytesize", @@ -6847,7 +6847,7 @@ dependencies = [ [[package]] name = "wasmer-derive" -version = "5.0.3" +version = "5.0.4" dependencies = [ "compiletest_rs", "proc-macro-error2", @@ -6887,7 +6887,7 @@ dependencies = [ [[package]] name = "wasmer-integration-tests-cli" -version = "5.0.3" +version = "5.0.4" dependencies = [ "anyhow", "assert_cmd 2.0.16", @@ -6914,11 +6914,11 @@ dependencies = [ [[package]] name = "wasmer-integration-tests-ios" -version = "5.0.3" +version = "5.0.4" [[package]] name = "wasmer-journal" -version = "0.15.0" +version = "0.16.0" dependencies = [ "anyhow", "async-trait", @@ -6945,7 +6945,7 @@ dependencies = [ [[package]] name = "wasmer-middlewares" -version = "5.0.3" +version = "5.0.4" dependencies = [ "wasmer", "wasmer-types", @@ -6954,7 +6954,7 @@ dependencies = [ [[package]] name = "wasmer-package" -version = "0.3.0" +version = "0.4.0" dependencies = [ "anyhow", "bytes", @@ -6982,7 +6982,7 @@ dependencies = [ [[package]] name = "wasmer-swift" -version = "0.5.0" +version = "0.6.0" dependencies = [ "thiserror", "tokio", @@ -6996,7 +6996,7 @@ dependencies = [ [[package]] name = "wasmer-sys-utils" -version = "0.33.0" +version = "0.34.0" dependencies = [ "libc", "region", @@ -7010,7 +7010,7 @@ dependencies = [ [[package]] name = "wasmer-types" -version = "5.0.3" +version = "5.0.4" dependencies = [ "bytecheck 0.6.12", "enum-iterator", @@ -7032,7 +7032,7 @@ dependencies = [ [[package]] name = "wasmer-vm" -version = "5.0.3" +version = "5.0.4" dependencies = [ "backtrace", "cc", @@ -7060,7 +7060,7 @@ dependencies = [ [[package]] name = "wasmer-wasix" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "async-trait", @@ -7147,7 +7147,7 @@ dependencies = [ [[package]] name = "wasmer-wasix-types" -version = "0.33.0" +version = "0.34.0" dependencies = [ "anyhow", "bitflags 1.3.2", @@ -7170,7 +7170,7 @@ dependencies = [ [[package]] name = "wasmer-wast" -version = "5.0.3" +version = "5.0.4" dependencies = [ "anyhow", "futures", @@ -7187,7 +7187,7 @@ dependencies = [ [[package]] name = "wasmer-workspace" -version = "5.0.3" +version = "5.0.4" dependencies = [ "anyhow", "build-deps", diff --git a/Cargo.toml b/Cargo.toml index 22813a0c53c..862c555c830 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -87,7 +87,7 @@ version = "5.0.4" [workspace.dependencies] # Repo-local crates -wasmer-package = { version = "0.3.0", path = "lib/package" } +wasmer-package = { version = "0.4.0", path = "lib/package" } wasmer-config = { path = "./lib/config" } wasmer-wasix = { path = "./lib/wasix" } diff --git a/lib/backend-api/Cargo.toml b/lib/backend-api/Cargo.toml index 7195fa36214..b0a6d755c7e 100644 --- a/lib/backend-api/Cargo.toml +++ b/lib/backend-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-backend-api" -version = "0.3.0" +version = "0.4.0" description = "Client library for the Wasmer GraphQL API" readme = "README.md" documentation = "https://docs.rs/wasmer-backend-api" @@ -15,7 +15,7 @@ rust-version.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] # Wasmer dependencies. -wasmer-config = { version = "0.11.0", path = "../config" } +wasmer-config = { version = "0.12.0", path = "../config" } wasmer-package.workspace = true webc.workspace = true diff --git a/lib/c-api/Cargo.toml b/lib/c-api/Cargo.toml index 043a34dc259..48eb1309c3c 100644 --- a/lib/c-api/Cargo.toml +++ b/lib/c-api/Cargo.toml @@ -31,7 +31,7 @@ wasmer-compiler-llvm = { version = "=5.0.4", path = "../compiler-llvm", optional wasmer-compiler-singlepass = { version = "=5.0.4", path = "../compiler-singlepass", optional = true } wasmer-middlewares = { version = "=5.0.4", path = "../middlewares", optional = true } wasmer-types = { version = "=5.0.4", path = "../types" } -wasmer-wasix = { path = "../wasix", version="=0.33.0", features = ["host-fs", "host-vnet"], optional = true } +wasmer-wasix = { path = "../wasix", version="=0.34.0", features = ["host-fs", "host-vnet"], optional = true } webc = { workspace = true, optional = true } virtual-fs = { version = "0.20.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] } enumset.workspace = true diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index 46d0cbbb627..adbbfb12954 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -120,7 +120,7 @@ wasmer-compiler-llvm = { version = "=5.0.4", path = "../compiler-llvm", optional wasmer-package.workspace = true wasmer-vm = { version = "=5.0.4", path = "../vm", optional = true } -wasmer-wasix = { path = "../wasix", version = "=0.33.0", features = [ +wasmer-wasix = { path = "../wasix", version = "=0.34.0", features = [ "logging", "webc_runner_rt_wcgi", "webc_runner_rt_dcgi", @@ -136,12 +136,12 @@ virtual-fs = { version = "0.20.0", path = "../virtual-fs", default-features = fa "host-fs", ] } virtual-net = { version = "0.13.0", path = "../virtual-net" } -virtual-mio = { version = "0.6.0", path = "../virtual-io" } +virtual-mio = { version = "0.7.0", path = "../virtual-io" } # Wasmer-owned dependencies. webc = { workspace = true } -wasmer-backend-api = { version = "=0.3.0", path = "../backend-api" } +wasmer-backend-api = { version = "=0.4.0", path = "../backend-api" } lazy_static = "1.4.0" # Used by the mount command @@ -165,7 +165,7 @@ serde = { version = "1.0.147", features = ["derive"] } dirs = "4.0" serde_json = { version = "1.0" } target-lexicon = { version = "0.12", features = ["std"] } -wasmer-config = { version = "0.11.0", path = "../config" } +wasmer-config = { version = "0.12.0", path = "../config" } indexmap = "1.9.2" walkdir = "2.3.2" regex = "1.6.0" diff --git a/lib/config/Cargo.toml b/lib/config/Cargo.toml index d4831b70b45..e9fdcd82d39 100644 --- a/lib/config/Cargo.toml +++ b/lib/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-config" -version = "0.11.0" +version = "0.12.0" description = "Configuration types for Wasmer." edition.workspace = true license.workspace = true diff --git a/lib/journal/Cargo.toml b/lib/journal/Cargo.toml index 3e5c5211900..9b1b64f737e 100644 --- a/lib/journal/Cargo.toml +++ b/lib/journal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-journal" -version = "0.15.0" +version = "0.16.0" description = "Journaling functionality used by Wasmer to save and restore WASM state" authors.workspace = true edition.workspace = true @@ -15,7 +15,7 @@ log-file = ["shared-buffer"] [dependencies] wasmer = { default-features = false, path = "../api", version = "=5.0.4" } -wasmer-wasix-types = { path = "../wasi-types", version = "0.33.0", features = [ +wasmer-wasix-types = { path = "../wasi-types", version = "0.34.0", features = [ "enable-serde", ] } virtual-net = { path = "../virtual-net", version = "0.13.0", default-features = false, features = [ diff --git a/lib/package/Cargo.toml b/lib/package/Cargo.toml index 9b2c5c85f4e..7c9572c5b32 100644 --- a/lib/package/Cargo.toml +++ b/lib/package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-package" -version = "0.3.0" +version = "0.4.0" description = "Packaging related types and functions for Wasmer" authors.workspace = true @@ -14,7 +14,7 @@ rust-version.workspace = true [dependencies] webc.workspace = true -wasmer-config = { version = "0.11.0", path = "../config" } +wasmer-config = { version = "0.12.0", path = "../config" } toml = "0.8.0" bytes = "1.8.0" sha2 = "0.10.8" diff --git a/lib/swift/Cargo.toml b/lib/swift/Cargo.toml index 33391da53a7..c1900196285 100644 --- a/lib/swift/Cargo.toml +++ b/lib/swift/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-swift" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Experimental wasmer bindings for swift" license = "MIT" @@ -22,7 +22,7 @@ wasmer = { version = "=5.0.4", path = "../api", default-features = false, featur "wamr", "std", ] } -wasmer-wasix = { version = "=0.33.0", path = "../wasix" } +wasmer-wasix = { version = "=0.34.0", path = "../wasix" } webc.workspace = true wasmer-package.workspace = true diff --git a/lib/sys-utils/Cargo.toml b/lib/sys-utils/Cargo.toml index 38a86774205..f914d8b9bec 100644 --- a/lib/sys-utils/Cargo.toml +++ b/lib/sys-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-sys-utils" -version = "0.33.0" +version = "0.34.0" description = "Wasmer utilities for a sys environment." categories = ["wasm"] keywords = ["wasm", "webassembly"] diff --git a/lib/virtual-io/Cargo.toml b/lib/virtual-io/Cargo.toml index b4e2748dc1b..cb316449789 100644 --- a/lib/virtual-io/Cargo.toml +++ b/lib/virtual-io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "virtual-mio" -version = "0.6.0" +version = "0.7.0" description = "Wasmer Virtual IO Engine powered by mio" authors.workspace = true edition.workspace = true diff --git a/lib/virtual-net/Cargo.toml b/lib/virtual-net/Cargo.toml index 829bc4296a3..97819763b9d 100644 --- a/lib/virtual-net/Cargo.toml +++ b/lib/virtual-net/Cargo.toml @@ -25,7 +25,7 @@ libc = { workspace = true, optional = true } mio = { workspace = true, optional = true } socket2 = { workspace = true, optional = true } derive_more.workspace = true -virtual-mio = { path = "../virtual-io", version = "0.6.0", default-features = false } +virtual-mio = { path = "../virtual-io", version = "0.7.0", default-features = false } bincode = { version = "1.3" } serde = { version = "1.0", default-features = false, features = ["derive"] } pin-project-lite = "0.2.9" diff --git a/lib/wai-bindgen-wasmer/Cargo.toml b/lib/wai-bindgen-wasmer/Cargo.toml index bbeb34f8b03..12431a2cfaa 100644 --- a/lib/wai-bindgen-wasmer/Cargo.toml +++ b/lib/wai-bindgen-wasmer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wai-bindgen-wasmer" description = "Generate WAI glue for a Rust Wasmer host" -version = "0.33.0" +version = "0.34.0" categories = ["wasm", "os"] keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] readme = "README.md" diff --git a/lib/wasi-types/Cargo.toml b/lib/wasi-types/Cargo.toml index e9577e2a9aa..7e6a412bea3 100644 --- a/lib/wasi-types/Cargo.toml +++ b/lib/wasi-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasix-types" -version = "0.33.0" +version = "0.34.0" description = "WASI and WASIX types for Wasmer WebAssembly runtime" categories = ["wasm", "os"] keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] @@ -19,7 +19,9 @@ wasmer = { default-features = false, path = "../api", version = "=5.0.4" } wasmer-types = { path = "../types", version = "=5.0.4" } wasmer-derive = { path = "../derive", version = "=5.0.4" } wai-bindgen-gen-rust = "0.2.1" -wai-bindgen-rust = { version = "0.2.1", default-features = false, features = ["macros"] } +wai-bindgen-rust = { version = "0.2.1", default-features = false, features = [ + "macros", +] } wai-bindgen-gen-rust-wasm = "0.2.1" wai-bindgen-gen-core = "0.2.1" wai-parser = "0.2.1" diff --git a/lib/wasix/Cargo.toml b/lib/wasix/Cargo.toml index ba5348129c2..435516d6166 100644 --- a/lib/wasix/Cargo.toml +++ b/lib/wasix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasix" -version = "0.33.0" +version = "0.34.0" description = "WASI and WASIX implementation library for Wasmer WebAssembly runtime" categories = ["wasm", "os"] keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] @@ -14,7 +14,7 @@ rust-version.workspace = true [dependencies] wasmer-package.workspace = true -wasmer-wasix-types = { path = "../wasi-types", version = "0.33.0", features = [ +wasmer-wasix-types = { path = "../wasi-types", version = "0.34.0", features = [ "enable-serde", ] } wasmer-types = { path = "../types", version = "=5.0.4", default-features = false } @@ -22,15 +22,15 @@ wasmer = { path = "../api", version = "=5.0.4", default-features = false, featur "wat", "js-serializable-module", ] } -virtual-mio = { path = "../virtual-io", version = "0.6.0", default-features = false } +virtual-mio = { path = "../virtual-io", version = "0.7.0", default-features = false } virtual-fs = { path = "../virtual-fs", version = "0.20.0", default-features = false, features = [ "webc-fs", ] } virtual-net = { path = "../virtual-net", version = "0.13.0", default-features = false, features = [ "rkyv", ] } -wasmer-journal = { path = "../journal", version = "0.15.0", default-features = false } -wasmer-config = { version = "0.11.0", path = "../config" } +wasmer-journal = { path = "../journal", version = "0.16.0", default-features = false } +wasmer-config = { version = "0.12.0", path = "../config" } http.workspace = true dashmap.workspace = true diff --git a/tests/lib/wast/Cargo.toml b/tests/lib/wast/Cargo.toml index c9ea7da52ec..9faddd776b8 100644 --- a/tests/lib/wast/Cargo.toml +++ b/tests/lib/wast/Cargo.toml @@ -11,8 +11,8 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-types = { path = "../../../lib/types", version="=5.0.3" } -wasmer-wasix = { path = "../../../lib/wasix", version="=0.33.0" } +wasmer-types = { path = "../../../lib/types", version = "=5.0.4" } +wasmer-wasix = { path = "../../../lib/wasix", version = "=0.34.0" } wasmer = { path = "../../../lib/api", version = "=5.0.4", default-features = false } virtual-fs = { path = "../../../lib/virtual-fs", version = "0.20.0" } @@ -23,8 +23,8 @@ tempfile = "3.6.0" thiserror = "1.0" futures = "0.3" tokio = { workspace = true, features = [ - "io-util", - "rt", + "io-util", + "rt", ], default-features = false } [features] From 0f3dd70c34fe79471996fffffd922668425a9123 Mon Sep 17 00:00:00 2001 From: Edoardo Marangoni Date: Tue, 17 Dec 2024 13:06:45 +0100 Subject: [PATCH 4/7] Update CHANGELONG --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3bc3b83e05..829fc2ca2a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C ## 5.0.4 - 17/12/2024 +This release fixes minor bugs and adds spurious improvements. + ## Added @@ -22,7 +24,6 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C - [#5277](https://github.com/wasmerio/wasmer/pull/5277) Rephrase the description for `--no-persist-id` - [#5291](https://github.com/wasmerio/wasmer/pull/5291) chore(wasix): make Capabilities hashable - [#5293](https://github.com/wasmerio/wasmer/pull/5293) LoongArch: Switch to the medium code model - - [#5283](https://github.com/wasmerio/wasmer/pull/5283) Better network sandbox ## Fixed From 5e6337d76732a43307bc3eabccc1053ebf64290f Mon Sep 17 00:00:00 2001 From: Edoardo Marangoni Date: Tue, 17 Dec 2024 14:23:50 +0100 Subject: [PATCH 5/7] update 0.x package versions (contd) --- Cargo.lock | 2 +- lib/cli/Cargo.toml | 2 +- lib/journal/Cargo.toml | 4 ++-- lib/virtual-net/Cargo.toml | 2 +- lib/wasix/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index acc290284e3..154cce78e0a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6067,7 +6067,7 @@ dependencies = [ [[package]] name = "virtual-net" -version = "0.13.0" +version = "0.14.0" dependencies = [ "anyhow", "async-trait", diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index adbbfb12954..58292201b74 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -135,7 +135,7 @@ wasmer-types = { version = "=5.0.4", path = "../types", features = [ virtual-fs = { version = "0.20.0", path = "../virtual-fs", default-features = false, features = [ "host-fs", ] } -virtual-net = { version = "0.13.0", path = "../virtual-net" } +virtual-net = { version = "0.14.0", path = "../virtual-net" } virtual-mio = { version = "0.7.0", path = "../virtual-io" } # Wasmer-owned dependencies. diff --git a/lib/journal/Cargo.toml b/lib/journal/Cargo.toml index 9b1b64f737e..79facb10b71 100644 --- a/lib/journal/Cargo.toml +++ b/lib/journal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-journal" -version = "0.16.0" +version = "0.17.0" description = "Journaling functionality used by Wasmer to save and restore WASM state" authors.workspace = true edition.workspace = true @@ -18,7 +18,7 @@ wasmer = { default-features = false, path = "../api", version = "=5.0.4" } wasmer-wasix-types = { path = "../wasi-types", version = "0.34.0", features = [ "enable-serde", ] } -virtual-net = { path = "../virtual-net", version = "0.13.0", default-features = false, features = [ +virtual-net = { path = "../virtual-net", version = "0.14.0", default-features = false, features = [ "rkyv", ] } virtual-fs = { path = "../virtual-fs", version = "0.20.0", default-features = false } diff --git a/lib/virtual-net/Cargo.toml b/lib/virtual-net/Cargo.toml index 97819763b9d..201404c3b3a 100644 --- a/lib/virtual-net/Cargo.toml +++ b/lib/virtual-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "virtual-net" -version = "0.13.0" +version = "0.14.0" description = "Wasmer Virtual Networking" authors.workspace = true edition.workspace = true diff --git a/lib/wasix/Cargo.toml b/lib/wasix/Cargo.toml index 435516d6166..8ec41d48ba7 100644 --- a/lib/wasix/Cargo.toml +++ b/lib/wasix/Cargo.toml @@ -26,7 +26,7 @@ virtual-mio = { path = "../virtual-io", version = "0.7.0", default-features = fa virtual-fs = { path = "../virtual-fs", version = "0.20.0", default-features = false, features = [ "webc-fs", ] } -virtual-net = { path = "../virtual-net", version = "0.13.0", default-features = false, features = [ +virtual-net = { path = "../virtual-net", version = "0.14.0", default-features = false, features = [ "rkyv", ] } wasmer-journal = { path = "../journal", version = "0.16.0", default-features = false } From 7667b0789ce4f79a89705627753941348eb2dcd8 Mon Sep 17 00:00:00 2001 From: Edoardo Marangoni Date: Tue, 17 Dec 2024 14:27:36 +0100 Subject: [PATCH 6/7] update 0.x package versions (contd2) --- lib/wasix/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wasix/Cargo.toml b/lib/wasix/Cargo.toml index 8ec41d48ba7..f031f84dda9 100644 --- a/lib/wasix/Cargo.toml +++ b/lib/wasix/Cargo.toml @@ -29,7 +29,7 @@ virtual-fs = { path = "../virtual-fs", version = "0.20.0", default-features = fa virtual-net = { path = "../virtual-net", version = "0.14.0", default-features = false, features = [ "rkyv", ] } -wasmer-journal = { path = "../journal", version = "0.16.0", default-features = false } +wasmer-journal = { path = "../journal", version = "0.17.0", default-features = false } wasmer-config = { version = "0.12.0", path = "../config" } http.workspace = true From b8da2e63c947e8d635dac7773ffffeca5c49436d Mon Sep 17 00:00:00 2001 From: Edoardo Marangoni Date: Tue, 17 Dec 2024 14:29:37 +0100 Subject: [PATCH 7/7] update 0.x package versions (contd3) --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 154cce78e0a..7b256972a75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6918,7 +6918,7 @@ version = "5.0.4" [[package]] name = "wasmer-journal" -version = "0.16.0" +version = "0.17.0" dependencies = [ "anyhow", "async-trait",