svenstaro / miniserve

🌟 For when you really just want to serve some files over HTTP right now!
MIT License
5.95k stars 289 forks source link

Bump the all-dependencies group with 9 updates #1446

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the all-dependencies group with 9 updates:

Package From To
clap 4.5.9 4.5.13
clap_complete 4.5.8 4.5.12
clap_mangen 0.2.22 0.2.23
rustls 0.23.11 0.23.12
tokio 1.38.1 1.39.2
zip 2.1.4 2.1.6
assert_cmd 2.0.14 2.0.15
assert_fs 1.1.1 1.1.2
predicates 3.1.0 3.1.2

Updates clap from 4.5.9 to 4.5.13

Release notes

Sourced from clap's releases.

v4.5.13

[4.5.13] - 2024-07-31

Fixes

  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help

v4.5.12

[4.5.12] - 2024-07-31

v4.5.10

[4.5.10] - 2024-07-23

Changelog

Sourced from clap's changelog.

[4.5.13] - 2024-07-31

Fixes

  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help

[4.5.12] - 2024-07-31

[4.5.11] - 2024-07-25

[4.5.10] - 2024-07-23

Commits


Updates clap_complete from 4.5.8 to 4.5.12

Release notes

Sourced from clap_complete's releases.

v4.5.12

[4.5.12] - 2024-07-31

v4.5.10

[4.5.10] - 2024-07-23

v4.5.9

[4.5.9] - 2024-07-09

Fixes

  • (error) When defining a custom help flag, be sure to suggest it like we do the built-in one
Changelog

Sourced from clap_complete's changelog.

[4.5.12] - 2024-07-31

[4.5.11] - 2024-07-25

[4.5.10] - 2024-07-23

[4.5.9] - 2024-07-09

Fixes

  • (error) When defining a custom help flag, be sure to suggest it like we do the built-in one
