Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[cargo](deps): Bump the deps group with 8 updates #49

Merged
merged 1 commit into from
Feb 5, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2024

Bumps the deps group with 8 updates:

Package From To
reqwest 0.11.23 0.11.24
time 0.3.31 0.3.34
tokio 1.35.1 1.36.0
hyper-util 0.1.2 0.1.3
indexmap 2.2.1 2.2.2
libc 0.2.152 0.2.153
miniz_oxide 0.7.1 0.7.2
rustix 0.38.30 0.38.31

Updates reqwest from 0.11.23 to 0.11.24

Release notes

Sourced from reqwest's releases.

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: seanmonstar/reqwest@v0.11.23...v0.11.24

Changelog

Sourced from reqwest's changelog.

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.
Commits

Updates time from 0.3.31 to 0.3.34

Release notes

Sourced from time's releases.

v0.3.34

See the changelog for details.

v0.3.33

See the changelog for details.

v0.3.32

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.34 [2024-12-03]

Fixed

Computing the local offset on Windows works again. It was broken in some cases in v0.3.32 and v0.3.33.

0.3.33 [2024-02-03]

Fixed

Builds targeting wasm32-unknown-unknown now work again.

0.3.32 [2024-02-01]

Added

  • Methods to replace the day of the year.
    • Date::replace_ordinal
    • PrimitiveDateTime::replace_ordinal
    • OffsetDateTime::replace_ordinal
  • Modules to treat an OffsetDateTime as a Unix timestamp with subsecond precision for serde.
    • time::serde::timestamp::milliseconds
    • time::serde::timestamp::microseconds
    • time::serde::timestamp::nanoseconds

Changed

  • Duration::time_fn is deprecated.
Commits
  • f11f9b2 v0.3.34 release
  • ef7bfbd fix unsigned to signed conversion bug (#656)
  • 76468cb v0.3.33 release
  • 6c2b602 Fix wasm32-unknown-unknown build (#655)
  • ff3255f v0.3.32 release
  • d3dd5c9 Deprecate Duration::time_fn
  • 8a0dc70 Remove markdown files in favor of org-wide config
  • 980878b Build docs using org-wide workflow, change audit
  • 4baf6b3 Remove documentation of deprecated feature flag
  • be932d8 Adds support to serialize and deserialize timestamps with different resolutio...
  • Additional commits viewable in compare view

Updates tokio from 1.35.1 to 1.36.0

Release notes

Sourced from tokio's releases.

Tokio v1.36.0

1.36.0 (February 2nd, 2024)

Added

  • io: add tokio::io::Join (#6220)
  • io: implement AsyncWrite for Empty (#6235)
  • net: add support for anonymous unix pipes (#6127)
  • net: add UnixSocket (#6290)
  • net: expose keepalive option on TcpSocket (#6311)
  • sync: add {Receiver,UnboundedReceiver}::poll_recv_many (#6236)
  • sync: add Sender::{try_,}reserve_many (#6205)
  • sync: add watch::Receiver::mark_unchanged (#6252)
  • task: add JoinSet::try_join_next (#6280)

Changed

  • io: make copy cooperative (#6265)
  • io: make repeat and sink cooperative (#6254)
  • io: simplify check for empty slice (#6293)
  • process: use pidfd on Linux when available (#6152)
  • sync: use AtomicBool in broadcast channel future (#6298)

Documented

  • io: clarify clear_ready docs (#6304)
  • net: document that *Fd traits on TcpSocket are unix-only (#6294)
  • sync: document FIFO behavior of tokio::sync::Mutex (#6279)
  • chore: typographic improvements (#6262)
  • runtime: remove obsolete comment (#6303)
  • task: fix typo (#6261)

#6220: tokio-rs/tokio#6220 #6235: tokio-rs/tokio#6235 #6127: tokio-rs/tokio#6127 #6290: tokio-rs/tokio#6290 #6311: tokio-rs/tokio#6311 #6236: tokio-rs/tokio#6236 #6205: tokio-rs/tokio#6205 #6252: tokio-rs/tokio#6252 #6280: tokio-rs/tokio#6280 #6265: tokio-rs/tokio#6265 #6254: tokio-rs/tokio#6254 #6293: tokio-rs/tokio#6293 #6238: tokio-rs/tokio#6238 #6152: tokio-rs/tokio#6152 #6298: tokio-rs/tokio#6298 #6262: tokio-rs/tokio#6262 #6303: tokio-rs/tokio#6303 #6261: tokio-rs/tokio#6261

... (truncated)

Commits

Updates hyper-util from 0.1.2 to 0.1.3

Release notes

Sourced from hyper-util's releases.

v0.1.3

Added

  • Add Error::is_connect() which returns true if error came from client Connect.
  • Add timer support to legacy pool.
  • Add support to enable http1/http2 parts of auto::Builder individually.

Fixed

  • Fix auto connection so it can handle requests shorter than the h2 preface.
  • Fix legacy::Client to no longer error when keep-alive is diabled.

New Contributors

Full Changelog: hyperium/hyper-util@v0.1.2...v0.1.3

Changelog

Sourced from hyper-util's changelog.

0.1.3 (2024-01-31)

Added

  • Add Error::is_connect() which returns true if error came from client Connect.
  • Add timer support to legacy pool.
  • Add support to enable http1/http2 parts of auto::Builder individually.

Fixed

  • Fix auto connection so it can handle requests shorter than the h2 preface.
  • Fix legacy::Client to no longer error when keep-alive is diabled.
Commits
  • 9d7c3b9 v0.1.3
  • 08b8d21 fix: auto::Connection can handle requests shorter than h2 preface (#97)
  • 703d8da feat: allow enabling http1/http2 individually for server::auto (#80)
  • 32166f6 feat: Add a Error::is_connect() method (#95)
  • 5c35f28 chore: add semver job to CI
  • bfde94b chore: update to 2021 edition
  • 55b5171 Fix spelling (#89)
  • da6e35b refactor(client): small refactoring (#88)
  • 784109d feat: add timer support for legacy::Pool (#84)
  • b96757e chore: use futures_util::ready (#35)
  • Additional commits viewable in compare view

Updates indexmap from 2.2.1 to 2.2.2

Changelog

Sourced from indexmap's changelog.

2.2.2

  • Added indexing methods to raw entries: RawEntryBuilder::from_hash_full, RawEntryBuilder::index_from_hash, and RawEntryMut::index.
Commits

Updates libc from 0.2.152 to 0.2.153

Release notes

Sourced from libc's releases.

0.2.153

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.152...0.2.153

Commits
  • ccf8a3e Merge pull request #3554 from GuillaumeGomez/update-0.2
  • 036fe2e Merge pull request #3553 from rusty-snake/mfd-exec
  • adaec1d Merge pull request #3570 from heiher/fs-ioctl
  • 9a07431 Add ioctl FS_IOC_{G,S}{ETVERSION,ETFLAGS} for LoongArch64
  • 3726d14 Update crate version to 0.2.153
  • d5d3700 Ignore some android constants not found in tests
  • 738f901 Add missing constants for Android
  • 8b68569 Add MFD_NOEXEC_SEAL and MFD_EXEC
  • b56e4b3 Merge pull request #3557 from JohnTitor/fix-ci
  • 941f825 Fix CI for v0.2
  • Additional commits viewable in compare view

Updates miniz_oxide from 0.7.1 to 0.7.2

Changelog

Sourced from miniz_oxide's changelog.

0.7.2 - 2024-02-03

Bug Fixes

  • (inflate) Return MZError::Buf when calling inflate with MZFlush::Finish in line with orig miniz and zlib - (0f50464) - oyvindln
  • (miniz_oxide) fix tests when with-alloc is not enabled (running with --no-default-features) and make add test run of it to ci - (4fd32da) - oyvindln
  • (miniz_oxide) fix compiler and clippy warnings - (657c5b2) - oyvindln

Documentation

Performance

  • Code size reduction from panic reduction (#145) - (201ef39) - Kornel
  • Optimize match_len == 3 (#146) - (10ff5a0) - Kornel

Other

  • Add a roundtrip fuzz target (#138) - (ee29e37) - Sergey "Shnatsel" Davidoff

Commits

Updates rustix from 0.38.30 to 0.38.31

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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the deps group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.23` | `0.11.24` |
| [time](https://github.com/time-rs/time) | `0.3.31` | `0.3.34` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.35.1` | `1.36.0` |
| [hyper-util](https://github.com/hyperium/hyper-util) | `0.1.2` | `0.1.3` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.2.1` | `2.2.2` |
| [libc](https://github.com/rust-lang/libc) | `0.2.152` | `0.2.153` |
| [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.7.1` | `0.7.2` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.30` | `0.38.31` |


Updates `reqwest` from 0.11.23 to 0.11.24
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.11.23...v0.11.24)

Updates `time` from 0.3.31 to 0.3.34
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.31...v0.3.34)

Updates `tokio` from 1.35.1 to 1.36.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.35.1...tokio-1.36.0)

Updates `hyper-util` from 0.1.2 to 0.1.3
- [Release notes](https://github.com/hyperium/hyper-util/releases)
- [Changelog](https://github.com/hyperium/hyper-util/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper-util@v0.1.2...v0.1.3)

Updates `indexmap` from 2.2.1 to 2.2.2
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.2.1...2.2.2)

Updates `libc` from 0.2.152 to 0.2.153
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](rust-lang/libc@0.2.152...0.2.153)

Updates `miniz_oxide` from 0.7.1 to 0.7.2
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Frommi/miniz_oxide/commits)

Updates `rustix` from 0.38.30 to 0.38.31
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Commits](bytecodealliance/rustix@v0.38.30...v0.38.31)

---
updated-dependencies:
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: time
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: hyper-util
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: indexmap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: miniz_oxide
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added d:cargo Update a Cargo (Rust) dependency dependencies Add, remove, or update one or more dependencies labels Feb 5, 2024
@jwodder jwodder merged commit ade710d into main Feb 5, 2024
8 checks passed
@jwodder jwodder deleted the dependabot/cargo/deps-08956ecc8a branch February 5, 2024 13:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
d:cargo Update a Cargo (Rust) dependency dependencies Add, remove, or update one or more dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant