Michael Bryan
Michael Bryan
:robot: I have created a release *beep* *boop* --- ## [0.6.1](https://github.com/wasmerio/wasmer-js/compare/wasmer-sdk-v0.6.0...wasmer-sdk-v0.6.1) (2024-01-25) ### Bug Fixes * Resolve a deadlock where the future returned by thread pool's sleep_now() method will never...
This was split out of #334 to allow merging the ability to mount an in-memory filesystem without waiting on the `FileSystemDirectoryHandle` adapter to be implemented. Fixes #395.
This is the work I did towards #369. I'll leave it here in case someone else can figure out how to implement `interpret_import()` so we can re-open and properly fix...
Fixes SDK-56, SDK-57, SDK-58, SDK-59.
The [FileSystem API](https://developer.mozilla.org/en-US/docs/Web/API/File_System_API) is a browser spec that gives you the ability to write to files/directories on the user's machine. Being able to construct a `Directory` using a [`FileSystemDirectoryHandle`](https://developer.mozilla.org/en-US/docs/Web/API/FileSystemDirectoryHandle) would...
It looks like a recent change has introduced some flakiness to our CI. The failure looks something like [this](https://github.com/wasmerio/wasmer-js/actions/runs/7298041059/job/19888301266#step:13:44): ``` tests/integration.test.ts: 🚧 Browser logs: An error was thrown in a...
As part of the ffmpeg demo (#361), I introduced a bunch of utilities for making wasmer/sdk easier to use inside a React application. hooks.tsx ```tsx import React, { useContext, useEffect,...
In #378, it'd be nice of we can abort the loading of a package if the arguments to `useWasmerPackage()` change. To do this, we need to update things in two...
We currently allow users to import two different versions of the `@wasmer/sdk` package, - `@wasmer/sdk` - a slim version which tries to `fetch()` the `wasmer_js_bg.wasm` file at runtime - `@wasmer/sdk/WasmerSDKBundled`...