Commits
  • d18615d chore: Release
  • 7d0c7bc docs: Update changelog
  • ca2265c Merge pull request #5601 from shannmu/multi-values
  • f0bd475 feat(clap_complete): Support multi-values of positional argument with `num_ar...
  • 3f2466b test(clap_complete): Add test case for multi-values of positional argument wi...
  • 75a45e5 feat(clap_complete): Support multiple values after flags in native completions
  • 5d8c84b test(clap_complete): Add test case for multi-values comlpetion after flags
  • 16fba4b chore(deps): Update Rust Stable to v1.80 (#5600)
  • 8a92f42 Merge pull request #5603 from epage/lint-1.80
  • 9c6ef3e refactor: Resolve deprecations
  • Additional commits viewable in compare view


Updates clap_mangen from 0.2.22 to 0.2.23

Commits
  • 4a00677 chore: Release
  • 6b18d77 docs(derive): Acknowledge Vec<Vec>
  • 5efa52a chore: Release
  • 1857e47 docs: Update changelog
  • 8697a61 chore: Release
  • a271c19 Merge pull request #5539 from shannmu/option_value
  • f7383f7 feat(clap_complete): Add support --flag bar and -f bar completion
  • 2f53bb3 test(clap_complete): Add test cases for --flag bar and -f bar completion
  • 932ca13 refactor(clap_complete): Replace parameters in complete_arg with ParseState
  • 73b07c9 docs: Remove stale ColorChoice platform notes
  • Additional commits viewable in compare view


Updates rustls from 0.23.11 to 0.23.12

Commits
  • ebda385 Update version to 0.23.12
  • 127a0a7 build(deps): bump openssl from 0.10.64 to 0.10.66
  • 3cc2c2d Support P521 SHA-256/SHA-384 signatures with aws-lc-rs (#2050)
  • e58aaa8 ci: add rebaseWhen to renovate config
  • dfc8ae5 ci: remove stabilityDays from renovate config
  • 49c31cb chore(deps): lock file maintenance
  • 63eecac chore(deps): update rust crate tikv-jemallocator to 0.6
  • See full diff in compare view


Updates tokio from 1.38.1 to 1.39.2

Release notes

Sourced from tokio's releases.

Tokio v1.39.2

1.39.2 (July 27th, 2024)

This release fixes a regression where the select! macro stopped accepting expressions that make use of temporary lifetime extension. (#6722)

#6722: tokio-rs/tokio#6722

Tokio v1.39.1

1.39.1 (July 23rd, 2024)

This release reverts "time: avoid traversing entries in the time wheel twice" because it contains a bug. (#6715)

#6715: tokio-rs/tokio#6715

Tokio v1.39.0

1.39.0 (July 23rd, 2024)

  • This release bumps the MSRV to 1.70. (#6645)
  • This release upgrades to mio v1. (#6635)
  • This release upgrades to windows-sys v0.52 (#6154)

Added

  • io: implement AsyncSeek for Empty (#6663)
  • metrics: stabilize num_alive_tasks (#6619, #6667)
  • process: add Command::as_std_mut (#6608)
  • sync: add watch::Sender::same_channel (#6637)
  • sync: add {Receiver,UnboundedReceiver}::{sender_strong_count,sender_weak_count} (#6661)
  • sync: implement Default for watch::Sender (#6626)
  • task: implement Clone for AbortHandle (#6621)
  • task: stabilize consume_budget (#6622)

Changed

  • io: improve panic message of ReadBuf::put_slice() (#6629)
  • io: read during write in copy_bidirectional and copy (#6532)
  • runtime: replace num_cpus with available_parallelism (#6709)
  • task: avoid stack overflow when passing large future to block_on (#6692)
  • time: avoid traversing entries in the time wheel twice (#6584)
  • time: support IntoFuture with timeout (#6666)
  • macros: support IntoFuture with join! and select! (#6710)

Fixed

  • docs: fix docsrs builds with the fs feature enabled (#6585)
  • io: only use short-read optimization on known-to-be-compatible platforms (#6668)
  • time: fix overflow panic when using large durations with Interval (#6612)

Added (unstable)

... (truncated)

Commits


Updates zip from 2.1.4 to 2.1.6

Release notes

Sourced from zip's releases.

v2.1.6

🐛 Bug Fixes

  • (#33) Rare combination of settings could lead to writing a corrupt archive with overlength extra data, and data_start locations when reading the archive back were also wrong (#221)

🚜 Refactor

  • Eliminate some magic numbers and unnecessary path prefixes (#225)

v2.1.5

🚜 Refactor

  • change invalid_state() return type to io::Result
Changelog

Sourced from zip's changelog.

2.1.6 - 2024-07-29

🐛 Bug Fixes

  • (#33) Rare combination of settings could lead to writing a corrupt archive with overlength extra data, and data_start locations when reading the archive back were also wrong (#221)

🚜 Refactor

  • Eliminate some magic numbers and unnecessary path prefixes (#225)

2.1.5 - 2024-07-20

🚜 Refactor

  • change invalid_state() return type to io::Result
Commits
  • beab418 chore: release (#229)
  • f803fa0 test: (#33) Verify that data_start is correct when reading an alignment-padde...
  • 6d8ab62 fix: (#33) Rare combination of settings could lead to writing a corrupt archi...
  • fd5f804 test(fuzz): Consume self, and add initial junk (#226)
  • 3ecd651 refactor: Eliminate some magic numbers and unnecessary path prefixes (#225)
  • a29b860 test(fuzz): Make cargo fuzz fmt fuzz_write output more reliably equivalent ...
  • 546e49d docs: Update pull_request_template.md
  • 50fd94f docs: Update pull_request_template.md
  • 8fb107a chore: release (#222)
  • a7c1230 publicly export and document the zip64 threshold constants (#79)
  • Additional commits viewable in compare view


Updates assert_cmd from 2.0.14 to 2.0.15

Changelog

Sourced from assert_cmd's changelog.

[2.0.15] - 2024-07-25

Compatibility

  • MSRV is now 1.74.0
Commits
  • 2a1e1db chore: Release assert_cmd version 2.0.15
  • 0695e37 docs: Update changelog
  • 92c6544 chore(deps): Update Rust crate escargot to v0.5.11
  • e6b8d43 chore(deps): Update Rust Stable to v1.79
  • a0a4c47 chore(deps): Update Rust crate escargot to v0.5.10
  • ccd759b Merge pull request #201 from epage/template
  • 3d0908a chore: Update from _rust/main template
  • ff5f185 Merge pull request #200 from assert-rs/renovate/stable-1.x
  • a9080f3 chore(deps): Update Rust Stable to v1.78
  • 310cca6 style: Address warnings
  • Additional commits viewable in compare view


Updates assert_fs from 1.1.1 to 1.1.2

Changelog

Sourced from assert_fs's changelog.

[1.1.2] - 2024-07-25

Compatibility

  • Update MSRV to 1.74.0
Commits
  • c879cf0 chore: Release assert_fs version 1.1.2
  • 76271e6 docs: Update changelog
  • 8a3d2fa chore(deps): Update Rust Stable to v1.79 (#123)
  • 72d14c2 chore(deps): Update Rust Stable to v1.78 (#122)
  • 43beebc style: Address comments
  • 75ed5dd Merge pull request #121 from epage/template
  • a760a68 style: Restore use of wildcard prelude
  • aeeb843 chore: Update from _rust/main template
  • 181a2cf chore(ci): Allow prelude wildcard imports
  • 82cf9a6 chore(ci): Reduce noisy lints
  • Additional commits viewable in compare view


Updates predicates from 3.1.0 to 3.1.2

Changelog

Sourced from predicates's changelog.

[3.1.2] - 2024-07-25

[3.1.1] - 2024-07-25

Compatibility

  • Update MSRV to 1.74
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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 1 month ago

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