bytecodealliance / javy

JS to WebAssembly toolchain
Apache License 2.0
2.16k stars 103 forks source link

Bump the nonbreaking group with 8 updates #577

Closed dependabot[bot] closed 8 months ago

dependabot[bot] commented 8 months ago

Bumps the nonbreaking group with 8 updates:

Package From To
anyhow 1.0.75 1.0.78
once_cell 1.18.0 1.19.0
tokio 1.34.0 1.35.1
hyper 1.0.1 1.1.0
hyper-util 0.1.1 0.1.2
serde_bytes 0.11.12 0.11.13
serde_json 1.0.108 1.0.109
tempfile 3.8.1 3.9.0

Updates anyhow from 1.0.75 to 1.0.78

Release notes

Sourced from anyhow's releases.

1.0.78

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

1.0.77

1.0.76

  • Opt in to unsafe_op_in_unsafe_fn lint (#329)
Commits
  • 38c79ef Release 1.0.78
  • ded2295 Merge pull request #337 from dtolnay/bootstrap
  • ae45b67 Do not rebuild on RUSTC_BOOTSTRAP changes on nightly compiler
  • 2d32366 Update crate name used for build script probe
  • d10baed Move ExitStatus::success check into compile_probe()
  • 290c450 Merge pull request #336 from dtolnay/optionifletelse
  • 6b231dd Remove option_if_let_else clippy suppression from build script
  • eb66ff5 Merge pull request #335 from dtolnay/cargoenvvar
  • b1590b1 Require cargo promised environment variables to be present
  • 15646f4 Merge pull request #334 from dtolnay/probe
  • Additional commits viewable in compare view


Updates once_cell from 1.18.0 to 1.19.0

Changelog

Sourced from once_cell's changelog.

1.19.0

  • Use portable-atomic instead of atomic-polyfill, #251.
Commits


Updates tokio from 1.34.0 to 1.35.1

Release notes

Sourced from tokio's releases.

Tokio v1.35.1

1.35.1 (December 19, 2023)

This is a forward part of a change that was backported to 1.25.3.

Fixed

  • io: add budgeting to tokio::runtime::io::registration::async_io (#6221)

#6221: tokio-rs/tokio#6221

Tokio v1.35.0

1.35.0 (December 8th, 2023)

Added

  • net: add Apple watchOS support (#6176)

Changed

  • io: drop the Sized requirements from AsyncReadExt.read_buf (#6169)
  • runtime: make Runtime unwind safe (#6189)
  • runtime: reduce the lock contention in task spawn (#6001)
  • tokio: update nix dependency to 0.27.1 (#6190)

Fixed

  • chore: make --cfg docsrs work without net feature (#6166)
  • chore: use relaxed load for unsync_load on miri (#6179)
  • runtime: handle missing context on wake (#6148)
  • taskdump: fix taskdump cargo config example (#6150)
  • taskdump: skip notified tasks during taskdumps (#6194)
  • tracing: avoid creating resource spans with current parent, use a None parent instead (#6107)
  • tracing: make task span explicit root (#6158)

Documented

  • io: flush in AsyncWriteExt examples (#6149)
  • runtime: document fairness guarantees and current behavior (#6145)
  • task: document cancel safety of LocalSet::run_until (#6147)

#6001: tokio-rs/tokio#6001 #6107: tokio-rs/tokio#6107 #6144: tokio-rs/tokio#6144 #6145: tokio-rs/tokio#6145 #6147: tokio-rs/tokio#6147 #6148: tokio-rs/tokio#6148 #6149: tokio-rs/tokio#6149 #6150: tokio-rs/tokio#6150 #6158: tokio-rs/tokio#6158

... (truncated)

Commits


Updates hyper from 1.0.1 to 1.1.0

Release notes

Sourced from hyper's releases.

v1.1.0

Features

  • client: add http1::Connection without_shutdown() method (#3430) (210bfaa7)
  • http1: Add support for sending HTTP/1.1 Chunked Trailer Fields (#3375) (31b41807, closes #2719)
  • server: expose server::conn::http1::UpgradeableConnection (#3457) (6e3042a8)

Bug Fixes

New Contributors

Full Changelog: https://github.com/hyperium/hyper/compare/v1.0.1...v1.1.0

Changelog

Sourced from hyper's changelog.

v1.1.0 (2023-12-18)

Bug Fixes

Features

  • client: add http1::Connection without_shutdown() method (#3430) (210bfaa7)
  • http1: Add support for sending HTTP/1.1 Chunked Trailer Fields (#3375) (31b41807, closes #2719)
  • server: expose server::conn::http1::UpgradeableConnection (#3457) (6e3042a8)
Commits
  • 1d4ff35 v1.1.0
  • d71ff96 fix(http1): add internal limit for chunked extensions (#3495)
  • 8291538 fix(http1): reject chunked headers missing a digit (#3494)
  • 21aa2f1 refactor(common): move common feature cfg in common::task to common::mod (#3492)
  • d9c5d3b refactor(body): switch opt_len helper macro as function (#3483)
  • 53b560b refactor(proto): use HeaderMap type without client feature (#3491)
  • 31b4180 feat(http1): Add support for sending HTTP/1.1 Chunked Trailer Fields (#3375)
  • 0f2929b chore(ci): enable benchmark timeline in CI again (#3490)
  • 81b1592 chore(meta): change labels of severity to category (#3488)
  • 07554de refactor(error): remove lint config to allow unused code (#3486)
  • Additional commits viewable in compare view


Updates hyper-util from 0.1.1 to 0.1.2

Release notes

Sourced from hyper-util's releases.

v0.1.2

Added

  • Add graceful_shutdown() method to auto connections.
  • Add rt::TokioTimer type that implements hyper::rt::Timer.
  • Add service::TowerToHyperService adapter, allowing using tower::Services as a hyper::service::Service.
  • Implement Clone for auto::Builder.
  • Exports legacy::{Builder, ResponseFuture}.

Fixed

  • Enable HTTP/1 upgrades on the legacy::Client.
  • Prevent divide by zero if DNS returns 0 addresses.

New Contributors

Full Changelog: https://github.com/hyperium/hyper-util/compare/v0.1.1...v0.1.2

Changelog

Sourced from hyper-util's changelog.

0.1.2 (2023-12-20)

Added

  • Add graceful_shutdown() method to auto connections.
  • Add rt::TokioTimer type that implements hyper::rt::Timer.
  • Add service::TowerToHyperService adapter, allowing using tower::Services as a hyper::service::Service.
  • Implement Clone for auto::Builder.
  • Exports legacy::{Builder, ResponseFuture}.

Fixed

  • Enable HTTP/1 upgrades on the legacy::Client.
  • Prevent divide by zero if DNS returns 0 addresses.
Commits
  • a5e34eb v0.1.2
  • 85a92f3 Support graceful shutdown on "auto conn" (#66)
  • 61724d1 feat: tower should be an optional dependency (#79)
  • 99409f5 fix(client): divide by zero error if DNS returns 0 addrs (#76)
  • 7af1744 feat: Add TokioTimer to rt::tokio module (#73)
  • 1dd414e feat: export legacy::ResponseFuture (#75)
  • 1427d1b fix: enable http1 upgrades in legacy client (#74)
  • 475dd1a feat: implement Clone for server auto::Builder (#72)
  • f0117db chore(common): remove unused file (#71)
  • bca85f7 feat: export client::legacy::Builder (#69)
  • Additional commits viewable in compare view


Updates serde_bytes from 0.11.12 to 0.11.13

Release notes

Sourced from serde_bytes's releases.

0.11.13

  • Support serializing and deserializing [u8; N], and add ByteArray<N> (#28, thanks @​sgued)
  • Support deserializing &'de [u8; N] (#46)
  • Support serde(with = "serde_bytes") in no-std Deserialize impls (#47)
Commits
  • 76caff6 Release 0.11.13
  • bd341f2 Merge pull request #47 from serde-rs/nostd-deserialize
  • 1772017 Unconditional serde_bytes::deserialize
  • 0d92965 Merge pull request #46 from serde-rs/refbytearray
  • e1f53b2 Support deserializing &'de [u8; N]
  • 677457b Ignore ptr_as_ptr pedantic clippy lint
  • 7c664c0 Merge pull request #45 from serde-rs/copybytearray
  • 7cd6ddb Touch up PR 28
  • 15970a2 Implement Copy for ByteArray<N>
  • 5da9904 Merge pull request #28 from sgued/byte-array
  • Additional commits viewable in compare view


Updates serde_json from 1.0.108 to 1.0.109

Release notes

Sourced from serde_json's releases.

v1.0.109

  • Documentation improvements
Commits
  • f88bf1f Release 1.0.109
  • bb62c73 Merge pull request #1097 from serde-rs/doccfg
  • df36d10 Restore doc cfg on re-exports
  • c367091 Merge pull request #1095 from dtolnay/hashtest
  • b328ee7 Eliminate hash closure in favor of calling hash_one directly
  • b9bcbad Use BuildHasher::hash_one
  • 7ff6c9e Use random hasher state for number hashing test
  • fe031cd Delete trace_macros! functionality from test
  • 05196ca Update ui test suite to nightly-2023-11-19
  • See full diff in compare view


Updates tempfile from 3.8.1 to 3.9.0

Changelog

Sourced from tempfile's changelog.

3.9.0

  • Updates windows-sys to 0.52
  • Updates minimum rustix version to 0.38.25
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 8 months ago

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