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 7 updates #27

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 7, 2025

Bumps the cargo group with 7 updates in the / directory:

Package From To
async-graphql 7.0.7 7.0.15
pprof 0.12.1 0.14.0
h2 0.3.24 0.3.26
openssl 0.10.47 0.10.71
ring 0.17.7 0.17.13
rustix 0.37.23 0.37.28
rustls 0.23.16 0.23.23

Updates async-graphql from 7.0.7 to 7.0.15

Changelog

Sourced from async-graphql's changelog.

[7.0.15] 2025-02-03

  • feat: Add custom-error-conversion feature #1631
  • Update graphql annotation directive property to support paths #1663

[7.0.14] 2025-01-22

  • Update error messages for character length validation #1657
  • Upgrade to axum v0.8 #1653
  • Fix position calculator for unicode symbols #1648

[7.0.13] 2024-12-10

  • add support introspection inputValueDeprecation #1621

[7.0.12] 2024-12-08

  • update MSRV to 1.81.0
  • Add specified complexity for fields in SimpleObject.
  • feat: expose SDL export utilities in ExtensionContext #1606
  • feat(dynamic-schema): specify type directives in schema #1607
  • Make http2 optional for actix #1612
  • chore: use std OnceLock instead LazyLock #1613
  • Add UUID validator #1588
  • Update secrecy and support new types #1627
  • fix #1626
  • Allow non-native concrete types in generic structs deriving SimpleObject + InputObject #1629
  • chore: update opentelemetry to 0.27 #1614
  • connection: Allow 'first' and 'last' parameters to exist at the same time #1602
  • feat(dynamic-schema): specify type directives in schema #1607
  • Make boxed_any and borrowed_any for FieldValue work with trait objects again #1636
  • Add new altair option #1642
  • Fix Clippy for latest stable #1639
  • Add boxed-trait feature #1641
  • Support directive in complex object #1644

[7.0.11] 2024-09-26

[7.0.10] 2024-09-24

  • add SchemeBuilder.limit_directives method to set the maximum number of directives on a single field.
  • remove needless ?Sized #1593
  • fix: generate each variant description correctly. #1589
  • Make From<T> for [Error] set source #1561
  • feat(graphiql): add support for WS connection params #1597

[7.0.9] 2024-09-02

... (truncated)

Commits

Updates pprof from 0.12.1 to 0.14.0

Changelog

Sourced from pprof's changelog.

[0.14.0] - 2023-11-08

Fixed

  • Fix the alignment of the collector and validate function (#255)

Changed

  • Bump the MSRV to 1.66.0 (#255)

[0.13.0] - 2023-09-27

Changed

  • Upgrade prost, prost-derive, prost-build to 0.12 (#223)
Commits

Updates h2 from 0.3.24 to 0.3.26

Release notes

Sourced from h2's releases.

v0.3.26

What's Changed

  • Limit number of CONTINUATION frames for misbehaving connections.

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

v0.3.25

What's Changed

Full Changelog: hyperium/h2@v0.3.24...v0.3.25

Changelog

Sourced from h2's changelog.

0.3.26 (April 3, 2024)

  • Limit number of CONTINUATION frames for misbehaving connections.

0.3.25 (March 15, 2024)

  • Improve performance decoding many headers.
Commits

Updates openssl from 0.10.47 to 0.10.71

Release notes

Sourced from openssl's releases.

openssl-v0.10.71

What's Changed

New Contributors

Full Changelog: sfackler/rust-openssl@openssl-v0.10.70...openssl-v0.10.71

openssl v0.10.70

What's Changed

Full Changelog: sfackler/rust-openssl@openssl-v0.10.69...openssl-v0.10.70

openssl v0.10.69

What's Changed

New Contributors

Full Changelog: sfackler/rust-openssl@openssl-v0.10.68...openssl-v0.10.69

openssl-v0.10.68

What's Changed

Full Changelog: sfackler/rust-openssl@openssl-v0.10.67...openssl-v0.10.68

openssl-v0.10.67

What's Changed

... (truncated)

Commits
  • 1a16077 Merge pull request #2369 from alex/bump-for-release
  • 3312618 Merge pull request #2366 from frncs-rss/license_apache
  • f71fcf2 Release openssl v0.10.71 and openssl-sys v0.9.106
  • 6ca34f8 add full Apache license file
  • c0f1442 Merge pull request #2361 from alex/rc2
  • ae495dc Expose rc2 ciphers on symm::Cipher
  • a4d399b Release openssl v0.10.70
  • c9a33e2 Release openssl-sys v0.9.105
  • f014afb Merge pull request #2360 from sfackler/fix-alpn-lifetimes
  • 8e6e30b Fix lifetimes in ssl::select_next_proto
  • Additional commits viewable in compare view

Updates ring from 0.17.7 to 0.17.13

Changelog

Sourced from ring's changelog.

Version 0.17.13 (2025-03-06)

Increased MSRV to 1.66.0 to avoid bugs in earlier versions so that we can safely use core::arch::x86_64::__cpuid and core::arch::x86::__cpuid from Rust in future releases.

AVX2-based VAES-CLMUL implementation. This will be a notable performance improvement for most newish x86-64 systems. This will likely raise the minimum binutils version supported for very old Linux distros.

Version 0.17.12 (2025-03-05)

Bug fix: briansmith/ring#2447 for denial of service (DoS).

  • Fixes a panic in ring::aead::quic::HeaderProtectionKey::new_mask() when integer overflow checking is enabled. In the QUIC protocol, an attacker can induce this panic by sending a specially-crafted packet. Even unintentionally it is likely to occur in 1 out of every 2**32 packets sent and/or received.

  • Fixes a panic on 64-bit targets in ring::aead::{AES_128_GCM, AES_256_GCM} when overflow checking is enabled, when encrypting/decrypting approximately 68,719,476,700 bytes (about 64 gigabytes) of data in a single chunk. Protocols like TLS and SSH are not affected by this because those protocols break large amounts of data into small chunks. Similarly, most applications will not attempt to encrypt/decrypt 64GB of data in one chunk.

Overflow checking is not enabled in release mode by default, but RUSTFLAGS="-C overflow-checks" or overflow-checks = true in the Cargo.toml profile can override this. Overflow checking is usually enabled by default in debug mode.

Commits

Updates rustix from 0.37.23 to 0.37.28

Commits

Updates rustls from 0.23.16 to 0.23.23

Commits
  • 7742147 unbuffered: introduce PeerClosed state
  • 7abb149 tests/unbuffered: refactor
  • 1963cc7 Bump version to 0.23.23
  • ad5a31b tests: reuse SingleCertAndKey
  • 591c0c1 crypto: expose SingleCertAndKey
  • 82e1688 client: use SingleCertAndKey for with_client_auth_cert()
  • b0cc4df crypto: add CertifiedKey::from_der()
  • be2865a crypto: simplify SingleCertAndKey construction with OCSP
  • 82c3c2d crypto: use From impl to construct SingleCertAndKey
  • 27551e1 Move SingleCertAndKey to crypto::signer
  • 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 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [async-graphql](https://github.com/async-graphql/async-graphql) | `7.0.7` | `7.0.15` |
| [pprof](https://github.com/tikv/pprof-rs) | `0.12.1` | `0.14.0` |
| [h2](https://github.com/hyperium/h2) | `0.3.24` | `0.3.26` |
| [openssl](https://github.com/sfackler/rust-openssl) | `0.10.47` | `0.10.71` |
| [ring](https://github.com/briansmith/ring) | `0.17.7` | `0.17.13` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.37.23` | `0.37.28` |
| [rustls](https://github.com/rustls/rustls) | `0.23.16` | `0.23.23` |



Updates `async-graphql` from 7.0.7 to 7.0.15
- [Changelog](https://github.com/async-graphql/async-graphql/blob/master/CHANGELOG.md)
- [Commits](https://github.com/async-graphql/async-graphql/commits)

Updates `pprof` from 0.12.1 to 0.14.0
- [Changelog](https://github.com/tikv/pprof-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tikv/pprof-rs/commits)

Updates `h2` from 0.3.24 to 0.3.26
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/v0.3.26/CHANGELOG.md)
- [Commits](hyperium/h2@v0.3.24...v0.3.26)

Updates `openssl` from 0.10.47 to 0.10.71
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](sfackler/rust-openssl@openssl-v0.10.47...openssl-v0.10.71)

Updates `ring` from 0.17.7 to 0.17.13
- [Changelog](https://github.com/briansmith/ring/blob/main/RELEASES.md)
- [Commits](https://github.com/briansmith/ring/commits)

Updates `rustix` from 0.37.23 to 0.37.28
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGES.md)
- [Commits](bytecodealliance/rustix@v0.37.23...v0.37.28)

Updates `rustls` from 0.23.16 to 0.23.23
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.16...v/0.23.23)

---
updated-dependencies:
- dependency-name: async-graphql
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: pprof
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: h2
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: openssl
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: ring
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustix
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustls
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 7, 2025
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 rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants