kylebarron / parquet-wasm

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

Bump the other group with 12 updates #477

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the other group with 12 updates:

Package From To
wasm-bindgen 0.2.88 0.2.92
js-sys 0.3.64 0.3.69
getrandom 0.2.10 0.2.12
thiserror 1.0.49 1.0.55
wasm-bindgen-futures 0.4.37 0.4.42
futures 0.3.28 0.3.30
reqwest 0.11.22 0.11.26
async-compat 0.2.2 0.2.3
wasm-streams 0.3.0 0.4.0
async-trait 0.1.74 0.1.78
web-sys 0.3.64 0.3.69
wasm-bindgen-test 0.3.37 0.3.42

Updates wasm-bindgen from 0.2.88 to 0.2.92

Changelog

Sourced from wasm-bindgen's changelog.

0.2.92

Released 2024-03-04

Added

  • Add bindings for RTCPeerConnectionIceErrorEvent. #3835

  • Add bindings for CanvasState.reset(), affecting CanvasRenderingContext2D and OffscreenCanvasRenderingContext2D. #3844

  • Add TryFrom implementations for Number, that allow losslessly converting from 64- and 128-bits numbers. #3847

  • Add support for Option<*const T>, Option<*mut T> and NonNull<T>. #3852 #3857

  • Allow overriding the URL used for headless tests by setting WASM_BINDGEN_TEST_ADDRESS. #3861

Fixed

  • Make .wasm output deterministic when using --reference-types. #3851

  • Don't allow invalid Unicode scalar values in char. #3866


0.2.91

Released 2024-02-06

Added

  • Added bindings for the RTCRtpTransceiver.setCodecPreferences() and unstable bindings for the RTCRtpEncodingParameters.scalabilityMode. #3828

  • Add unstable bindings for the FileSystemAccess API #3810

  • Added support for running tests in shared and service workers with wasm_bindgen_test_configure! run_in_shared_worker and run_in_service_worker. #3804

  • Accept the --skip flag with wasm-bindgen-test-runner. #3803

... (truncated)

Commits


Updates js-sys from 0.3.64 to 0.3.69

Commits


Updates getrandom from 0.2.10 to 0.2.12

Changelog

Sourced from getrandom's changelog.

[0.2.12] - 2024-01-09

Fixed

  • Custom backend for targets without atomics #385

Changed

  • Improve robustness of the Hermit backend and sys_fill_exact #386
  • Raise minimum supported Apple OS versions to macOS 10.12 and iOS 10 #388

Added

  • Document platform support policy #387

#385: rust-random/getrandom#385 #386: rust-random/getrandom#386 #387: rust-random/getrandom#387 #388: rust-random/getrandom#388

[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.55

Release notes

Sourced from thiserror's releases.

1.0.55

  • Work around improperly cached build script result by sccache – second attempt (#280)

1.0.54

  • Work around improperly cached build script result by sccache – first attempt (#279)

1.0.53

  • Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#270)

1.0.52

  • Fix interaction with RUSTC_BOOTSTRAP (#269)

1.0.51

  • Improve diagnostics when an invalid attribute previously caused thiserror to generate no Error impl (#266)

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
  • 6089273 Release 1.0.55
  • 322a2ae Merge pull request #280 from dtolnay/depinfo
  • fd7d7a5 Emit dep-info for probe.rs in case sccache needs it
  • 447c328 Release 1.0.54
  • 4619db8 Merge pull request #279 from dtolnay/depinfo
  • 7b53bff Make env-dep:RUSTC_BOOTSTRAP get listed in probe's dep-info
  • e0500ad Merge pull request #277 from dtolnay/nightlyci
  • 48cea47 Make CI verify that error_generic_member_access works in latest nightly
  • fe40a50 Merge pull request #276 from dtolnay/optionifletelse
  • b97654a Remove option_if_let_else clippy suppression
  • Additional commits viewable in compare view


Updates wasm-bindgen-futures from 0.4.37 to 0.4.42

Commits


Updates futures from 0.3.28 to 0.3.30

Release notes

Sourced from futures's releases.

0.3.30

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)

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.30 - 2023-12-24

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)

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
  • de1a0fd Release 0.3.30
  • 68d2845 Remove a redundant space in example (#2816)
  • fdd2ce7 Fix broken link in CopyBufAbortable docs (#2815)
  • 272a3c7 Use cfg(target_has_atomic) on no-std targets
  • c179201 FillBuf: Do not call poll_fill_buf twice
  • e6735f3 FuturesUnordered: Fix clear implementation
  • 04d01a0 FuturesOrdered: Use 64-bit index
  • e4aa659 remove redundant impl Unpin
  • 17851c1 provide a mechanism to determine if io read/write halves are from the same st...
  • 4910799 provide a non-destructive mechanism to determine if a sink/stream are paired
  • Additional commits viewable in compare view


Updates reqwest from 0.11.22 to 0.11.26

Release notes

Sourced from reqwest's releases.

v0.11.26

  • Revert system-configuration upgrade, which broke MSRV on macOS.

v0.11.25

What's Changed

  • Fix Certificate::from_pem_bundle() parsing.
  • Fix Apple linker errors from detecting system proxies.

New Contributors

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.11.24...v0.11.25

v0.11.24

What's Changed

  • Add Certificate::from_pem_bundle() to add a bundle.
  • Add http3_prior_knowledge() to blocking client builder.
  • Remove Sync bounds requirement for Body::wrap_stream().
  • Fix HTTP/2 to retry REFUSED_STREAM requests.
  • Fix instances of converting Url to Uri that could panic.

New Contributors

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.11.23...v0.11.24

v0.11.23

What's Changed

  • Add Proxy::custom_http_auth(val) for setting the raw Proxy-Authorization header when connecting to proxies.
  • Fix redirect to reject locations that are not http:// or https://.
  • Fix setting nodelay when TLS is enabled but URL is HTTP.
  • (wasm) Add ClientBuilder::user_agent(val).
  • (wasm) add multipart::Form::headers(headers).

New Contributors

... (truncated)

Changelog

Sourced from reqwest's changelog.

v0.11.26

  • Revert system-configuration upgrade, which broke MSRV on macOS.

v0.11.25

  • Fix Certificate::from_pem_bundle() parsing.
  • Fix Apple linker errors from detecting system proxies.

v0.11.24

  • Add Certificate::from_pem_bundle() to add a bundle.
  • Add http3_prior_knowledge() to blocking client builder.
  • Remove Sync bounds requirement for Body::wrap_stream().
  • Fix HTTP/2 to retry REFUSED_STREAM requests.
  • Fix instances of converting Url to Uri that could panic.

v0.11.23

  • Add Proxy::custom_http_auth(val) for setting the raw Proxy-Authorization header when connecting to proxies.
  • Fix redirect to reject locations that are not http:// or https://.
  • Fix setting nodelay when TLS is enabled but URL is HTTP.
  • (wasm) Add ClientBuilder::user_agent(val).
  • (wasm) add multipart::Form::headers(headers).
Commits


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 async-trait from 0.1.74 to 0.1.78

Release notes

Sourced from async-trait's releases.

0.1.78

  • Prevent unused_qualifications lint being triggered in generated code in nightly-2024-03-05 and up (#260)

0.1.77

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

0.1.76

  • Documentation improvements

0.1.75

  • Documentation improvements
Commits
  • c73061d Release 0.1.78
  • b6314bc Refactor inferred bound filtering
  • 8d51928 Merge pull request #262 from dtolnay/asyncspan
  • c98a408 Minimize use of async token's span in expanded code
  • 2f5343c Merge pull request #261 from dtolnay/inferredbound
  • 1a01bb4 Skip needlessly generating inferred bounds during ?Send
  • e68d68c Merge pull request #260 from dtolnay/qualifications
  • 75879e8 Ignore intentional unused_qualifications in a regression test
  • 4cf4ff6 Ignore unused_qualifications rustc lint in generated code
  • 2002954 Reproduce unused_qualifications lint in tests
  • Additional commits viewable in compare view


Updates web-sys from 0.3.64 to 0.3.69

Commits


Updates wasm-bindgen-test from 0.3.37 to 0.3.42

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 3 months ago

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