bytecodealliance / javy

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

Bump the nonbreaking group with 10 updates #580

Closed dependabot[bot] closed 8 months ago

dependabot[bot] commented 8 months ago

Bumps the nonbreaking group with 10 updates:

Package From To
anyhow 1.0.75 1.0.79
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 1.0.193 1.0.194
serde_bytes 0.11.12 0.11.14
serde_json 1.0.108 1.0.111
swc_core 0.86.39 0.87.19
tempfile 3.8.1 3.9.0

Updates anyhow from 1.0.75 to 1.0.79

Release notes

Sourced from anyhow's releases.

1.0.79

  • Work around improperly cached build script result by sccache (#340)

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
  • 71ab53d Release 1.0.79
  • 60705a5 Merge pull request #340 from dtolnay/depinfo
  • 17e252b Include env-dep:RUSTC_BOOTSTRAP in dep-info for sccache
  • 04774c0 Merge pull request #338 from dtolnay/nightlyci
  • 1fd290c Make CI verify that error_generic_member_access works in latest nightly
  • ee41470 RUSTC must be set by Cargo for build script
  • 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
  • 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 from 1.0.193 to 1.0.194

Release notes

Sourced from serde's releases.

v1.0.194

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache
Commits
  • d2d977a Release 1.0.194
  • a9a6ee9 Pull in proc-macro2 sccache fix
  • 28c5d21 Merge pull request #2669 from dtolnay/optionifletelse
  • 3d6a789 Remove option_if_let_else clippy suppression
  • a0e6869 Work around doc_link_with_quotes pedantic clippy lint
  • See full diff in compare view


Updates serde_bytes from 0.11.12 to 0.11.14

Release notes

Sourced from serde_bytes's releases.

0.11.14

0.11.13

  • Support serializing and deserializing [u8; N], and add ByteArray<N> (#28, thanks @​sgued)
  • Support deserializing &'de ByteArray<N> (#46)
  • Support serde(with = "serde_bytes") in no-std Deserialize impls (#47)
Commits
  • 5ea2adb Release 0.11.14
  • 118e4b8 Merge pull request #48 from sosthene-nitrokey/deserializing-bare-array-ref
  • 0ef6a89 Implement deserializing &'de [u8; N]
  • 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
  • Additional commits viewable in compare view


Updates serde_json from 1.0.108 to 1.0.111

Release notes

Sourced from serde_json's releases.

v1.0.111

  • Improve floating point parsing performance on loongarch64 (#1100, thanks @​heiher)

v1.0.110

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

v1.0.109

  • Documentation improvements
Commits


Updates swc_core from 0.86.39 to 0.87.19

Commits


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

@dependabot merge