Skip to content

Commit 9c26009

Browse files
authored
Merge pull request #54 from vmware-labs/release/0.12.0
feat: Release branch for v0.12.0
2 parents a358aba + 785c77e commit 9c26009

File tree

5 files changed

+23
-8
lines changed

5 files changed

+23
-8
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,22 @@
22

33
## Unreleased
44

5-
-
5+
## 0.12.0 (2023/06/30)
6+
7+
This version introduces a new Apache directive: `WasmMapCGIFileNames`.
8+
It enables/disables the mapping of `SCRIPT_FILENAME` based on the different `WasmMapDir` instances when `WasmEnableCGI` is enabled.
9+
10+
In addition, it normalizes filename paths for both Windows and Linux styes.
11+
12+
```apache
13+
WasmEnableCGI On
14+
WasmMapCGIFileNames On
15+
WasmMapDir /app C:/myapp/htdocs
16+
```
17+
18+
In the example, `SCRIPT_FILENAME` will store `/app/index.php` instead of the host path `C:/myapp/htdocs/index.php`.
19+
Without this setting, we would also need to provide a `WasmDir` granting access to `C:/myapp/htdocs` as the Wasm module would be trying to access it (or setting `WasmMapDir C:/myapp/htdocs C:/myapp/htdocs`).
20+
621

722
## 0.11.3 (2023/05/08)
823

mod_wasm/modules/wasm/mod_wasm.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
* limitations under the License.
1515
*/
1616
#define MOD_WASM_VERSION_MAJOR 0
17-
#define MOD_WASM_VERSION_MINOR 11
18-
#define MOD_WASM_VERSION_PATCH 3
17+
#define MOD_WASM_VERSION_MINOR 12
18+
#define MOD_WASM_VERSION_PATCH 0

wasm_runtime/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wasm_runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm_runtime"
3-
version = "0.11.3"
3+
version = "0.12.0"
44
edition = "2021"
55
authors = ["VMware's Wasm Labs"]
66
description = "Wrapper for offering a simple C-API to manage WebAssembly modules via Wasmtime"

wasm_runtime/include/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#define WASM_RUNTIME_VERSION "0.11.3"
1+
#define WASM_RUNTIME_VERSION "0.12.0"
22
#define WASM_RUNTIME_VERSION_MAJOR 0
3-
#define WASM_RUNTIME_VERSION_MINOR 11
4-
#define WASM_RUNTIME_VERSION_PATCH 3
3+
#define WASM_RUNTIME_VERSION_MINOR 12
4+
#define WASM_RUNTIME_VERSION_PATCH 0
55

0 commit comments

Comments
 (0)