bytecodealliance / javy

JS to WebAssembly toolchain
Apache License 2.0
2.1k stars 101 forks source link

Bump the nonbreaking group across 1 directory with 10 updates #636

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the nonbreaking group with 10 updates in the / directory:

Package From To
cc 1.0.92 1.0.96
hyper 1.2.0 1.3.1
serde 1.0.197 1.0.200
serde_json 1.0.115 1.0.116
rmp-serde 1.1.2 1.3.0
fastrand 2.0.2 2.1.0
wasmprinter 0.202.0 0.206.0
swc_core 0.90.30 0.91.3
wit-parser 0.202.0 0.206.0
wasmparser 0.202.0 0.206.0

Updates cc from 1.0.92 to 1.0.96

Release notes

Sourced from cc's releases.

1.0.96

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/cc-rs/compare/1.0.95...1.0.96

1.0.95

What's Changed

Full Changelog: https://github.com/rust-lang/cc-rs/compare/1.0.94...1.0.95

1.0.94

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/cc-rs/compare/1.0.93...1.0.94

1.0.93

What's Changed

Full Changelog: https://github.com/rust-lang/cc-rs/compare/1.0.92...1.0.93

Commits


Updates hyper from 1.2.0 to 1.3.1

Release notes

Sourced from hyper's releases.

v1.3.1

Bug Fixes

  • client: revert auto content-length header for some requests (#3633)

v1.3.0

Bug Fixes

  • client: send content-length even with no body (172fdfaf)
  • http2:
    • max_header_list_size(num) defaults to 16kb (203d1b09)
    • initial_max_send_streams defaults to 100 (2d1bd708)
  • server:
    • avoid unwrapping for the Future impl of HTTP/1 UpgradeableConnection (#3627) (b79be911, closes #3621)
    • avoid graceful_shutdown panic on upgraded H1 connection (#3616) (6ecf8521)

Features

  • client:
    • add max_header_list_size(num) to http2::Builder. (1c5b1b87)
    • add max_pending_accept_reset_streams HTTP2 option (#3617) (330ddf1d)
  • ext: implement From ReasonPhrase for Bytes (dc27043a)
  • service: expose Service and HttpService trait unconditionally (6aee2e6e)
  • server: relax 'static from connection IO trait bounds (#3595) (0013bdda)

New Contributors

Full Changelog: https://github.com/hyperium/hyper/compare/v1.2.0...v1.3.0

Changelog

Sourced from hyper's changelog.

v1.3.1 (2024-04-16)

Bug Fixes

  • client: revert auto content-length header for some requests (#3633)

v1.3.0 (2024-04-15)

Bug Fixes

  • client: send content-length even with no body (172fdfaf)
  • http2:
    • max_header_list_size(num) defaults to 16kb (203d1b09)
    • initial_max_send_streams defaults to 100 (2d1bd708)
  • server:
    • avoid unwrapping for the Future impl of HTTP/1 UpgradeableConnection (#3627) (b79be911, closes #3621)
    • avoid graceful_shutdown panic on upgraded H1 connection (#3616) (6ecf8521)

Features

  • client:
    • add max_header_list_size(num) to http2::Builder. (1c5b1b87)
    • add max_pending_accept_reset_streams HTTP2 option (#3617) (330ddf1d)
  • ext: implement From ReasonPhrase for Bytes (dc27043a)
  • service: expose Service and HttpService trait unconditionally (6aee2e6e)
  • server: relax 'static from connection IO trait bounds (#3595) (0013bdda)
Commits
  • c78379e v1.3.1
  • 3705a7e Revert "fix(client): send content-length even with no body"
  • d53305a v1.3.0
  • dc27043 feat(ext): implement From ReasonPhrase for Bytes
  • 6aee2e6 feat(service): expose Service and HttpService trait unconditionally
  • 172fdfa fix(client): send content-length even with no body
  • b79be91 fix(server): avoid unwrapping for the Future impl of HTTP/1 `UpgradeableCon...
  • 203d1b0 fix(http2): max_header_list_size(num) defaults to 16kb
  • 1c5b1b8 feat(client): add max_header_list_size(num) to http2::Builder.
  • df33d4d refactor(h1): use UninitSlice::as_uninit_slice_mut() instead of cast (#3618)
  • Additional commits viewable in compare view


Updates serde from 1.0.197 to 1.0.200

Release notes

Sourced from serde's releases.

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)

v1.0.199

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#2732, thanks @​aatifsyed)

v1.0.198

Commits
  • cc865ac Release 1.0.200
  • 2d973c1 Merge pull request #2733 from jamessan/nan-decimal
  • 6ca499b Only format Unexpected::Float with decimal point if it is finite
  • 1477028 Release 1.0.199
  • 789740b Merge pull request #2732 from aatifsyed/master
  • 8fe7539 fix: ambiguous associated type in forward_to_deserialize_any!
  • f6623a3 Ignore cast_precision_loss pedantic clippy lint
  • c4fb923 Release 1.0.198
  • 65b7eea Merge pull request #2729 from dtolnay/saturating
  • 01cd696 Integrate Saturating<T> deserialization into impl_deserialize_num macro
  • Additional commits viewable in compare view


Updates serde_json from 1.0.115 to 1.0.116

Release notes

Sourced from serde_json's releases.

v1.0.116

Commits
  • a3f62bb Release 1.0.116
  • 12c8ee0 Hide "non-exhaustive patterns" errors when crate fails to compile
  • 051ce97 Merge pull request 1124 from mleonhard/master
  • 25dc750 Replace features_check mod with a call to std::compile_error!. Fixes htt...
  • 2e15e3d Revert "Temporarily disable miri on doctests"
  • 0baba28 Resolve legacy_numeric_constants clippy lints
  • See full diff in compare view


Updates rmp-serde from 1.1.2 to 1.3.0

Commits


Updates fastrand from 2.0.2 to 2.1.0

Release notes

Sourced from fastrand's releases.

v2.1.0

  • Change the RNG algorithm and the way that the seed is computed. This will cause the algorithm to emit different constants for different seeds, hence the minor SemVer change.
    • Update to the final WyRand v4.2 constants for better entropy. (#82)
    • Remove an unnecessary seed modification. (#73)
Changelog

Sourced from fastrand's changelog.

Version 2.1.0

  • Change the RNG algorithm and the way that the seed is computed. This will cause the algorithm to emit different constants for different seeds, hence the minor SemVer change.
    • Update to the final WyRand v4.2 constants for better entropy. (#82)
    • Remove an unnecessary seed modification. (#73)
Commits


Updates wasmprinter from 0.202.0 to 0.206.0

Commits


Updates swc_core from 0.90.30 to 0.91.3

Commits


Updates wit-parser from 0.202.0 to 0.206.0

Commits


Updates wasmparser from 0.202.0 to 0.206.0

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

@dependabot merge