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

Bump the cargo-dependencies group across 1 directory with 7 updates #313

Merged
merged 1 commit into from
Jun 24, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
clap_complete 4.5.5 4.5.6
clap-markdown 0.1.3 0.1.4
lazy_static 1.4.0 1.5.0
memchr 2.7.2 2.7.4
reqwest 0.12.4 0.12.5
url 2.5.1 2.5.2
uuid 1.8.0 1.9.0

Updates clap_complete from 4.5.5 to 4.5.6

Release notes

Sourced from clap_complete's releases.

v4.5.6

[4.5.6] - 2024-06-06

Changelog

Sourced from clap_complete's changelog.

[4.5.6] - 2024-06-06

Commits

Updates clap-markdown from 0.1.3 to 0.1.4

Changelog

Sourced from clap-markdown's changelog.

[0.1.4] — 2024-06-15

Added

  • Added help_markdown_custom() and help_markdown_command_custom(), for customizing the built Markdown using a new MarkdownOptions configuration structure. (#25, co-authored-by @​morgante and @​keturiosakys)

    Supported customization options include:

    • Contents of the command title header.
    • Whether to show the footer explaining the documentation was generated with clap-markdown.
    • Whether to show the command overview table of contents.
  • Added new CI build and test action to the repository, so that new PRs will be required automatically to pass all tests. (#24)

Changed

  • clap-markdown will now respect the Command.display_name property, if set, and use it in the rendered Markdown when showing the name and usage of the command. (#27, co-authored-by @​keturiosakys and @​hatchan)

  • The possible values of a flag that can only either be present or absent (true or false) will no longer be shown. (#22, contributed by @​ilyagr)

  • Hidden arguments (Arg.hide == true) will no longer be included in the rendered Markdown. (#22, contributed by @​ilyagr)

  • Long help text for commands will now be included in the rendered output. (#26, contributed by @​morgante)

  • Long help text for options will now be included in the rendered output. (#23, contributed by @​ilyagr)

Commits
  • 1e1ae46 release: Prep v0.1.4 for release + update CHANGELOG.md (#29)
  • 2318d55 [PR Integration] Use display_name wherever possible + table of contents opt...
  • 8a60dbd test: More exhaustively test current name/bin_name/display_name handling beha...
  • 3208cda feat: add support for custom before/after help (#26)
  • e13c09d [PR Integration] feat: add options for controlling formatting #17 (#25)
  • f2ed6eb feature: Print long help text for options (#23)
  • 60319e6 ci: Create BuildAndTestPR.yml (#24)
  • f056975 bugfix: Do not show extraneous true/false possible values, skip hidden argume...
  • See full diff in compare view

Updates lazy_static from 1.4.0 to 1.5.0

Commits

Updates memchr from 2.7.2 to 2.7.4

Commits

Updates reqwest from 0.12.4 to 0.12.5

Release notes

Sourced from reqwest's releases.

v0.12.5

What's Changed

  • Add http3 feature back, still requiring reqwest_unstable.
  • Add rustls-tls-no-provider Cargo feature to use rustls without a crypto provider.
  • Add blocking::ClientBuilder::dns_resolver() method to change DNS resolver in blocking client.
  • Fix Accept-Encoding header combinations.
  • Fix http3 resolving IPv6 addresses.
  • Internal: upgrade to rustls 0.23.

New Contributors

Full Changelog: seanmonstar/reqwest@v0.12.4...v0.12.5

Changelog

Sourced from reqwest's changelog.

v0.12.5

  • Add blocking::ClientBuilder::dns_resolver() method to change DNS resolver in blocking client.
  • Add http3 feature back, still requiring reqwest_unstable.
  • Add rustls-tls-no-provider Cargo feature to use rustls without a crypto provider.
  • Fix Accept-Encoding header combinations.
  • Fix http3 resolving IPv6 addresses.
  • Internal: upgrade to rustls 0.23.
Commits
  • 29d4cff v0.12.5
  • a7880d6 tests: fix http3 tests
  • c32d877 tests: enable http3 content-length test
  • ce3b30e http3: send content-length if known
  • 404df59 test: add http3 test server support
  • e5ce0b5 fix: don't enable hyper-rustls/http2 unless http2 is already enabled
  • ccb5e40 Don't compile hyper-tls with native-roots unless rustls-tls-native-roots is e...
  • c56fbae tests: remove a proxy parse error check
  • 8cc7cd4 msrv: pin url
  • 695bc04 fix: http3 resolving ipv6 addresses (#2305)
  • Additional commits viewable in compare view

Updates url from 2.5.1 to 2.5.2

Commits

Updates uuid from 1.8.0 to 1.9.0

Release notes

Sourced from uuid's releases.

1.9.0

Uuid::now_v7() is guaranteed to be monotonic

Before this release, Uuid::now_v7() would only use the millisecond-precision timestamp for ordering. It now also uses a global 42-bit counter that's re-initialized each millisecond so that the following will always pass:

let a = Uuid::now_v7();
let b = Uuid::now_v7();
assert!(a < b);

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.8.0...1.9.0

Commits
  • 4a129e7 Merge pull request #760 from uuid-rs/cargo/1.9.0
  • 6bfee6b prepare for 1.9.0 release
  • 62b7145 Merge pull request #759 from uuid-rs/chore/v7-counter-cleanup
  • 62e968c clean up new Timestamp APIs
  • 49319a7 Merge pull request #758 from uuid-rs/chore/test-overflow
  • 47b9130 ensure v7 methods don't overflow on max values
  • 0c561e3 Merge pull request #757 from uuid-rs/ci/more-miri
  • 252770b expand miri tests to cover all features
  • e62647f Merge pull request #755 from uuid-rs/feat/v7-counter
  • c270b3d improve testing for contexts
  • 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

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

| Package | From | To |
| --- | --- | --- |
| [clap_complete](https://github.com/clap-rs/clap) | `4.5.5` | `4.5.6` |
| [clap-markdown](https://github.com/ConnorGray/clap-markdown) | `0.1.3` | `0.1.4` |
| [lazy_static](https://github.com/rust-lang-nursery/lazy-static.rs) | `1.4.0` | `1.5.0` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.7.2` | `2.7.4` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.4` | `0.12.5` |
| [url](https://github.com/servo/rust-url) | `2.5.1` | `2.5.2` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.8.0` | `1.9.0` |



Updates `clap_complete` from 4.5.5 to 4.5.6
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.5...clap_complete-v4.5.6)

Updates `clap-markdown` from 0.1.3 to 0.1.4
- [Changelog](https://github.com/ConnorGray/clap-markdown/blob/main/docs/CHANGELOG.md)
- [Commits](ConnorGray/clap-markdown@v0.1.3...v0.1.4)

Updates `lazy_static` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/rust-lang-nursery/lazy-static.rs/releases)
- [Commits](rust-lang-nursery/lazy-static.rs@1.4.0...1.5.0)

Updates `memchr` from 2.7.2 to 2.7.4
- [Commits](BurntSushi/memchr@2.7.2...2.7.4)

Updates `reqwest` from 0.12.4 to 0.12.5
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.4...v0.12.5)

Updates `url` from 2.5.1 to 2.5.2
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.1...v2.5.2)

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

---
updated-dependencies:
- dependency-name: clap_complete
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: clap-markdown
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: lazy_static
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: memchr
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: url
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested review from a team as code owners June 24, 2024 10:38
@dependabot dependabot bot requested a review from mellowagain June 24, 2024 10:38
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jun 24, 2024
@mellowagain mellowagain merged commit fe94dce into main Jun 24, 2024
2 checks passed
@mellowagain mellowagain deleted the dependabot/cargo/cargo-dependencies-ad0c3261c5 branch June 24, 2024 13:01
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.

1 participant