Skip to content

build(deps): Bump the firecracker group with 9 updates #5183

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

Merged
merged 1 commit into from
May 6, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 5, 2025

Bumps the firecracker group with 9 updates:

Package From To
aws-lc-fips-sys 0.13.5 0.13.6
cc 1.2.20 1.2.21
hashbrown 0.15.2 0.15.3
jiff 0.2.10 0.2.12
jiff-static 0.2.10 0.2.12
toml 0.8.21 0.8.22
toml_edit 0.22.25 0.22.26
toml_write 0.1.0 0.1.1
winnow 0.7.7 0.7.9

Updates aws-lc-fips-sys from 0.13.5 to 0.13.6

Commits

Updates cc from 1.2.20 to 1.2.21

Release notes

Sourced from cc's releases.

cc-v1.2.21

Other

  • Fix wasm32-unknown-unknown by passing -c (#1424)
Changelog

Sourced from cc's changelog.

1.2.21 - 2025-05-02

Other

  • Fix wasm32-unknown-unknown by passing -c (#1424)
Commits

Updates hashbrown from 0.15.2 to 0.15.3

Release notes

Sourced from hashbrown's releases.

v0.15.3

Added

  • SIMD implementation for LoongArch (#592, requires nightly)

Changed

  • Optimized insertion path by avoiding an unnecessary match_empty (#607)
  • Increased minimum table size for small types (#615)
  • Dropped FnMut trait bounds from ExtractIf data structures (#616)
  • Relaxed constraint in hash_map::EntryRef insertion methods K: From<&Q> to &Q: Into<K> (#611)
  • Added allocator template argument for rustc_iter (#605)
  • The allocator-api2/nightly feature is no longer enabled by hashbrown/nightly (#606)
Changelog

Sourced from hashbrown's changelog.

0.15.3 - 2025-04-29

Added

  • SIMD implementation for LoongArch (#592, requires nightly)

Changed

  • Optimized insertion path by avoiding an unnecessary match_empty (#607)
  • Increased minimum table size for small types (#615)
  • Dropped FnMut trait bounds from ExtractIf data structures (#616)
  • Relaxed constraint in hash_map::EntryRef insertion methods K: From<&Q> to &Q: Into<K> (#611)
  • Added allocator template argument for rustc_iter (#605)
  • The allocator-api2/nightly feature is no longer enabled by hashbrown/nightly (#606)
Commits

Updates jiff from 0.2.10 to 0.2.12

Changelog

Sourced from jiff's changelog.

0.2.12 (2025-05-03)

This release fixes a couple bugs in Jiff's parser. In particular, a regression was introduced in jiff 0.2.11 where its RFC 2822 parser could panic on some inputs. Previous releases of Jiff are unaffected.

Bug fixes:

  • #357: Fix a bug where parsing 1970-06-01T00-00:45:00[Africa/Monrovia] succeeded but it should fail.
  • #359: Fix a bug where the RFC 2822 parser could panic on some inputs.

0.2.11 (2025-05-01)

This release includes new APIs for customizing Jiff's strtime behavior along with a few minor bug fixes. Jiff's strtime formatting API has also been optimized. It's about twice as fast as it was.

This release also coincides with the publication of jiff-icu 0.2.0-beta.2, which has support for icu 2.0.0-beta.2.

Enhancements:

  • #338: Add support for the %c, %r, %X and %x conversion specifiers.
  • #341: Add support for %q in jiff::fmt::strtime (prints quarter of year).
  • #342: Add support for %::z and %:::z in jiff::fmt::strtime.
  • #344: Add support for %N in jiff::fmt::strtime (alias for %9f).
  • #350: Add a "lenient" mode for strtime formatting APIs that ignores most errors.

Bug fixes:

  • #328: Document default precision behavior of Display impls for datetime types.
  • #340: Allow whitespace in more places in RFC 2822 parser (improves spec compliance).
  • #346: TimeZone::get("UTC") should now always return TimeZone::UTC.

Performance:

  • #338: Jiff's strftime APIs are now approximately twice as fast as they were.

... (truncated)

Commits
  • d6bae33 0.2.12
  • 016d0b1 fmt/rfc2822: fix panic in handling of whitespace
  • 3efed44 fmt/temporal: ensure that 1970-06-01T00-00:45:00[Africa/Monrovia] does not ...
  • b0512f4 jiff-icu: compatibility fixes
  • 11b286d jiff-icu-0.2.0-beta.2
  • 0d1cf19 0.2.11
  • 407180a changelog: 0.2.11
  • 2dc5b00 doc: fix typo in "formatting"
  • 3acc4f9 display: clarify default precision in Display impls
  • c9701c3 fmt/rfc2822: fix handling whitespace at comma and time separators
  • Additional commits viewable in compare view

Updates jiff-static from 0.2.10 to 0.2.12

Changelog

Sourced from jiff-static's changelog.

0.2.12 (2025-05-03)

This release fixes a couple bugs in Jiff's parser. In particular, a regression was introduced in jiff 0.2.11 where its RFC 2822 parser could panic on some inputs. Previous releases of Jiff are unaffected.

Bug fixes:

  • #357: Fix a bug where parsing 1970-06-01T00-00:45:00[Africa/Monrovia] succeeded but it should fail.
  • #359: Fix a bug where the RFC 2822 parser could panic on some inputs.

0.2.11 (2025-05-01)

This release includes new APIs for customizing Jiff's strtime behavior along with a few minor bug fixes. Jiff's strtime formatting API has also been optimized. It's about twice as fast as it was.

This release also coincides with the publication of jiff-icu 0.2.0-beta.2, which has support for icu 2.0.0-beta.2.

Enhancements:

  • #338: Add support for the %c, %r, %X and %x conversion specifiers.
  • #341: Add support for %q in jiff::fmt::strtime (prints quarter of year).
  • #342: Add support for %::z and %:::z in jiff::fmt::strtime.
  • #344: Add support for %N in jiff::fmt::strtime (alias for %9f).
  • #350: Add a "lenient" mode for strtime formatting APIs that ignores most errors.

Bug fixes:

  • #328: Document default precision behavior of Display impls for datetime types.
  • #340: Allow whitespace in more places in RFC 2822 parser (improves spec compliance).
  • #346: TimeZone::get("UTC") should now always return TimeZone::UTC.

Performance:

  • #338: Jiff's strftime APIs are now approximately twice as fast as they were.

... (truncated)

Commits
  • d6bae33 0.2.12
  • 016d0b1 fmt/rfc2822: fix panic in handling of whitespace
  • 3efed44 fmt/temporal: ensure that 1970-06-01T00-00:45:00[Africa/Monrovia] does not ...
  • b0512f4 jiff-icu: compatibility fixes
  • 11b286d jiff-icu-0.2.0-beta.2
  • 0d1cf19 0.2.11
  • 407180a changelog: 0.2.11
  • 2dc5b00 doc: fix typo in "formatting"
  • 3acc4f9 display: clarify default precision in Display impls
  • c9701c3 fmt/rfc2822: fix handling whitespace at comma and time separators
  • Additional commits viewable in compare view

Updates toml from 0.8.21 to 0.8.22

Commits
  • 6922da3 chore: Release
  • fbf0a92 docs: Update changelog
  • 83588b3 Merge pull request #878 from epage/w1
  • eeb885c fix(serde): Skip fields with newtypes wrapping None
  • 3c305c7 test(serde): Show NewType(None) behavior
  • 7bd5eaf test(serde): Group None tests
  • 388cfa3 chore(deps): Update toml-test (#877)
  • a025b84 refactor(edit): Change ser none tracking to mut field
  • 54666ad docs(write): Add guidance
  • 13cf518 refactor(edit): Bypass a layer of abstraction in ser
  • Additional commits viewable in compare view

Updates toml_edit from 0.22.25 to 0.22.26

Commits
  • 6922da3 chore: Release
  • fbf0a92 docs: Update changelog
  • 83588b3 Merge pull request #878 from epage/w1
  • eeb885c fix(serde): Skip fields with newtypes wrapping None
  • 3c305c7 test(serde): Show NewType(None) behavior
  • 7bd5eaf test(serde): Group None tests
  • 388cfa3 chore(deps): Update toml-test (#877)
  • a025b84 refactor(edit): Change ser none tracking to mut field
  • 54666ad docs(write): Add guidance
  • 13cf518 refactor(edit): Bypass a layer of abstraction in ser
  • Additional commits viewable in compare view

Updates toml_write from 0.1.0 to 0.1.1

Commits
  • 6922da3 chore: Release
  • fbf0a92 docs: Update changelog
  • 83588b3 Merge pull request #878 from epage/w1
  • eeb885c fix(serde): Skip fields with newtypes wrapping None
  • 3c305c7 test(serde): Show NewType(None) behavior
  • 7bd5eaf test(serde): Group None tests
  • 388cfa3 chore(deps): Update toml-test (#877)
  • a025b84 refactor(edit): Change ser none tracking to mut field
  • 54666ad docs(write): Add guidance
  • 13cf518 refactor(edit): Bypass a layer of abstraction in ser
  • Additional commits viewable in compare view

Updates winnow from 0.7.7 to 0.7.9

Changelog

Sourced from winnow's changelog.

[0.7.9] - 2025-05-02

Features

  • Add ContextError::extend
  • Add Parser::context_with

[0.7.8] - 2025-05-01

Features

  • Add ContextError::push
  • Add Parser::map_err
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 firecracker group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [aws-lc-fips-sys](https://github.com/aws/aws-lc-rs) | `0.13.5` | `0.13.6` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.20` | `1.2.21` |
| [hashbrown](https://github.com/rust-lang/hashbrown) | `0.15.2` | `0.15.3` |
| [jiff](https://github.com/BurntSushi/jiff) | `0.2.10` | `0.2.12` |
| [jiff-static](https://github.com/BurntSushi/jiff) | `0.2.10` | `0.2.12` |
| [toml](https://github.com/toml-rs/toml) | `0.8.21` | `0.8.22` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.22.25` | `0.22.26` |
| [toml_write](https://github.com/toml-rs/toml) | `0.1.0` | `0.1.1` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.7.7` | `0.7.9` |


Updates `aws-lc-fips-sys` from 0.13.5 to 0.13.6
- [Release notes](https://github.com/aws/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@aws-lc-fips-sys/v0.13.5...aws-lc-fips-sys/v0.13.6)

Updates `cc` from 1.2.20 to 1.2.21
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.20...cc-v1.2.21)

Updates `hashbrown` from 0.15.2 to 0.15.3
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/hashbrown/commits/v0.15.3)

Updates `jiff` from 0.2.10 to 0.2.12
- [Release notes](https://github.com/BurntSushi/jiff/releases)
- [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/jiff@jiff-static-0.2.10...jiff-static-0.2.12)

Updates `jiff-static` from 0.2.10 to 0.2.12
- [Release notes](https://github.com/BurntSushi/jiff/releases)
- [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/jiff@jiff-static-0.2.10...jiff-static-0.2.12)

Updates `toml` from 0.8.21 to 0.8.22
- [Commits](toml-rs/toml@toml-v0.8.21...toml-v0.8.22)

Updates `toml_edit` from 0.22.25 to 0.22.26
- [Commits](toml-rs/toml@v0.22.25...v0.22.26)

Updates `toml_write` from 0.1.0 to 0.1.1
- [Commits](toml-rs/toml@toml_write-v0.1.0...toml_write-v0.1.1)

Updates `winnow` from 0.7.7 to 0.7.9
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.7.7...v0.7.9)

---
updated-dependencies:
- dependency-name: aws-lc-fips-sys
  dependency-version: 0.13.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: cc
  dependency-version: 1.2.21
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: hashbrown
  dependency-version: 0.15.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: jiff
  dependency-version: 0.2.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: jiff-static
  dependency-version: 0.2.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: toml
  dependency-version: 0.8.22
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: toml_edit
  dependency-version: 0.22.26
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: toml_write
  dependency-version: 0.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: winnow
  dependency-version: 0.7.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
...

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 May 5, 2025
@roypat roypat added the Status: Awaiting review Indicates that a pull request is ready to be reviewed label May 6, 2025
Copy link

codecov bot commented May 6, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 82.93%. Comparing base (52ea507) to head (2acda89).
Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #5183      +/-   ##
==========================================
+ Coverage   82.87%   82.93%   +0.05%     
==========================================
  Files         250      250              
  Lines       26932    26932              
==========================================
+ Hits        22321    22335      +14     
+ Misses       4611     4597      -14     
Flag Coverage Δ
5.10-c5n.metal 83.37% <ø> (ø)
5.10-m5n.metal 83.37% <ø> (+<0.01%) ⬆️
5.10-m6a.metal 82.58% <ø> (+<0.01%) ⬆️
5.10-m6g.metal 79.19% <ø> (ø)
5.10-m6i.metal 83.36% <ø> (ø)
5.10-m7a.metal-48xl 82.57% <ø> (?)
5.10-m7g.metal 79.19% <ø> (ø)
5.10-m7i.metal-24xl 83.33% <ø> (?)
5.10-m7i.metal-48xl 83.32% <ø> (?)
5.10-m8g.metal-24xl 79.19% <ø> (?)
5.10-m8g.metal-48xl 79.19% <ø> (?)
6.1-c5n.metal 83.41% <ø> (+<0.01%) ⬆️
6.1-m5n.metal 83.41% <ø> (+<0.01%) ⬆️
6.1-m6a.metal 82.63% <ø> (ø)
6.1-m6g.metal 79.19% <ø> (ø)
6.1-m6i.metal 83.40% <ø> (ø)
6.1-m7a.metal-48xl 82.61% <ø> (?)
6.1-m7g.metal 79.19% <ø> (ø)
6.1-m7i.metal-24xl 83.42% <ø> (?)
6.1-m7i.metal-48xl 83.43% <ø> (?)
6.1-m8g.metal-24xl 79.18% <ø> (?)
6.1-m8g.metal-48xl 79.19% <ø> (?)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@roypat roypat merged commit 114c87f into main May 6, 2025
8 of 10 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/firecracker-1a63d321f0 branch May 6, 2025 08:38
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 Status: Awaiting review Indicates that a pull request is ready to be reviewed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants