Skip to content

Commit

Permalink
Merge pull request #54 from vmware-labs/release/0.12.0
Browse files Browse the repository at this point in the history
feat: Release branch for v0.12.0
  • Loading branch information
gzurl committed May 30, 2023
2 parents a358aba + 785c77e commit 9c26009
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 8 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,22 @@

## Unreleased

-
## 0.12.0 (2023/06/30)

This version introduces a new Apache directive: `WasmMapCGIFileNames`.
It enables/disables the mapping of `SCRIPT_FILENAME` based on the different `WasmMapDir` instances when `WasmEnableCGI` is enabled.

In addition, it normalizes filename paths for both Windows and Linux styes.

```apache
WasmEnableCGI On
WasmMapCGIFileNames On
WasmMapDir /app C:/myapp/htdocs
```

In the example, `SCRIPT_FILENAME` will store `/app/index.php` instead of the host path `C:/myapp/htdocs/index.php`.
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`).


## 0.11.3 (2023/05/08)

Expand Down
4 changes: 2 additions & 2 deletions mod_wasm/modules/wasm/mod_wasm.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
* limitations under the License.
*/
#define MOD_WASM_VERSION_MAJOR 0
#define MOD_WASM_VERSION_MINOR 11
#define MOD_WASM_VERSION_PATCH 3
#define MOD_WASM_VERSION_MINOR 12
#define MOD_WASM_VERSION_PATCH 0
2 changes: 1 addition & 1 deletion wasm_runtime/Cargo.lock

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

2 changes: 1 addition & 1 deletion wasm_runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm_runtime"
version = "0.11.3"
version = "0.12.0"
edition = "2021"
authors = ["VMware's Wasm Labs"]
description = "Wrapper for offering a simple C-API to manage WebAssembly modules via Wasmtime"
Expand Down
6 changes: 3 additions & 3 deletions wasm_runtime/include/version.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define WASM_RUNTIME_VERSION "0.11.3"
#define WASM_RUNTIME_VERSION "0.12.0"
#define WASM_RUNTIME_VERSION_MAJOR 0
#define WASM_RUNTIME_VERSION_MINOR 11
#define WASM_RUNTIME_VERSION_PATCH 3
#define WASM_RUNTIME_VERSION_MINOR 12
#define WASM_RUNTIME_VERSION_PATCH 0

0 comments on commit 9c26009

Please sign in to comment.