Skip to content

chore(deps): Bump the firecracker group with 5 updates#5863

Closed
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/cargo/firecracker-43704d7a9b
Closed

chore(deps): Bump the firecracker group with 5 updates#5863
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/cargo/firecracker-43704d7a9b

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 4, 2026

Bumps the firecracker group with 5 updates:

Package From To
js-sys 0.3.95 0.3.97
wasm-bindgen 0.2.118 0.2.120
wasm-bindgen-macro 0.2.118 0.2.120
wasm-bindgen-macro-support 0.2.118 0.2.120
wasm-bindgen-shared 0.2.118 0.2.120

Updates js-sys from 0.3.95 to 0.3.97

Commits

Updates wasm-bindgen from 0.2.118 to 0.2.120

Changelog

Sourced from wasm-bindgen's changelog.

wasm-bindgen Change Log


Unreleased

Added

Fixed

  • Fix compilation failure with no_std + release #5134

Changed


0.2.119

Added

  • Added support for the wasm64-unknown-unknown target (memory64 / wasm64). usize / isize and raw pointers are now lowered through an f64 JS number ABI on wasm64 (matching the existing convention used for Option<u32> etc. on wasm32), with the CLI inspecting the module's memory type to pick the right codegen path. Includes a dedicated wasm64 CI job and test suite covering the new ABI paths. #5004

  • Promise ergonomics: Promise::all_tuple and Promise::all_settled_tuple for heterogeneous concurrent awaits (arity 1..=8, destructure via .into_tuple()), and a new wasm_bindgen::IntoJsGeneric trait underpinning typed-Array inference (with codegen-emitted identity impls and a #[wasm_bindgen(no_into_js_generic)] opt-out for types like JsClosure). Also re-exports JsGeneric from the prelude. Typed collection on js_sys::Array<T> is exposed as the inherent constructor Array::<T>::from_iter_typed (and companion extend_typed), inferring T from the iterator item via IntoJsGeneric. The stable FromIterator / Extend impls on Array (= Array<JsValue>) bound by AsRef<JsValue> are preserved, so existing .collect::<Array>() call sites keep compiling unchanged. Fixes #5042. #5121, #5125

  • Added wasm_bindgen::instance() to return the current WebAssembly.Instance. The generated JS glue retains the instantiated WebAssembly.Instance. #5118

  • Added a --cfg=wasm_bindgen_use_js_sys opt-in that makes async macro codegen use js_sys::futures instead of wasm_bindgen_futures, dropping the need

... (truncated)

Commits
  • 3c5043f Release 0.2.120 (#5131)
  • c68c40f release: 0.2.119 - schema bump (#5129)
  • a9f3fb6 Release 0.2.119 (#5126)
  • 17d783e Switch js-sys macro codegen opt-in from Cargo feature to cfg (#5127)
  • 33b1244 Restore stable AsRef<JsValue>-based FromIterator/Extend for Array; expose typ...
  • 208e874 Simplify web-sys generated bindings (#5122)
  • 3455345 Add wasm64/memory64 support for wasm64-unknown-unknown target (#5004)
  • 4c8fd1f Use js_sys::futures instead of wasm_bindgen_futures in codegen (#5112)
  • e82e693 Use Publish Environment (#5124)
  • 5727923 feat: Promise ergonomics for typed concurrent awaits (#5121)
  • Additional commits viewable in compare view

Updates wasm-bindgen-macro from 0.2.118 to 0.2.120

Changelog

Sourced from wasm-bindgen-macro's changelog.

wasm-bindgen Change Log


Unreleased

Added

Fixed

  • Fix compilation failure with no_std + release #5134

Changed


0.2.119

Added

  • Added support for the wasm64-unknown-unknown target (memory64 / wasm64). usize / isize and raw pointers are now lowered through an f64 JS number ABI on wasm64 (matching the existing convention used for Option<u32> etc. on wasm32), with the CLI inspecting the module's memory type to pick the right codegen path. Includes a dedicated wasm64 CI job and test suite covering the new ABI paths. #5004

  • Promise ergonomics: Promise::all_tuple and Promise::all_settled_tuple for heterogeneous concurrent awaits (arity 1..=8, destructure via .into_tuple()), and a new wasm_bindgen::IntoJsGeneric trait underpinning typed-Array inference (with codegen-emitted identity impls and a #[wasm_bindgen(no_into_js_generic)] opt-out for types like JsClosure). Also re-exports JsGeneric from the prelude. Typed collection on js_sys::Array<T> is exposed as the inherent constructor Array::<T>::from_iter_typed (and companion extend_typed), inferring T from the iterator item via IntoJsGeneric. The stable FromIterator / Extend impls on Array (= Array<JsValue>) bound by AsRef<JsValue> are preserved, so existing .collect::<Array>() call sites keep compiling unchanged. Fixes #5042. #5121, #5125

  • Added wasm_bindgen::instance() to return the current WebAssembly.Instance. The generated JS glue retains the instantiated WebAssembly.Instance. #5118

  • Added a --cfg=wasm_bindgen_use_js_sys opt-in that makes async macro codegen use js_sys::futures instead of wasm_bindgen_futures, dropping the need

... (truncated)

Commits
  • 3c5043f Release 0.2.120 (#5131)
  • c68c40f release: 0.2.119 - schema bump (#5129)
  • a9f3fb6 Release 0.2.119 (#5126)
  • 17d783e Switch js-sys macro codegen opt-in from Cargo feature to cfg (#5127)
  • 33b1244 Restore stable AsRef<JsValue>-based FromIterator/Extend for Array; expose typ...
  • 208e874 Simplify web-sys generated bindings (#5122)
  • 3455345 Add wasm64/memory64 support for wasm64-unknown-unknown target (#5004)
  • 4c8fd1f Use js_sys::futures instead of wasm_bindgen_futures in codegen (#5112)
  • 5727923 feat: Promise ergonomics for typed concurrent awaits (#5121)
  • ed2345c feat: expose WebAssembly.Instance (#5118)
  • Additional commits viewable in compare view

Updates wasm-bindgen-macro-support from 0.2.118 to 0.2.120

Changelog

Sourced from wasm-bindgen-macro-support's changelog.

wasm-bindgen Change Log


Unreleased

Added

Fixed

  • Fix compilation failure with no_std + release #5134

Changed


0.2.119

Added

  • Added support for the wasm64-unknown-unknown target (memory64 / wasm64). usize / isize and raw pointers are now lowered through an f64 JS number ABI on wasm64 (matching the existing convention used for Option<u32> etc. on wasm32), with the CLI inspecting the module's memory type to pick the right codegen path. Includes a dedicated wasm64 CI job and test suite covering the new ABI paths. #5004

  • Promise ergonomics: Promise::all_tuple and Promise::all_settled_tuple for heterogeneous concurrent awaits (arity 1..=8, destructure via .into_tuple()), and a new wasm_bindgen::IntoJsGeneric trait underpinning typed-Array inference (with codegen-emitted identity impls and a #[wasm_bindgen(no_into_js_generic)] opt-out for types like JsClosure). Also re-exports JsGeneric from the prelude. Typed collection on js_sys::Array<T> is exposed as the inherent constructor Array::<T>::from_iter_typed (and companion extend_typed), inferring T from the iterator item via IntoJsGeneric. The stable FromIterator / Extend impls on Array (= Array<JsValue>) bound by AsRef<JsValue> are preserved, so existing .collect::<Array>() call sites keep compiling unchanged. Fixes #5042. #5121, #5125

  • Added wasm_bindgen::instance() to return the current WebAssembly.Instance. The generated JS glue retains the instantiated WebAssembly.Instance. #5118

  • Added a --cfg=wasm_bindgen_use_js_sys opt-in that makes async macro codegen use js_sys::futures instead of wasm_bindgen_futures, dropping the need

... (truncated)

Commits
  • 3c5043f Release 0.2.120 (#5131)
  • c68c40f release: 0.2.119 - schema bump (#5129)
  • a9f3fb6 Release 0.2.119 (#5126)
  • 17d783e Switch js-sys macro codegen opt-in from Cargo feature to cfg (#5127)
  • 33b1244 Restore stable AsRef<JsValue>-based FromIterator/Extend for Array; expose typ...
  • 208e874 Simplify web-sys generated bindings (#5122)
  • 3455345 Add wasm64/memory64 support for wasm64-unknown-unknown target (#5004)
  • 4c8fd1f Use js_sys::futures instead of wasm_bindgen_futures in codegen (#5112)
  • 5727923 feat: Promise ergonomics for typed concurrent awaits (#5121)
  • ed2345c feat: expose WebAssembly.Instance (#5118)
  • Additional commits viewable in compare view

Updates wasm-bindgen-shared from 0.2.118 to 0.2.120

Changelog

Sourced from wasm-bindgen-shared's changelog.

wasm-bindgen Change Log


Unreleased

Added

Fixed

  • Fix compilation failure with no_std + release #5134

Changed


0.2.119

Added

  • Added support for the wasm64-unknown-unknown target (memory64 / wasm64). usize / isize and raw pointers are now lowered through an f64 JS number ABI on wasm64 (matching the existing convention used for Option<u32> etc. on wasm32), with the CLI inspecting the module's memory type to pick the right codegen path. Includes a dedicated wasm64 CI job and test suite covering the new ABI paths. #5004

  • Promise ergonomics: Promise::all_tuple and Promise::all_settled_tuple for heterogeneous concurrent awaits (arity 1..=8, destructure via .into_tuple()), and a new wasm_bindgen::IntoJsGeneric trait underpinning typed-Array inference (with codegen-emitted identity impls and a #[wasm_bindgen(no_into_js_generic)] opt-out for types like JsClosure). Also re-exports JsGeneric from the prelude. Typed collection on js_sys::Array<T> is exposed as the inherent constructor Array::<T>::from_iter_typed (and companion extend_typed), inferring T from the iterator item via IntoJsGeneric. The stable FromIterator / Extend impls on Array (= Array<JsValue>) bound by AsRef<JsValue> are preserved, so existing .collect::<Array>() call sites keep compiling unchanged. Fixes #5042. #5121, #5125

  • Added wasm_bindgen::instance() to return the current WebAssembly.Instance. The generated JS glue retains the instantiated WebAssembly.Instance. #5118

  • Added a --cfg=wasm_bindgen_use_js_sys opt-in that makes async macro codegen use js_sys::futures instead of wasm_bindgen_futures, dropping the need

... (truncated)

Commits
  • 3c5043f Release 0.2.120 (#5131)
  • c68c40f release: 0.2.119 - schema bump (#5129)
  • a9f3fb6 Release 0.2.119 (#5126)
  • 17d783e Switch js-sys macro codegen opt-in from Cargo feature to cfg (#5127)
  • 33b1244 Restore stable AsRef<JsValue>-based FromIterator/Extend for Array; expose typ...
  • 208e874 Simplify web-sys generated bindings (#5122)
  • 3455345 Add wasm64/memory64 support for wasm64-unknown-unknown target (#5004)
  • 4c8fd1f Use js_sys::futures instead of wasm_bindgen_futures in codegen (#5112)
  • 5727923 feat: Promise ergonomics for typed concurrent awaits (#5121)
  • ed2345c feat: expose WebAssembly.Instance (#5118)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the firecracker group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [js-sys](https://github.com/wasm-bindgen/wasm-bindgen) | `0.3.95` | `0.3.97` |
| [wasm-bindgen](https://github.com/wasm-bindgen/wasm-bindgen) | `0.2.118` | `0.2.120` |
| [wasm-bindgen-macro](https://github.com/wasm-bindgen/wasm-bindgen) | `0.2.118` | `0.2.120` |
| [wasm-bindgen-macro-support](https://github.com/wasm-bindgen/wasm-bindgen) | `0.2.118` | `0.2.120` |
| [wasm-bindgen-shared](https://github.com/wasm-bindgen/wasm-bindgen) | `0.2.118` | `0.2.120` |


Updates `js-sys` from 0.3.95 to 0.3.97
- [Release notes](https://github.com/wasm-bindgen/wasm-bindgen/releases)
- [Changelog](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/wasm-bindgen/wasm-bindgen/commits)

Updates `wasm-bindgen` from 0.2.118 to 0.2.120
- [Release notes](https://github.com/wasm-bindgen/wasm-bindgen/releases)
- [Changelog](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](wasm-bindgen/wasm-bindgen@0.2.118...0.2.120)

Updates `wasm-bindgen-macro` from 0.2.118 to 0.2.120
- [Release notes](https://github.com/wasm-bindgen/wasm-bindgen/releases)
- [Changelog](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](wasm-bindgen/wasm-bindgen@0.2.118...0.2.120)

Updates `wasm-bindgen-macro-support` from 0.2.118 to 0.2.120
- [Release notes](https://github.com/wasm-bindgen/wasm-bindgen/releases)
- [Changelog](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](wasm-bindgen/wasm-bindgen@0.2.118...0.2.120)

Updates `wasm-bindgen-shared` from 0.2.118 to 0.2.120
- [Release notes](https://github.com/wasm-bindgen/wasm-bindgen/releases)
- [Changelog](https://github.com/wasm-bindgen/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](wasm-bindgen/wasm-bindgen@0.2.118...0.2.120)

---
updated-dependencies:
- dependency-name: js-sys
  dependency-version: 0.3.97
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: wasm-bindgen
  dependency-version: 0.2.120
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: wasm-bindgen-macro
  dependency-version: 0.2.120
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: wasm-bindgen-macro-support
  dependency-version: 0.2.120
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: wasm-bindgen-shared
  dependency-version: 0.2.120
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels May 4, 2026
@codecov
Copy link
Copy Markdown

codecov Bot commented May 5, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 82.80%. Comparing base (e7e0efe) to head (4173eba).

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #5863      +/-   ##
==========================================
+ Coverage   82.62%   82.80%   +0.18%     
==========================================
  Files         275      277       +2     
  Lines       29750    29895     +145     
==========================================
+ Hits        24581    24756     +175     
+ Misses       5169     5139      -30     
Flag Coverage Δ
5.10-m5n.metal 83.10% <ø> (?)
5.10-m6a.metal 82.43% <ø> (?)
5.10-m6g.metal 79.73% <ø> (ø)
5.10-m6i.metal 83.09% <ø> (?)
5.10-m7a.metal-48xl 82.42% <ø> (?)
5.10-m7g.metal 79.73% <ø> (ø)
5.10-m7i.metal-24xl 83.07% <ø> (?)
5.10-m7i.metal-48xl 83.08% <ø> (?)
5.10-m8g.metal-24xl 79.73% <ø> (-0.01%) ⬇️
5.10-m8g.metal-48xl 79.73% <ø> (+<0.01%) ⬆️
5.10-m8i.metal-48xl 83.07% <ø> (?)
5.10-m8i.metal-96xl 83.07% <ø> (?)
6.1-m5n.metal 83.12% <ø> (?)
6.1-m6a.metal 82.46% <ø> (?)
6.1-m6g.metal 79.73% <ø> (ø)
6.1-m6i.metal 83.12% <ø> (-0.01%) ⬇️
6.1-m7a.metal-48xl 82.45% <ø> (?)
6.1-m7g.metal 79.73% <ø> (-0.01%) ⬇️
6.1-m7i.metal-24xl 83.14% <ø> (?)
6.1-m7i.metal-48xl 83.14% <ø> (?)
6.1-m8g.metal-24xl 79.73% <ø> (ø)
6.1-m8g.metal-48xl 79.73% <ø> (+<0.01%) ⬆️
6.1-m8i.metal-48xl 83.14% <ø> (?)
6.1-m8i.metal-96xl 83.14% <ø> (?)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 12, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this May 12, 2026
@dependabot dependabot Bot deleted the dependabot/cargo/firecracker-43704d7a9b branch May 12, 2026 00:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant