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

build(deps): Bump the firecracker group with 15 updates #84

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Nov 27, 2023

Bumps the firecracker group with 15 updates:

Package From To
clap 4.4.7 4.4.8
itertools 0.11.0 0.12.0
proc-macro2 1.0.69 1.0.70
uuid 1.5.0 1.6.1
serde 1.0.190 1.0.193
cargo_toml 0.17.0 0.17.1
env_logger 0.10.0 0.10.1
aws-lc-rs 1.4.0 1.5.2
errno 0.3.5 0.3.7
getrandom 0.2.10 0.2.11
hashbrown 0.14.2 0.14.3
proptest 1.3.1 1.4.0
termcolor 1.3.0 1.4.0
toml 0.8.6 0.8.8
zeroize 1.6.0 1.7.0

Updates clap from 4.4.7 to 4.4.8

Release notes

Sourced from clap's releases.

v4.4.8

[4.4.8] - 2023-11-10

Features

  • Add Command::flatten_help to allow git stash -h like help for subcommands
Changelog

Sourced from clap's changelog.

[4.4.8] - 2023-11-10

Features

  • Add Command::flatten_help to allow git stash -h like help for subcommands
Commits
  • 3aeea91 chore: Release
  • 1add9a7 docs: Update changelog
  • 6b2a2cc Merge pull request #5206 from epage/flatten
  • 9c0f7a7 fix(help): Recurse help flattening
  • 4bef91c refactor(help): Pull out flat subcommands
  • c9a7ef0 fix(help): Gloss over globals with flatten
  • 9e5f93d fix(help): Be consistent in long/short help
  • 66d2bcb feat(help): Allow flattening help
  • 3383242 Merge pull request #5205 from epage/flatten-refactor
  • caf5cdc feat(help): Allow flattening usage
  • Additional commits viewable in compare view

Updates itertools from 0.11.0 to 0.12.0

Changelog

Sourced from itertools's changelog.

0.12.0

Breaking

  • Made take_while_inclusive consume iterator by value (#709)
  • Added Clone bound to Unique (#777)

Added

  • Added Itertools::try_len (#723)
  • Added free function sort_unstable (#796)
  • Added GroupMap::fold_with (#778, #785)
  • Added PeekNth::{peek_mut, peek_nth_mut} (#716)
  • Added PeekNth::{next_if, next_if_eq} (#734)
  • Added conversion into (Option<A>,Option<B>) to EitherOrBoth (#713)
  • Added conversion from Either<A, B> to EitherOrBoth<A, B> (#715)
  • Implemented ExactSizeIterator for Tuples (#761)
  • Implemented ExactSizeIterator for (Circular)TupleWindows (#752)
  • Made EitherOrBoth<T> a shorthand for EitherOrBoth<T, T> (#719)

Changed

  • Added missing #[must_use] annotations on iterator adaptors (#794)
  • Made Combinations lazy (#795)
  • Made Intersperse(With) lazy (#797)
  • Made Permutations lazy (#793)
  • Made Product lazy (#800)
  • Made TupleWindows lazy (#602)
  • Specialized Combinations::{count, size_hint} (#729)
  • Specialized CombinationsWithReplacement::{count, size_hint} (#737)
  • Specialized Powerset::fold (#765)
  • Specialized Powerset::count (#735)
  • Specialized TupleCombinations::{count, size_hint} (#763)
  • Specialized TupleCombinations::fold (#775)
  • Specialized WhileSome::fold (#780)
  • Specialized WithPosition::fold (#772)
  • Specialized ZipLongest::fold (#774)
  • Changed {min, max}_set* operations require alloc feature, instead of std (#760)
  • Improved documentation of tree_fold1 (#787)
  • Improved documentation of permutations (#724)
  • Fixed typo in documentation of multiunzip (#770)

Notable Internal Changes

  • Improved specialization tests (#799, #786, #782)
  • Simplified implementation of Permutations (#739, #748, #790)
  • Combined Merge/MergeBy/MergeJoinBy implementations (#736)
  • Simplified Permutations::size_hint (#739)
  • Fix wrapping arithmetic in benchmarks (#770)
  • Enforced rustfmt in CI (#751)
  • Disallowed compile warnings in CI (#720)
  • Used cargo hack to check MSRV (#754)
Commits
  • 98ecabb chore: Release itertools version 0.12.0
  • 22fc427 prepare v0.12.0 release
  • 6d29178 Document the field a_cur of Product
  • bf2b012 Better Product::size_hint
  • 8d07f6b Make Product lazy
  • d7e6bab Document the field peek of IntersperseWith
  • 9b01a11 Make IntersperseWith lazy
  • 4f22173 Refactor IntersperseWith::next
  • b76172b chore: adjust docs to reflect discussion in the PR
  • 955927f chore: fixup docs of tree_fold1
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.69 to 1.0.70

Release notes

Sourced from proc-macro2's releases.

1.0.70

  • Add #[track_caller] on Ident::new so that panics on invalid input are attributed to the caller (#423)
Commits
  • cd31a69 Release 1.0.70
  • 4482662 Merge pull request #423 from dtolnay/trackcaller
  • 690ab11 Track caller for Ident validation panics
  • f15383f Merge pull request #422 from dtolnay/newchecked
  • ea2cd7f Rename internal Ident::new -> Ident::new_checked
  • 8059195 Merge pull request #421 from dtolnay/identunchecked
  • 805a6ad Bypass Ident validation on identifiers created by parser
  • c513462 Merge pull request #420 from dtolnay/newraw
  • bd778e1 Delete Ident::_new_raw
  • 0cb3649 Ignore checked_conversions pedantic clippy lint
  • Additional commits viewable in compare view

Updates uuid from 1.5.0 to 1.6.1

Release notes

Sourced from uuid's releases.

1.6.1

What's Changed

Full Changelog: uuid-rs/uuid@1.6.0...1.6.1

1.6.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.5.0...1.6.0

Commits

Updates serde from 1.0.190 to 1.0.193

Release notes

Sourced from serde's releases.

v1.0.193

v1.0.192

v1.0.191

  • Documentation improvements
Commits
  • 44613c7 Release 1.0.193
  • c706281 Merge pull request #2655 from dtolnay/rangestartend
  • 65d75b8 Add RangeFrom and RangeTo tests
  • 332b0cb Merge pull request #2654 from dtolnay/rangestartend
  • 8c4af41 Fix more RangeFrom / RangeEnd mixups
  • 24a78f0 Merge pull request #2653 from emilbonnek/fix/range-to-from-de-mixup
  • c91c334 Fix Range{From,To} deserialize mixup
  • 2083f43 Update ui test suite to nightly-2023-11-19
  • 4676abd Release 1.0.192
  • 35700eb Merge pull request #2646 from robsdedude/fix/2643/allow-tag-field-in-untagged
  • Additional commits viewable in compare view

Updates cargo_toml from 0.17.0 to 0.17.1

Commits

Updates env_logger from 0.10.0 to 0.10.1

Changelog

Sourced from env_logger's changelog.

[0.10.1] - 2023-11-10

Commits
  • 36623f5 chore: Release env_logger version 0.10.1
  • 8a033d8 chore: Fix packaging
  • 9df7e6c Merge pull request #241 from ChrisDenton/simple-insert
  • 46ccdd9 perf: Replace HashMap with a Vec
  • bdc96a4 Merge pull request #249 from atouchet/v10
  • 983837c Update links and remove broken badge
  • dcd220d Update listed version number
  • 36b1508 Merge pull request #260 from y-yagi/2018-edition
  • 6f64347 Merge pull request #282 from epage/syntax
  • b297357 chore: Update docs and examples to 2018 edition
  • Additional commits viewable in compare view

Updates aws-lc-rs from 1.4.0 to 1.5.2

Release notes

Sourced from aws-lc-rs's releases.

v1.5.2

What's Changed

Full Changelog: aws/aws-lc-rs@v1.5.1...v1.5.2

v1.5.1

What's Changed

Full Changelog: aws/aws-lc-rs@v1.5.0...v1.5.1

v1.5.0

What's Changed

New Contributors

Full Changelog: aws/aws-lc-rs@v1.4.0...v1.5.0

Commits
  • a26674a Bump version to v1.5.2 (#292)
  • c9ab891 Specify minimum required fs_extra as 1.3 (#287)
  • df58d85 Filter out edwards25519 symbls which are not supposed to have external linkag...
  • cb030a3 Fix docs.rs generation failure due to build environment issues (#281)
  • a30dec2 Bump aws-lc-rs to v1.5.0 (#280)
  • 9b1e856 Add links to aws-lc-fips-sys Cargo.toml (#279)
  • 27d447f fix(aws-lc-sys): add links attribute to Cargo.toml (#277)
  • a3a2086 Expose TlsRecordOpeningKey::open_within (#276)
  • 535eaec Regenerated aws-lc-sys@v0.12.0 using aws-lc@v1.17.3 (#270)
  • ec283ea Regenerated aws-lc-fips-sys@v0.11.1 for aws-lc@AWS-LC-FIPS-2.0.2 (#271)
  • Additional commits viewable in compare view

Updates errno from 0.3.5 to 0.3.7

Changelog

Sourced from errno's changelog.

[0.3.7] - 2023-11-15

  • Fix to_string() handling for unknown error codes #88

[0.3.6] - 2023-11-07

  • Add support for tvOS and watchOS #84

  • Added support for vita target #86

Commits

Updates getrandom from 0.2.10 to 0.2.11

Changelog

Sourced from getrandom's changelog.

[0.2.11] - 2023-11-08

Added

  • GNU/Hurd support #370

Changed

  • Renamed __getrandom_internal to __GETRANDOM_INTERNAL #369
  • Updated link to Hermit docs #374

#369: rust-random/getrandom#369 #370: rust-random/getrandom#370 #374: rust-random/getrandom#374

Commits

Updates hashbrown from 0.14.2 to 0.14.3

Changelog

Sourced from hashbrown's changelog.

[v0.14.3] - 2023-11-26

Added

  • Specialized fold implementation of iterators. (#480)

Fixed

  • Avoid using unstable ptr::invalid_mut on nightly. (#481)
Commits
  • f2e6212 Auto merge of #486 - Amanieu:release-0.14.3, r=Amanieu
  • 924237d Prepare release of v0.14.3
  • 291465a Auto merge of #480 - a1phyr:iter_fold, r=Amanieu
  • 798ba9f Address review comments
  • 2e138e9 Auto merge of #481 - RalfJung:ptr-invalid, r=Amanieu
  • dee5c03 Add comments
  • 5aa1b77 Apply suggestion: use match
  • 83273fb Remove old code
  • f13a05a avoid using unstable ptr::invalid_mut
  • deaf7eb Specialize fold implementation of iterators
  • Additional commits viewable in compare view

Updates proptest from 1.3.1 to 1.4.0

Commits

Updates termcolor from 1.3.0 to 1.4.0

Commits

Updates toml from 0.8.6 to 0.8.8

Commits

Updates zeroize from 1.6.0 to 1.7.0

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 15 updates:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.4.7` | `4.4.8` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.11.0` | `0.12.0` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.69` | `1.0.70` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.5.0` | `1.6.1` |
| [serde](https://github.com/serde-rs/serde) | `1.0.190` | `1.0.193` |
| [cargo_toml](https://gitlab.com/lib.rs/cargo_toml) | `0.17.0` | `0.17.1` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` |
| [aws-lc-rs](https://github.com/awslabs/aws-lc-rs) | `1.4.0` | `1.5.2` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.5` | `0.3.7` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.10` | `0.2.11` |
| [hashbrown](https://github.com/rust-lang/hashbrown) | `0.14.2` | `0.14.3` |
| [proptest](https://github.com/proptest-rs/proptest) | `1.3.1` | `1.4.0` |
| [termcolor](https://github.com/BurntSushi/termcolor) | `1.3.0` | `1.4.0` |
| [toml](https://github.com/toml-rs/toml) | `0.8.6` | `0.8.8` |
| [zeroize](https://github.com/RustCrypto/utils) | `1.6.0` | `1.7.0` |


Updates `clap` from 4.4.7 to 4.4.8
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.4.7...v4.4.8)

Updates `itertools` from 0.11.0 to 0.12.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.11.0...v0.12.0)

Updates `proc-macro2` from 1.0.69 to 1.0.70
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.69...1.0.70)

Updates `uuid` from 1.5.0 to 1.6.1
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.5.0...1.6.1)

Updates `serde` from 1.0.190 to 1.0.193
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.190...v1.0.193)

Updates `cargo_toml` from 0.17.0 to 0.17.1
- [Commits](https://gitlab.com/lib.rs/cargo_toml/compare/v0.17.0...v0.17.1)

Updates `env_logger` from 0.10.0 to 0.10.1
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.10.0...v0.10.1)

Updates `aws-lc-rs` from 1.4.0 to 1.5.2
- [Release notes](https://github.com/awslabs/aws-lc-rs/releases)
- [Commits](aws/aws-lc-rs@v1.4.0...v1.5.2)

Updates `errno` from 0.3.5 to 0.3.7
- [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md)
- [Commits](lambda-fairy/rust-errno@v0.3.5...v0.3.7)

Updates `getrandom` from 0.2.10 to 0.2.11
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.10...v0.2.11)

Updates `hashbrown` from 0.14.2 to 0.14.3
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](rust-lang/hashbrown@v0.14.2...v0.14.3)

Updates `proptest` from 1.3.1 to 1.4.0
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/master/CHANGELOG.md)
- [Commits](proptest-rs/proptest@v1.3.1...v1.4.0)

Updates `termcolor` from 1.3.0 to 1.4.0
- [Commits](BurntSushi/termcolor@1.3.0...1.4.0)

Updates `toml` from 0.8.6 to 0.8.8
- [Commits](toml-rs/toml@toml-v0.8.6...toml-v0.8.8)

Updates `zeroize` from 1.6.0 to 1.7.0
- [Commits](https://github.com/RustCrypto/utils/commits)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: cargo_toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: aws-lc-rs
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: errno
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: getrandom
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: hashbrown
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: proptest
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: termcolor
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: firecracker
- dependency-name: toml
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: firecracker
- dependency-name: zeroize
  dependency-type: indirect
  update-type: version-update:semver-minor
  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 Nov 27, 2023
Copy link
Author

dependabot bot commented on behalf of github Nov 28, 2023

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

@dependabot dependabot bot closed this Nov 28, 2023
@dependabot dependabot bot deleted the dependabot/cargo/firecracker-ce565294e4 branch November 28, 2023 14:43
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