Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 4, 2024

Bumps the cargo group group in /quickwit with 9 updates:

Package From To
openssl 0.10.54 0.10.64
time 0.3.21 0.3.34
ouroboros 0.15.6 0.16.0
h2 0.3.19 0.3.24
mio 0.8.8 0.8.11
rustix 0.36.14 0.36.17
rustls-webpki 0.100.1 0.100.3
unsafe-libyaml 0.2.8 0.2.10
webpki 0.22.0 0.22.4

Updates openssl from 0.10.54 to 0.10.64

Release notes

Sourced from openssl's releases.

openssl-v0.10.64

What's Changed

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.63...openssl-v0.10.64

openssl-v0.10.63

What's Changed

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.62...openssl-v0.10.63

openssl-v0.10.62

What's Changed

New Contributors

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.61...openssl-v0.10.62

openssl v0.10.61

... (truncated)

Commits
  • 4a19cd4 Merge pull request #2175 from reaperhulk/changelog
  • 4e0e05a bump openssl and openssl-sys + changelogs
  • c2b124a Be explicit that aliases are not part of X.509 certificates
  • 1abf4a5 Merge pull request #2167 from alex/expose-alias
  • a644ec2 Merge pull request #2170 from botovq/crypto-free
  • 83940d1 LibreSSL 3.9: fix CRYPTO_malloc/free signatures
  • 51fc569 Merge pull request #2168 from sfackler/alex-patch-1
  • 3c53dee Added binding for EVP_default_properties_enable_fips
  • a12abe1 Expose alias on X509 structs
  • 3acf2ef Merge pull request #2157 from reaperhulk/rebuild-if-changed
  • Additional commits viewable in compare view

Updates time from 0.3.21 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.

v0.3.31

See the changelog for details.

v0.3.30

See the changelog for details.

v0.3.29

See the changelog for details.

v0.3.28

See the changelog for details.

v0.3.27

See the changelog for details.

v0.3.26

See the changelog for details.

v0.3.25

See the changelog for details.

v0.3.24

See the changelog for details.

v0.3.23

See the changelog for details.

v0.3.22

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.

0.3.31 [2023-12-19]

Added

  • OffsetDateTime::new_in_offset
  • OffsetDateTime::new_utc

Changed

  • The valid range of UtcOffset has been expanded from ±23:59:59 to ±25:59:59. This is to support the full POSIX range while permitting infallible negation.

0.3.30 [2023-10-13]

Added

  • powerfmt::smart_display::SmartDisplay has been added for the main types in the library. These implementations ensure that values follow the requested fill, width, and alignment when using format! or similar macros. Display is implemented in terms of SmartDisplay.

... (truncated)

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 ouroboros from 0.15.6 to 0.16.0

Commits

Updates h2 from 0.3.19 to 0.3.24

Release notes

Sourced from h2's releases.

v0.3.24

Fixed

  • Limit error resets for misbehaving connections.

v0.3.23

What's Changed

v0.3.22

What's Changed

  • Add header_table_size(usize) option to client and server builders.
  • Improve throughput when vectored IO is not available.
  • Update indexmap to 2.

New Contributors

v0.3.21

What's Changed

  • Fix opening of new streams over peer's max concurrent limit.
  • Fix RecvStream to return data even if it has received a CANCEL stream error.
  • Update MSRV to 1.63.

New Contributors

v0.3.20

Bug Fixes

  • Fix panic if a server received a request with a :status pseudo header in the 1xx range. (#695)
  • Fix panic if a reset stream had pending push promises that were more than allowed. (#685)
  • Fix potential flow control overflow by subtraction, instead returning a connection error. (#692)

New Contributors

Changelog

Sourced from h2's changelog.

0.3.24 (January 17, 2024)

  • Limit error resets for misbehaving connections.

0.3.23 (January 10, 2024)

  • Backport fix from 0.4.1 for stream capacity assignment.

0.3.22 (November 15, 2023)

  • Add header_table_size(usize) option to client and server builders.
  • Improve throughput when vectored IO is not available.
  • Update indexmap to 2.

0.3.21 (August 21, 2023)

  • Fix opening of new streams over peer's max concurrent limit.
  • Fix RecvStream to return data even if it has received a CANCEL stream error.
  • Update MSRV to 1.63.

0.3.20 (June 26, 2023)

  • Fix panic if a server received a request with a :status pseudo header in the 1xx range.
  • Fix panic if a reset stream had pending push promises that were more than allowed.
  • Fix potential flow control overflow by subtraction, instead returning a connection error.
Commits

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.36.14 to 0.36.17

Commits
  • 76c998c chore: Release rustix version 0.36.17
  • 1c6013a Fix p{read,write}v{,v2}'s encoding of the offset argument on Linux. (#896) (#...
  • 6534992 chore: Release rustix version 0.36.16
  • 4928cf7 Disable riscv64 testing.
  • 8cc159c Fix the test_ttyname_ok test when /dev/stdin is inaccessable. (#821)
  • 6dc7ba9 Downgrade dependencies and disable tests to compile under Rust 1.48.
  • ded8986 Disable MIPS in CI. (#793)
  • 739f9c3 Fixes for Dir on macOS, FreeBSD, and WASI.
  • 87481a9 Merge pull request from GHSA-c827-hfw6-qwvm
  • 5b764b5 chore: Release rustix version 0.36.15
  • Additional commits viewable in compare view

Updates rustls-webpki from 0.100.1 to 0.100.3

Release notes

Sourced from rustls-webpki's releases.

0.100.3

  • Path building complexity is now limited to a maximum budget of path finding operations, avoiding exponential processing time when encountering certificate chains containing many certificates with the same subject/issuer distinguished name but different subject public key information.
  • Name constraints evaluation is now limited to a maximum number of comparison operations, avoiding exponential processing time when encountering certificate chains containing many name constraints and subject alternate names.

What's Changed

The following PRs were backported to the rel-0.100 branch in rustls/webpki#172

Full Changelog: rustls/webpki@v/0.100.2...v/0.100.3

Thanks to all who have contributed, on behalf of the rustls team (@​ctz, @​cpu and @​djc)!

v/0.100.2

Release notes

  • certificate path building and verification is now capped at 100 signature validation operations to avoid the risk of CPU usage denial-of-service attack when validating crafted certificate chains producing quadratic runtime. This risk affected both clients, as well as servers that verified client certificates.

What's Changed

Full Changelog: rustls/webpki@v/0.100.1...v/0.100.2

Commits
  • 5649c6a Cargo: bump version 0.100.2 -> 0.100.3.
  • 86f4cb2 verify_cert: use enum for build chain error
  • 50a2930 verify_cert: correct handling of fatal errors
  • 0651f72 error: add is_fatal helper, use in verify_cert
  • 0598dd2 verify_cert: optional Budget arg for verify_chain helper
  • 277fb4b verify_cert: take references in verify_chain helper
  • 63f78e0 verify_cert: name constraint checking on verified chain
  • f55622a verify_cert: budget for name constraint comparisons
  • 141ddcb verify_cert: pull out verify_chain test helper
  • eb07f2f verify_cert: pull out make_end_entity test helper
  • Additional commits viewable in compare view

Updates unsafe-libyaml from 0.2.8 to 0.2.10

Release notes

Sourced from unsafe-libyaml's releases.

0.2.10

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

0.2.9

  • Documentation improvements
Commits
  • 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
  • 389373f Merge pull request #23 from dtolnay/malloc
  • fd41ef6 Check arithmetic in malloc computations
  • 9e054fb Merge pull request #22 from dtolnay/force
  • 5b40a9e Check more arithmetic operations
  • 97a4332 Delete cast to long followed by size_t
  • e5f4bbd Clean up duplicated casting to size_t
  • Additional commits viewable in compare view

Updates webpki from 0.22.0 to 0.22.4

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

Bumps the cargo group group in /quickwit with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [openssl](https://github.com/sfackler/rust-openssl) | `0.10.54` | `0.10.64` |
| [time](https://github.com/time-rs/time) | `0.3.21` | `0.3.34` |
| [ouroboros](https://github.com/someguynamedjosh/ouroboros) | `0.15.6` | `0.16.0` |
| [h2](https://github.com/hyperium/h2) | `0.3.19` | `0.3.24` |
| [mio](https://github.com/tokio-rs/mio) | `0.8.8` | `0.8.11` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.36.14` | `0.36.17` |
| [rustls-webpki](https://github.com/rustls/webpki) | `0.100.1` | `0.100.3` |
| [unsafe-libyaml](https://github.com/dtolnay/unsafe-libyaml) | `0.2.8` | `0.2.10` |
| [webpki](https://github.com/briansmith/webpki) | `0.22.0` | `0.22.4` |


Updates `openssl` from 0.10.54 to 0.10.64
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](rust-openssl/rust-openssl@openssl-v0.10.54...openssl-v0.10.64)

Updates `time` from 0.3.21 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.21...v0.3.34)

Updates `ouroboros` from 0.15.6 to 0.16.0
- [Commits](https://github.com/someguynamedjosh/ouroboros/commits)

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

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.36.14 to 0.36.17
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Commits](bytecodealliance/rustix@v0.36.14...v0.36.17)

Updates `rustls-webpki` from 0.100.1 to 0.100.3
- [Release notes](https://github.com/rustls/webpki/releases)
- [Commits](rustls/webpki@v/0.100.1...v/0.100.3)

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

Updates `webpki` from 0.22.0 to 0.22.4
- [Commits](https://github.com/briansmith/webpki/commits)

---
updated-dependencies:
- dependency-name: openssl
  dependency-type: direct:production
  dependency-group: cargo-security-group
- dependency-name: time
  dependency-type: direct:production
  dependency-group: cargo-security-group
- dependency-name: ouroboros
  dependency-type: direct:production
  dependency-group: cargo-security-group
- dependency-name: h2
  dependency-type: indirect
  dependency-group: cargo-security-group
- dependency-name: mio
  dependency-type: indirect
  dependency-group: cargo-security-group
- dependency-name: rustix
  dependency-type: indirect
  dependency-group: cargo-security-group
- dependency-name: rustls-webpki
  dependency-type: indirect
  dependency-group: cargo-security-group
- dependency-name: unsafe-libyaml
  dependency-type: indirect
  dependency-group: cargo-security-group
- dependency-name: webpki
  dependency-type: indirect
  dependency-group: cargo-security-group
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 4, 2024
@bolt-new-by-stackblitz
Copy link

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

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