Skip to content

Commit

Permalink
release 5.0.3 (#5289)
Browse files Browse the repository at this point in the history
  • Loading branch information
maminrayej authored Dec 7, 2024
2 parents f842379 + 45152c1 commit 0c8fb44
Show file tree
Hide file tree
Showing 34 changed files with 165 additions and 143 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,28 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C

## **Unreleased**

## 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
and improvements are included.

## Added

- [#5274](https://github.com/wasmerio/wasmer/pull/5274) feat(config): Add (Named)PackageIdent::matches_id helpers

## Changed

- [#5288](https://github.com/wasmerio/wasmer/pull/5288) Bump up macos runner versions
- [#5283](https://github.com/wasmerio/wasmer/pull/5283) Better network sandbox
- [#5243](https://github.com/wasmerio/wasmer/pull/5243) Support multiple heterogeneous backends at the same time
- [#5275](https://github.com/wasmerio/wasmer/pull/5275) Protect preopened inodes from being closed
- [#5264](https://github.com/wasmerio/wasmer/pull/5264) update running wasmer-integration-tests in CI

## Fixed




## 5.0.2 - 22/11/2024

This release mostly consists of bug fixes and clean ups.
Expand Down
62 changes: 31 additions & 31 deletions Cargo.lock

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

24 changes: 12 additions & 12 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.2", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=5.0.2", path = "lib/compiler", features = [
wasmer = { version = "=5.0.3", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=5.0.3", path = "lib/compiler", features = [
"compiler",
], optional = true }
wasmer-compiler-cranelift = { version = "=5.0.2", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=5.0.2", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=5.0.2", path = "lib/compiler-llvm", 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-wasix = { path = "lib/wasix", optional = true }
wasmer-wast = { version = "=5.0.2", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=5.0.2", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=5.0.2", path = "lib/cache", optional = true }
wasmer-types = { version = "=5.0.2", path = "lib/types" }
wasmer-middlewares = { version = "=5.0.2", path = "lib/middlewares", 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 }

# Third party dependencies
cfg-if = "1.0"
Expand Down Expand Up @@ -83,7 +83,7 @@ homepage = "https://wasmer.io/"
license = "MIT"
repository = "https://github.com/wasmerio/wasmer"
rust-version = "1.81"
version = "5.0.2"
version = "5.0.3"

[workspace.dependencies]
# Repo-local crates
Expand Down Expand Up @@ -132,7 +132,7 @@ glob = "0.3"
rustc_version = "0.4"

[dev-dependencies]
wasmer = { version = "=5.0.2", path = "lib/api", features = [
wasmer = { version = "=5.0.3", path = "lib/api", features = [
"compiler",
"singlepass",
"sys",
Expand Down
Loading

0 comments on commit 0c8fb44

Please sign in to comment.