Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 5.0.4 #5308

Merged
merged 7 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
64 changes: 32 additions & 32 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
Loading