Releases: taybenlor/runno
v0.7.0 - Add support for Reactors
v0.6.2 - Fix STDIN hanging on headless run
Fixes an issue where programs waiting on EOF on STDIN would hang on headless run. Thanks @Syuparn for submitting this fix!
Allow passing custom memory
Allows passing custom memory to a WASI
instance so it can use memory provided to the binary, as well as memory exported from the binary.
Thanks to @dmarcos for the feature request and answering all my questions.
Refactor WASI API
Update @runno/wasi
WASI API surface to match NodeJS and allow for custom WASM instantiation.
Fully remove dep on @runno/host
There was an issue making v0.5.4, and v0.5.5 fail to install due to a dep on @runno/host.
Fixes an issue with autorun timing and files
v0.5.3 - Presentational fixes to runno-wasi
Fixes some presentational/styling issues with runno-wasi
where the terminal would overflow the container.
v0.5.2 - Fix headless ruby in @runno/runtime
Fixes #253 - an issue in running Ruby in headless mode.
The configuration for the base filesystem was not being used by the headless runtime implementation.
v0.5.1 - Fix read & buffer bugs in @runno/wasi
This release fixes two bugs in @runno/wasi. Thanks to @jabinb for doing the investigation and fixes.
- Fixes a bug where the first write buffer allocation could be undersized for the requested amount of bytes
- Fixes a bug where reads were using the wrong indexing
v0.5.0 - Add support for PHP
This release adds a new runtime php-cgi
. This runtime uses the PHP release by VMWare Labs (see: webassembly-language-runtimes).
Because of the way CGI works it doesn't really use STDIN - I haven't really figured out what the best way to do PHP is. But I'm chucking it up because why not. If you have any feedback please post in discussions!