The format is based on Keep a Changelog.
1.1.0 - 2021-05-18
- Introduce the
MemoryViewclass to work with memory contents - Implement the memory API as a 1:1 binding on the C API
1.0.0 - 2021-02-22
- Object-oriented interface through
wasm/wasmlibrary
1.0.0-beta1 - 2021-02-02
This release is basically a complete rewrite of Wasmer PHP extension. Previous releases were built on top of a non-standard API. We are now using the standard Wasm C API:
<?php declare(strict_types=1);
$engine = wasm_engine_new();
$store = wasm_store_new($engine);
$wasm = file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'hello.wasm');
$module = wasm_module_new($store, $wasm);
function hello_callback() {
echo 'Hello Wasmer (PHP)!' . PHP_EOL;
}
$functype = wasm_functype_new(new Wasm\Vec\ValType(), new Wasm\Vec\ValType());
$func = wasm_func_new($store, $functype, 'hello_callback');
wasm_functype_delete($functype);
$extern = wasm_func_as_extern($func);
$externs = new Wasm\Vec\Extern([$extern]);
$instance = wasm_instance_new($store, $module, $externs);
wasm_func_delete($func);
$exports = wasm_instance_exports($instance);
$run = wasm_extern_as_func($exports[0]);
wasm_module_delete($module);
wasm_instance_delete($instance);
wasm_store_delete($store);
wasm_engine_delete($engine);
wasm_func_call($run, new Wasm\Vec\Val());- Implement the
configAPI - Implement the
engineAPI - Implement the
storeAPI - Implement the
wasmernon-standard API - Implement the
watnon-standard API - Implement the
exporttypeAPI - Implement the
externtypeAPI - Implement the
functypeAPI - Implement the
globaltypeAPI - Implement the
importtypeAPI - Implement the
memorytypeAPI - Implement the
tabletypeAPI - Implement the
valtypeAPI - Implement the
valtypeAPI - Implement the
externAPI - Implement the
funcAPI - Implement the
globalAPI - Implement the
instanceAPI - Implement the
moduleAPI - Implement the
trapAPI