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

chore(deps): bump the cargo group across 1 directory with 4 updates #101

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 1, 2024

Bumps the cargo group with 4 updates in the / directory: h2, mio, rustix and unsafe-libyaml.

Updates h2 from 0.4.2 to 0.4.5

Release notes

Sourced from h2's releases.

v0.4.5

What's Changed

New Contributors

v0.4.4

Fixes

  • Limit number of CONTINUATION frames for misbehaving connections.

See https://seanmonstar.com/blog/hyper-http2-continuation-flood/ for more info.

v0.4.3

What's Changed

  • Fix flow control limits to not apply until receiving SETTINGS ack.
  • Fix not returning an error if IO ended without close_notify.
  • Improve performance of decoding many headers.

New Contributors

Full Changelog: hyperium/h2@v0.4.2...v0.4.3

Changelog

Sourced from h2's changelog.

0.4.5 (May 17, 2024)

  • Fix race condition that sometimes hung connections during shutdown.
  • Fix pseudo header construction for CONNECT and OPTIONS requests.

0.4.4 (April 3, 2024)

  • Limit number of CONTINUATION frames for misbehaving connections.

0.4.3 (March 15, 2024)

  • Fix flow control limits to not apply until receiving SETTINGS ack.
  • Fix not returning an error if IO ended without close_notify.
  • Improve performance of decoding many headers.
Commits
  • f161f7c v0.4.5
  • 3c41151 Replace futures-util with atomic-waker and manual poll_fn (#721)
  • c83b2d5 Fix request pseudo-header construction for CONNECT & OPTION methods (#770)
  • ecb0095 chore(lib): fix unexpected cfg warning (#777)
  • 092f3b3 examples: update to rustls 0.23
  • be12983 Fix race condition in connection termination
  • 0d66e3c readme: Added link to Tokio Discord. (#771)
  • e2168de chore: add simple h2 benchmark (#762)
  • 51fe05a v0.4.4
  • e76bd74 fix: limit number of CONTINUATION frames allowed
  • Additional commits viewable in compare view

Updates mio from 0.8.8 to 0.8.11

Changelog

Sourced from mio's changelog.

0.8.11

0.8.10

Added

0.8.9

Added

Fixed

Commits

Updates rustix from 0.37.3 to 0.37.27

Release notes

Sourced from rustix's releases.

0.37.20

  • Fix decoding of abstract unix sockets (#661)
  • Fix the fstat/statat/etc. fallback when statx fails with EPERM. (#666)
  • Add a rustix::pty module. (#673)
  • process: Add aliaseses for parent_process_death_signal (#677)
  • Fix panic on dropping RecvAncillaryBuffer after failed recvmsg (#676)

0.37.19

What's Changed

Full Changelog: bytecodealliance/rustix@v0.37.18...v0.37.19

Commits

Updates unsafe-libyaml from 0.2.5 to 0.2.11

Release notes

Sourced from unsafe-libyaml's releases.

0.2.11

  • Fix quadratic parse time for YAML containing deeply nested flow collections (#26)

0.2.10

  • Fix write to improperly aligned pointer in 32-bit targets (#21)

0.2.9

  • Documentation improvements

0.2.8

No release notes provided.

0.2.7

  • Adding support for emitting Unicode characters over codepoint U+FFFF (#20)

0.2.6

  • Documentation improvements
Commits
  • a7b8d1f Release 0.2.11
  • 7c42792 Merge pull request #27 from dtolnay/simplekeys
  • eb7de7e Fix quadratic behavior in yaml_parser_fetch_more_tokens
  • 7440d58 Merge pull request #25 from jayvdb/typos
  • b3496ce fix typos
  • 63131f5 Explicitly disable unsafe_op_in_unsafe_fn lint
  • 61f3ab8 Release 0.2.10
  • d90d7ab Clean up some redundant casts
  • 7755559 Merge pull request #24 from dtolnay/mallocalign
  • b8a0863 Fix insufficient alignment of malloc's return value on 32-bit
  • Additional commits viewable in compare view

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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the cargo group with 4 updates in the / directory: [h2](https://github.com/hyperium/h2), [mio](https://github.com/tokio-rs/mio), [rustix](https://github.com/bytecodealliance/rustix) and [unsafe-libyaml](https://github.com/dtolnay/unsafe-libyaml).


Updates `h2` from 0.4.2 to 0.4.5
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](hyperium/h2@v0.4.2...v0.4.5)

Updates `mio` from 0.8.8 to 0.8.11
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v0.8.8...v0.8.11)

Updates `rustix` from 0.37.3 to 0.37.27
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Commits](bytecodealliance/rustix@v0.37.3...v0.37.27)

Updates `unsafe-libyaml` from 0.2.5 to 0.2.11
- [Release notes](https://github.com/dtolnay/unsafe-libyaml/releases)
- [Commits](dtolnay/unsafe-libyaml@0.2.5...0.2.11)

---
updated-dependencies:
- dependency-name: h2
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: mio
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustix
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: unsafe-libyaml
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
Copy link
Author

dependabot bot commented on behalf of github Jun 5, 2024

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

@dependabot dependabot bot closed this Jun 5, 2024
@dependabot dependabot bot deleted the dependabot/cargo/cargo-e87391f0f3 branch June 5, 2024 21:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants