Skip to content

chore(deps): bump the rust-dependencies group with 6 updates#25

Merged
ubugeeei merged 1 commit into
mainfrom
dependabot/cargo/rust-dependencies-416b1a7e3d
May 18, 2026
Merged

chore(deps): bump the rust-dependencies group with 6 updates#25
ubugeeei merged 1 commit into
mainfrom
dependabot/cargo/rust-dependencies-416b1a7e3d

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the rust-dependencies group with 6 updates:

Package From To
js-sys 0.3.91 0.3.98
napi 3.8.3 3.8.6
napi-derive 3.5.2 3.5.6
wasm-bindgen 0.2.114 0.2.121
insta 1.46.3 1.47.2
napi-build 2.3.1 2.3.2

Updates js-sys from 0.3.91 to 0.3.98

Commits

Updates napi from 3.8.3 to 3.8.6

Release notes

Sourced from napi's releases.

napi-v3.8.6

Fixed

  • (deps) update rust crate ctor to 0.11.0 (#3270)
  • (napi) Convert #[ctor] calls to declarative form to remove all features (#3257)

Other

  • (napi) skip duplicate validation (#3268)
  • (napi) clarify unsafe function invariants (#3267)

napi-v3.8.5

Fixed

  • (napi) preserve generator class methods (#3231)
  • (deps) update rust crate ctor to v0.10.0 (#3224)
  • (deps) disable ctor priority feature (#3209)
  • (deps) update rust crate ctor to v0.9.1 (#3204)
  • (napi) handle ThreadsafeFunction callback errors gracefully during shutdown (#3188)
  • (napi) populate Error::cause from ThreadsafeFunction callee-handled callbacks (#3162)
  • correct typo in Either error message ("non" → "none") (#3183)

napi-v3.8.4

Fixed

  • (deps) update rust crate ctor to v0.8.0 (#3170)
  • (deps) update rust crate ctor to v0.7.0 (#3169)
  • (napi) check for null error_message in ExtendedErrorInfo::try_from (#3158)
  • (napi) skip nullish error causes when converting from Unknown (#3143)
Commits
  • 5ed87dd chore: release (#3259)
  • 84105d9 fix(deps): update rust crate ctor to 0.11.0 (#3270)
  • 20e9072 chore(deps): update dependency ava to v8 (#3269)
  • 29215a9 build(deps): bump postcss from 8.5.8 to 8.5.12 (#3266)
  • ab8a86b perf(napi): skip duplicate validation (#3268)
  • 837d122 docs(napi): clarify unsafe function invariants (#3267)
  • 9c6f720 chore(deps): update dependency oxc-parser to ^0.128.0 (#3265)
  • 1ca6522 fix(napi-derive): only FnArgs unpacks tuple to variadic params (#3264)
  • f3466fa fix(deps): update dependency dockerode to v5 (#3260)
  • ba6597b fix(napi): Convert #[ctor] calls to declarative form to remove all features (...
  • Additional commits viewable in compare view

Updates napi-derive from 3.5.2 to 3.5.6

Release notes

Sourced from napi-derive's releases.

napi-derive-v3.5.6

Fixed

  • (napi) invalid TypeScript generic syntax for type aliases (#3289)
  • (deps) update rust crate ctor to v1 (#3276)
  • (deps) update rust crate ctor to 0.13.0 (#3275)
  • (deps) update rust crate ctor to 0.12.0 (#3271)

napi-derive-v3.5.5

Fixed

  • (deps) update rust crate ctor to 0.11.0 (#3270)
  • (napi) Convert #[ctor] calls to declarative form to remove all features (#3257)

napi-derive-v3.5.4

Fixed

  • (deps) update rust crate ctor to v0.10.0 (#3224)
  • (deps) disable ctor priority feature (#3209)
  • (deps) update rust crate ctor to v0.9.1 (#3204)

napi-derive-v3.5.3

Fixed

  • (deps) update rust crate ctor to v0.8.0 (#3170)
  • (deps) update rust crate ctor to v0.7.0 (#3169)
Commits
  • e9c50bb chore: release (#3272)
  • a2744da fix(build): on openbsd, work around local thread storage destructor crash aft...
  • 3456eff feat(napi): add ThreadsafeFunction::call_async_catch to handle errors in ca...
  • 5f70bd5 chore(deps): upgrade typescript to v6 (#3292)
  • 16e48d1 fix(napi): invalid TypeScript generic syntax for type aliases (#3289)
  • 159395b chore(deps): update dependency oxc-parser to ^0.130.0 (#3290)
  • 86381bc feat(cli): opt-in runtime enum for #[napi(string_enum)] via --runtime-string-...
  • 66893f1 chore(deps): update release-plz/action action to v0.5.129 (#3288)
  • e3cc8e6 build(deps): bump fast-xml-builder from 1.1.5 to 1.2.0 (#3285)
  • 0e6e5f6 build(deps): bump fast-uri from 3.1.0 to 3.1.2 (#3286)
  • Additional commits viewable in compare view

Updates wasm-bindgen from 0.2.114 to 0.2.121

Release notes

Sourced from wasm-bindgen's releases.

0.2.121

Added

  • Added the slice_to_array attribute for imported JS functions, which makes a &[T] (or Option<&[T]>) argument arrive on the JS side as a plain Array rather than a typed array — without changing the Rust-side &[T] signature. Useful when binding JS APIs that take T[] rather than TypedArray<T>. For primitive element kinds the wire is the same zero-copy borrow used by plain &[T], with the JS-side shim wrapping the view in Array.from(...) to materialise the Array — no extra allocation. For String, JsValue, and JS-imported element types the Rust side builds a fresh [u32] index buffer that JS reads and frees, with per-element &T -> JsValue (refcount bump for handle-shaped types). No T: Clone bound is required. The attribute can be set per-fn (#[wasm_bindgen(slice_to_array)] fn ...) or per-block on an extern "C" { ... } declaration to apply to every imported function in that block. &[ExportedRustStruct] remains unsupported (use owned Vec<T> for that). Has no effect on exported functions; default &[T] (typed-array view / memory borrow) and owned Vec<T> semantics are unchanged for callers that didn't opt in. See the slice_to_array guide page. #5145

  • Added js_sys::AggregateError bindings (constructor, errors getter, and new_with_message / new_with_options overloads). AggregateError represents multiple unrelated errors wrapped in a single error, e.g. as thrown by Promise.any when all input promises reject, along with js_sys::ErrorOptions, accepted by built-in error constructors. ErrorOptions::new(cause) constructs an instance pre-populated with cause, and get_cause / set_cause provide typed access to the property. All standard error constructors that previously took only a message (EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, WebAssembly.CompileError, WebAssembly.LinkError, WebAssembly.RuntimeError) now expose a new_with_options(message, &ErrorOptions) overload, and Error gains new_with_error_options(message, &ErrorOptions) alongside the existing untyped new_with_options. AggregateError::new_with_options also takes &ErrorOptions. #5139

  • Added inheritance for Rust-exported types: an exported struct may declare #[wasm_bindgen(extends = Parent)] to inherit from another exported #[wasm_bindgen] struct. The macro injects a hidden parent: wasm_bindgen::Parent<Parent> field (a refcounted cell around the parent value) and emits class Child extends Parent in the generated JS / .d.ts. The child gets an AsRef<Parent<Parent>> impl for the direct parent, and threads per-class pointer slots through the wasm ABI so that instanceof Parent is true and parent methods

... (truncated)

Changelog

Sourced from wasm-bindgen's changelog.

0.2.121

Added

  • Added the slice_to_array attribute for imported JS functions, which makes a &[T] (or Option<&[T]>) argument arrive on the JS side as a plain Array rather than a typed array — without changing the Rust-side &[T] signature. Useful when binding JS APIs that take T[] rather than TypedArray<T>. For primitive element kinds the wire is the same zero-copy borrow used by plain &[T], with the JS-side shim wrapping the view in Array.from(...) to materialise the Array — no extra allocation. For String, JsValue, and JS-imported element types the Rust side builds a fresh [u32] index buffer that JS reads and frees, with per-element &T -> JsValue (refcount bump for handle-shaped types). No T: Clone bound is required. The attribute can be set per-fn (#[wasm_bindgen(slice_to_array)] fn ...) or per-block on an extern "C" { ... } declaration to apply to every imported function in that block. &[ExportedRustStruct] remains unsupported (use owned Vec<T> for that). Has no effect on exported functions; default &[T] (typed-array view / memory borrow) and owned Vec<T> semantics are unchanged for callers that didn't opt in. See the slice_to_array guide page. #5145

  • Added js_sys::AggregateError bindings (constructor, errors getter, and new_with_message / new_with_options overloads). AggregateError represents multiple unrelated errors wrapped in a single error, e.g. as thrown by Promise.any when all input promises reject, along with js_sys::ErrorOptions, accepted by built-in error constructors. ErrorOptions::new(cause) constructs an instance pre-populated with cause, and get_cause / set_cause provide typed access to the property. All standard error constructors that previously took only a message (EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, WebAssembly.CompileError, WebAssembly.LinkError, WebAssembly.RuntimeError) now expose a new_with_options(message, &ErrorOptions) overload, and Error gains new_with_error_options(message, &ErrorOptions) alongside the existing untyped new_with_options. AggregateError::new_with_options also takes &ErrorOptions. #5139

  • Added inheritance for Rust-exported types: an exported struct may declare #[wasm_bindgen(extends = Parent)] to inherit from another exported #[wasm_bindgen] struct. The macro injects a hidden parent: wasm_bindgen::Parent<Parent> field (a refcounted cell around the parent value) and emits class Child extends Parent in the generated JS / .d.ts. The child gets an AsRef<Parent<Parent>> impl for the direct parent, and threads per-class pointer slots through

... (truncated)

Commits
  • 49457f2 Loosen JsFuture<T> bound to support Promise<Union> (#5149)
  • e755d21 release: 0.2.121 - schema bump (#5148)
  • 1cb17ad Release 0.2.121
  • 2064570 Fix slice_to_array erroring on non-slice args of slice_to_array fns (#5146)
  • dfefda7 Fix panic unwind bundler js (#5142)
  • 12646be Add slice_to_array attribute for plain-Array slice imports (#5145)
  • f4706e3 feat: support union types with Rust enums (#4734)
  • b75c754 feat: inheritance for Rust-exported types via #[wasm_bindgen(extends = ...)] ...
  • b259436 Support raw identifiers for enums, enum variants, extern types, and impls (#4...
  • b7ffebc Update experimental ViewTransition interface (#5138)
  • Additional commits viewable in compare view

Updates insta from 1.46.3 to 1.47.2

Release notes

Sourced from insta's releases.

1.47.2

Release Notes

  • Restore Send + Sync on Settings, Redactions, and Redaction by reverting the Arc to Rc change from 1.47.0, which was semver-breaking. #873 #874
  • Add Send + Sync bounds to Comparator trait for consistency with Arc-based storage. #872
  • Add compile-time assertion to prevent future auto-trait regressions.

Install cargo-insta 1.47.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.47.2/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/mitsuhiko/insta/releases/download/1.47.2/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.47.2

File Platform Checksum
cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum
cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum
cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum
cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum

1.47.1

Release Notes

  • Revert sorting of sequences in sort_maps. The change in 1.47.0 sorted all Seq values (including Vec), not just non-deterministic collections like HashSet, which was a breaking change. #876

Install cargo-insta 1.47.1

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.47.1/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

... (truncated)

Changelog

Sourced from insta's changelog.

1.47.2

  • Restore Send + Sync on Settings, Redactions, and Redaction by reverting the Arc to Rc change from 1.47.0, which was semver-breaking. #873 #874
  • Add Send + Sync bounds to Comparator trait for consistency with Arc-based storage. #872
  • Add compile-time assertion to prevent future auto-trait regressions.

1.47.1

  • Revert sorting of sequences in sort_maps. The change in 1.47.0 sorted all Seq values (including Vec), not just non-deterministic collections like HashSet, which was a breaking change. #876

1.47.0

  • Add Comparator trait for customizing how snapshot values are compared. #872 (@​dstu)
  • Sort sequences in sort_maps to fix non-deterministic HashSet snapshots. #876
  • Improve TOML serialization error message for unsupported types, suggesting assert_json_snapshot! or assert_yaml_snapshot! as alternatives. #880
  • Remove unnecessary Send + Sync bounds from Redaction, allowing non-Send closures in dynamic redactions. #874
  • Don't use Arc in Settings unnecessarily. #873 (@​dstu)
  • Upgrade console to 0.16 and MSRV to 1.66. #885
  • Upgrade toml-edit to 0.25. #882 (@​alexanderkjall)
Commits
  • 0ddf1e8 Release 1.47.2 (#894)
  • 094b1cf Revert Arc→Rc change, restore Send + Sync on Settings (#893)
  • 65a5233 Add regression test for sort_maps not sorting Vecs (#892)
  • fdbfc15 Revert sort_maps sequence sorting, release 1.47.1 (#891)
  • 46b6f2a Release 1.47.0 (#889)
  • aa12933 Upgrade console to 0.16, bump MSRV to 1.66 (#885)
  • 98c084c upgrade toml-edit to 0.25 (#882)
  • 4e889b0 the test_glob test depends on both glob and json (#883)
  • 4d738e5 Bump @​tootallnate/once and @​vscode/test-electron in /vscode-insta (#881)
  • 09f2b8b Improve TOML serialization error message for unsupported types (#880)
  • Additional commits viewable in compare view

Updates napi-build from 2.3.1 to 2.3.2

Release notes

Sourced from napi-build's releases.

napi-build-v2.3.2

Fixed

  • (build) on openbsd, work around local thread storage destructor crash after DSO unloading using '-z, nodelete' linker flag (#3274)
Commits
  • e9c50bb chore: release (#3272)
  • a2744da fix(build): on openbsd, work around local thread storage destructor crash aft...
  • 3456eff feat(napi): add ThreadsafeFunction::call_async_catch to handle errors in ca...
  • 5f70bd5 chore(deps): upgrade typescript to v6 (#3292)
  • 16e48d1 fix(napi): invalid TypeScript generic syntax for type aliases (#3289)
  • 159395b chore(deps): update dependency oxc-parser to ^0.130.0 (#3290)
  • 86381bc feat(cli): opt-in runtime enum for #[napi(string_enum)] via --runtime-string-...
  • 66893f1 chore(deps): update release-plz/action action to v0.5.129 (#3288)
  • e3cc8e6 build(deps): bump fast-xml-builder from 1.1.5 to 1.2.0 (#3285)
  • 0e6e5f6 build(deps): bump fast-uri from 3.1.0 to 3.1.2 (#3286)
  • 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 rust-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [js-sys](https://github.com/wasm-bindgen/wasm-bindgen) | `0.3.91` | `0.3.98` |
| [napi](https://github.com/napi-rs/napi-rs) | `3.8.3` | `3.8.6` |
| [napi-derive](https://github.com/napi-rs/napi-rs) | `3.5.2` | `3.5.6` |
| [wasm-bindgen](https://github.com/wasm-bindgen/wasm-bindgen) | `0.2.114` | `0.2.121` |
| [insta](https://github.com/mitsuhiko/insta) | `1.46.3` | `1.47.2` |
| [napi-build](https://github.com/napi-rs/napi-rs) | `2.3.1` | `2.3.2` |


Updates `js-sys` from 0.3.91 to 0.3.98
- [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 `napi` from 3.8.3 to 3.8.6
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Commits](napi-rs/napi-rs@napi-v3.8.3...napi-v3.8.6)

Updates `napi-derive` from 3.5.2 to 3.5.6
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Commits](napi-rs/napi-rs@napi-derive-v3.5.2...napi-derive-v3.5.6)

Updates `wasm-bindgen` from 0.2.114 to 0.2.121
- [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.114...0.2.121)

Updates `insta` from 1.46.3 to 1.47.2
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.46.3...1.47.2)

Updates `napi-build` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Commits](napi-rs/napi-rs@napi-build-v2.3.1...napi-build-v2.3.2)

---
updated-dependencies:
- dependency-name: js-sys
  dependency-version: 0.3.98
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: napi
  dependency-version: 3.8.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: napi-derive
  dependency-version: 3.5.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: wasm-bindgen
  dependency-version: 0.2.121
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: insta
  dependency-version: 1.47.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: napi-build
  dependency-version: 2.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
...

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 18, 2026
@ubugeeei ubugeeei merged commit 46afb7f into main May 18, 2026
2 checks passed
@ubugeeei ubugeeei deleted the dependabot/cargo/rust-dependencies-416b1a7e3d branch May 18, 2026 05:29
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