gloo
gloo copied to clipboard
A modular toolkit for building fast, reliable Web applications and libraries with Rust and WASM
The following line includes the broken link: https://github.com/rustwasm/gloo/blob/dc0e61e7b24fe0f33d66960385909dc0f4195bd9/crates/worker/src/actor/traits.rs#L26 Here is a link to the built docs for verification (try to open `WorkerSpawner::spawn` in a new tab): https://docs.rs/gloo-worker/latest/gloo_worker/trait.Worker.html#method.connected
Bumps [axios](https://github.com/axios/axios) and [wait-on](https://github.com/jeffbski/wait-on). These dependencies needed to be updated together. Updates `axios` from 0.27.2 to 1.6.7 Release notes Sourced from axios's releases. Release v1.6.7 Release notes: Bug Fixes capture...
Bumps [h2](https://github.com/hyperium/h2) from 0.3.22 to 0.3.24. Release notes Sourced from h2's releases. v0.3.24 Fixed Limit error resets for misbehaving connections. v0.3.23 What's Changed cherry-pick fix: streams awaiting capacity lockout in...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. Release notes Sourced from actions/upload-artifact's releases. v4.0.0 What's Changed The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts....
Bumps [dawidd6/action-download-artifact](https://github.com/dawidd6/action-download-artifact) from 2 to 3. Release notes Sourced from dawidd6/action-download-artifact's releases. v3.0.0 Node was updated from 16 to 20. Node 20 requires glibc>=2.28. v2.28.0 No release notes provided. v2.27.0...
## Summary It would be nice to have something like [tokio](https://docs.rs/tokio/latest/tokio/index.html)::[time](https://docs.rs/tokio/latest/tokio/time/index.html)::[MissedTickBehavior](https://docs.rs/tokio/latest/tokio/time/enum.MissedTickBehavior.html#) in gloo-timers. ## Motivation Browser often suspend execution of code in inactive tabs, so missed ticks is a frequent...
### Bug description Either `gloo::file::Blob::new(bytes.as_slice())` generated an **invalid** `Blob`, or `gloo::file::ObjectUrl::from(blob)` generates an **invalid** `ObjectUrl`. However, it works with `web_sys`. ### Steps to Reproduce **Summary**: 1. How the download link...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.2 to 1.15.4. Commits 6585820 Release version 1.15.4 of the npm package. 7a6567e Disallow bracketed hostnames. 05629af Prefer native URL instead of deprecated url.parse. 1cba8e8 Prefer native...
# PR Content Remove the `Clone` derive/impl for the `EventSource` . # Reasoning After discussing https://github.com/rustwasm/gloo/discussions/409, it seems that the implementation of Clone for `EventSource` is a bug. To summarize...
Adds a `native_worker: RefCell` field to `WorkerBridgeInner` to allow immediately terminating a worker. Since there is no way to tell if a worker has been terminated from a `web_sys::Worker`, uses...