Skip to content

Commit

Permalink
Merge pull request #5308 from wasmerio/release-5.0.4
Browse files Browse the repository at this point in the history
Release 5.0.4
  • Loading branch information
xdoardo authored Dec 17, 2024
2 parents 8b1f1b1 + b8da2e6 commit 3c32c74
Show file tree
Hide file tree
Showing 35 changed files with 181 additions and 154 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,31 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C

## **Unreleased**

## 5.0.4 - 17/12/2024

This release fixes minor bugs and adds spurious improvements.

## 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

## 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
Expand Down
66 changes: 33 additions & 33 deletions Cargo.lock

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

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -83,11 +83,11 @@ 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
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" }

Expand Down Expand Up @@ -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",
Expand Down
Loading

0 comments on commit 3c32c74

Please sign in to comment.