Skip to content

fix: Downgrading Wasmtime to 7.0.1 for regression issue on Windows #47

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

Merged
merged 3 commits into from
May 8, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@

-

## 0.11.3 (2023/05/08)

This release fixes a regression issue introduced in [0.11.2](#0112-20230502) when opening directories on Windows. It doesn't affect other platforms.
The issue is realated to Wasmtime 8.0.1 (see [PR #6348](https://github.com/bytecodealliance/wasmtime/pull/6348)), so downgrading to `7.0.1`.

### `libwasm_runtime.so`
- Dependencies:
- Downgrading Wasmtime dependency:
- `wasmtime` from `8.0.1` to `7.0.1`.
- Updated `cargo.lock` dependencies via `cargo update`.


## 0.11.2 (2023/05/02)

This is a security update to bump Wasmtime to 8.0.1 given the CVE published (low severity) and addressed in:
Expand Down
2 changes: 1 addition & 1 deletion mod_wasm/modules/wasm/mod_wasm.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
*/
#define MOD_WASM_VERSION_MAJOR 0
#define MOD_WASM_VERSION_MINOR 11
#define MOD_WASM_VERSION_PATCH 1
#define MOD_WASM_VERSION_PATCH 3
Loading