kylebarron / parquet-wasm

Rust-based WebAssembly bindings to read and write Apache Parquet data
https://kylebarron.dev/parquet-wasm/
Apache License 2.0
483 stars 19 forks source link

Bump the other group with 11 updates #397

Closed dependabot[bot] closed 7 months ago

dependabot[bot] commented 7 months ago

Bumps the other group with 11 updates:

Package From To
wasm-bindgen 0.2.87 0.2.89
js-sys 0.3.64 0.3.66
getrandom 0.2.10 0.2.11
thiserror 1.0.49 1.0.50
serde-wasm-bindgen 0.6.0 0.6.1
wasm-bindgen-futures 0.4.37 0.4.39
futures 0.3.28 0.3.29
async-compat 0.2.2 0.2.3
wasm-streams 0.3.0 0.4.0
web-sys 0.3.64 0.3.65
wasm-bindgen-test 0.3.37 0.3.39

Updates wasm-bindgen from 0.2.87 to 0.2.89

Changelog

Sourced from wasm-bindgen's changelog.

wasm-bindgen Change Log


Unreleased

Added

  • Add additional constructor to DataView for SharedArrayBuffer. #3695

  • Stabilize wasm_bindgen::module(). #3690

Fixed

  • The DWARF section is now correctly modified instead of leaving it in a broken state. #3483

  • Fixed an issue where #[wasm_bindgen] automatically derived the TryFrom trait for any struct, preventing custom TryFrom<JsValue> implementations. It has been updated to utilize a new TryFromJsValue trait instead. #3709

  • Update the TypeScript signature of __wbindgen_thread_destroy to indicate that it's parameters are optional. #3703

Removed

  • Removed Gecko-internal dictionary bindings Csp, CspPolicies, CspReport and CspReportProperties. #3721

0.2.88

Released 2023-11-01

Added

  • Add bindings for RTCRtpTransceiverInit.sendEncodings. #3642

  • Add bindings for the Web Locks API to web-sys. #3604

  • Add bindings for ViewTransition to web-sys. #3598

  • Extend AudioContext with unstable features supporting audio sink configuration. #3433

  • Add bindings for WebAssembly.Tag and WebAssembly.Exception. #3484

... (truncated)

Commits


Updates js-sys from 0.3.64 to 0.3.66

Commits


Updates getrandom from 0.2.10 to 0.2.11

Changelog

Sourced from getrandom's changelog.

[0.2.11] - 2023-11-08

Added

  • GNU/Hurd support #370

Changed

  • Renamed __getrandom_internal to __GETRANDOM_INTERNAL #369
  • Updated link to Hermit docs #374

#369: rust-random/getrandom#369 #370: rust-random/getrandom#370 #374: rust-random/getrandom#374

Commits


Updates thiserror from 1.0.49 to 1.0.50

Release notes

Sourced from thiserror's releases.

1.0.50

  • Improve diagnostic when a #[source], #[from], or #[transparant] attribute refers to a type that has no std::error::Error impl (#258, thanks @​de-vri-es)
Commits
  • a7d220d Release 1.0.50
  • 4088d16 Ignore module_name_repetitions pedantic clippy lint
  • ebebf77 Format ui tests with rustfmt
  • ff0a0a5 Source and From attributes only have single-ident path
  • 7cec716 Remove reliance on Spanned for Member
  • c9fe739 Touch up PR 258
  • 4850c6f Merge pull request #258 from de-vri-es/as-dyn-error-span
  • a49f7c6 Change span of as_dyn_error() to point compile error at attribute.
  • f4eac7e Ignore needless_raw_string_hashes clippy lint
  • See full diff in compare view


Updates serde-wasm-bindgen from 0.6.0 to 0.6.1

Commits


Updates wasm-bindgen-futures from 0.4.37 to 0.4.39

Commits


Updates futures from 0.3.28 to 0.3.29

Release notes

Sourced from futures's releases.

0.3.29

  • Add TryStreamExt::try_ready_chunks (#2757)
  • Add TryStreamExt::{try_all,try_any} (#2783)
  • Add UnboundedSender::{len,is_empty} (#2750)
  • Fix Sync impl of FuturesUnordered (#2788)
  • Fix infinite loop caused by invalid UTF-8 bytes (#2785)
  • Fix build error with -Z minimal-versions (#2761)
Changelog

Sourced from futures's changelog.

0.3.29 - 2023-10-26

  • Add TryStreamExt::try_ready_chunks (#2757)
  • Add TryStreamExt::{try_all,try_any} (#2783)
  • Add UnboundedSender::{len,is_empty} (#2750)
  • Fix Sync impl of FuturesUnordered (#2788)
  • Fix infinite loop caused by invalid UTF-8 bytes (#2785)
  • Fix build error with -Z minimal-versions (#2761)
Commits
  • 86f2a6a Release 0.3.29
  • a40204d Provide AtomicWaker if portable-atomic feature is enabled, even if atomic CAS...
  • 24cca65 Add TryAny adapter
  • e60a439 Add TryAll adapter
  • 5051335 Remove unsafe code from AssertUnmoved
  • 60a86e1 Fix Sync impl of FuturesUnordered
  • f392082 Extend io::AsyncBufReadExt::lines example with invalid UTF-8
  • 2f2ec39 Fix infinite loop caused by invalid UTF-8 bytes
  • 8570ea6 Fix unused_imports warning
  • 43c0c5f Add tests for StreamExt::all and StreamExt::any
  • Additional commits viewable in compare view


Updates async-compat from 0.2.2 to 0.2.3

Release notes

Sourced from async-compat's releases.

v0.2.3

  • Enter the tokio context while dropping wrapped tokio types. (#22)
Changelog

Sourced from async-compat's changelog.

Version 0.2.3

  • Enter the tokio context while dropping wrapped tokio types. (#22)
Commits


Updates wasm-streams from 0.3.0 to 0.4.0

Release notes

Sourced from wasm-streams's releases.

v0.4.0

  • Added ReadableStream::from(async_iterable) and try_from(async_iterable). (#23)
  • Stop calling byobRequest.respond(0) on cancel (#16)
  • Breaking change: The system modules (readable::sys, writable::sys and transform::sys) now re-export directly from the web-sys crate. This should make it easier to use from_raw(), as_raw() and into_raw(). (#22)
Changelog

Sourced from wasm-streams's changelog.

v0.4.0 (2023-10-31)

  • Added ReadableStream::from(async_iterable) and try_from(async_iterable). (#23)
  • Stop calling byobRequest.respond(0) on cancel (#16)
  • Breaking change: The system modules (readable::sys, writable::sys and transform::sys) now re-export directly from the web-sys crate. This should make it easier to use from_raw(), as_raw() and into_raw(). (#22)
Commits


Updates web-sys from 0.3.64 to 0.3.65

Commits


Updates wasm-bindgen-test from 0.3.37 to 0.3.39

Commits


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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 7 months ago

Superseded by #403.