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 all group with 8 updates #5771

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 1, 2024

Bumps the all group with 8 updates:

Package From To
log 0.4.21 0.4.22
clap 4.5.7 4.5.8
serde_json 1.0.117 1.0.119
cc 1.0.100 1.0.103
clap_complete 4.5.6 4.5.7
uuid 1.9.0 1.9.1
ordered-float 4.2.0 4.2.1
http_req 0.10.3 0.11.0

Updates log from 0.4.21 to 0.4.22

Changelog

Sourced from log's changelog.

[0.4.22] - 2024-06-27

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.21...0.4.22

Commits
  • d5ba2cf Merge pull request #634 from rust-lang/cargo/0.4.22
  • d1a8306 prepare for 0.4.22 release
  • 46894ef Merge pull request #633 from rust-lang/feat/panic-info
  • e0d389c Merge pull request #632 from rust-lang/feat/loosen-atomics
  • c9e5e13 use Location::caller() for file and line info
  • 507b672 loosen orderings for logger initialization
  • c879b01 Merge pull request #628 from Thomasdezeeuw/fix-warnings
  • 405fdb4 Merge pull request #627 from Thomasdezeeuw/check-features
  • 1307ade Remove unneeded import
  • 710560e Don't use --all-features in CI
  • Additional commits viewable in compare view

Updates clap from 4.5.7 to 4.5.8

Release notes

Sourced from clap's releases.

v4.5.8

[4.5.8] - 2024-06-28

Fixes

  • Reduce extra flushes
Changelog

Sourced from clap's changelog.

[4.5.8] - 2024-06-28

Fixes

  • Reduce extra flushes
Commits

Updates serde_json from 1.0.117 to 1.0.119

Release notes

Sourced from serde_json's releases.

v1.0.119

v1.0.118

Commits
  • b48b9a3 Release 1.0.119
  • 8878cd7 Make shift_insert available for inlining like other Map methods
  • 352b7ab Document the cfg required for Map::shift_insert to exist
  • c17e63f Merge pull request #1149 from joshka/master
  • 309ef6b Add Map::shift_insert()
  • a9e089a Merge pull request #1146 from haouvw/master
  • a83fe96 chore: remove repeat words
  • c4f24f3 Release 1.0.118
  • 51d94eb Combine Map's Hash into one impl
  • 5e7bedc Touch up PR 1127
  • Additional commits viewable in compare view

Updates cc from 1.0.100 to 1.0.103

Release notes

Sourced from cc's releases.

cc-v1.0.103

Other

  • Fix compilation for wasm: env WASI_SYSROOT should be optional (#1114)

cc-v1.0.102

Other

  • Fix invalid wasi targets compatibility (#1105)
  • Speedup regenerate-target-info and regenerate-windows-sys (#1110)

cc-v1.0.101

Other

  • Use Build::getenv instead of env::var* in anywhere that makes sense (#1103)
Changelog

Sourced from cc's changelog.

1.0.103 - 2024-06-30

Other

  • Fix compilation for wasm: env WASI_SYSROOT should be optional (#1114)

1.0.102 - 2024-06-29

Other

  • Fix invalid wasi targets compatibility (#1105)
  • Speedup regenerate-target-info and regenerate-windows-sys (#1110)

1.0.101 - 2024-06-25

Other

  • Use Build::getenv instead of env::var* in anywhere that makes sense (#1103)
Commits

Updates clap_complete from 4.5.6 to 4.5.7

Release notes

Sourced from clap_complete's releases.

v4.5.7

[4.5.7] - 2024-06-10

Fixes

  • Clean up error message when too few arguments for num_args
Changelog

Sourced from clap_complete's changelog.

[4.5.7] - 2024-06-10

Fixes

  • Clean up error message when too few arguments for num_args
Commits
  • 469d847 chore: Release
  • e323b91 docs: Update changelog
  • 7101c64 Merge pull request #5557 from tesuji/fish-positional-args-files
  • 5ee1a25 fix(fish): Don't ignore files if has positional args
  • 3a2fb25 Merge pull request #5547 from tesuji/fish-list
  • 1e3681b refactor: Pass list to __fish_seen_subcommand_from
  • b1a0508 refactor: Rewrite iterator for followup changes
  • 5cc44bb Merge pull request #5548 from tesuji/fish-escape-tab
  • 181b9e0 test: Ensure optional_value runs
  • 0724b7b chore: Remove tarpaulin support
  • Additional commits viewable in compare view

Updates uuid from 1.9.0 to 1.9.1

Release notes

Sourced from uuid's releases.

1.9.1

What's Changed

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

Commits
  • 36e6f57 Merge pull request #763 from uuid-rs/cargo/1.9.1
  • 65bf733 prepare for 1.9.1 release
  • d0a2461 Merge pull request #762 from uuid-rs/fix/double-lock
  • 20911bd avoid taking the shared lock when getting usable bits in Uuid::now_v7
  • c01feb8 Merge pull request #761 from uuid-rs/chore/bulk-example
  • 864239b add an example of generating bulk v7 UUIDs
  • See full diff in compare view

Updates ordered-float from 4.2.0 to 4.2.1

Release notes

Sourced from ordered-float's releases.

v4.2.1

What's Changed

Full Changelog: reem/rust-ordered-float@v4.2.0...v4.2.1

Commits

Updates http_req from 0.10.3 to 0.11.0

Release notes

Sourced from http_req's releases.

v0.11.0

What's new

  • Improve memory management and overall stability
    • Fix issue causing all data to be loaded into memory instead of dedicated writer
    • Fix issue that could lead to exceeding timeout when server was sending data at very low speed #46
    • Ensure that response body is only read when the content-length is greater than 0 or is unknown as per #65 by @​ghu
  • Stream allows to more easily manage TCP connection and perform common operations on the underlying TCP stream
  • Update dependencies
    • rustls ^0.23
    • rustls-pemfile ^2.1
    • webpki-roots ^0.26
  • New dependencies (for rustls)
    • rustls-pki-types ^ 1.7

Breaking changes

  • RequestBuilder can no longer send requests by itself. It is now only used to prepare request messages.
  • Default Request timeout is set to 1 hour
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 all group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [log](https://github.com/rust-lang/log) | `0.4.21` | `0.4.22` |
| [clap](https://github.com/clap-rs/clap) | `4.5.7` | `4.5.8` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.117` | `1.0.119` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.100` | `1.0.103` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.5.6` | `4.5.7` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.9.0` | `1.9.1` |
| [ordered-float](https://github.com/reem/rust-ordered-float) | `4.2.0` | `4.2.1` |
| [http_req](https://github.com/jayjamesjay/http_req) | `0.10.3` | `0.11.0` |


Updates `log` from 0.4.21 to 0.4.22
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.21...0.4.22)

Updates `clap` from 4.5.7 to 4.5.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@clap_complete-v4.5.7...v4.5.8)

Updates `serde_json` from 1.0.117 to 1.0.119
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.117...v1.0.119)

Updates `cc` from 1.0.100 to 1.0.103
- [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.0.100...cc-v1.0.103)

Updates `clap_complete` from 4.5.6 to 4.5.7
- [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.6...clap_complete-v4.5.7)

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

Updates `ordered-float` from 4.2.0 to 4.2.1
- [Release notes](https://github.com/reem/rust-ordered-float/releases)
- [Commits](reem/rust-ordered-float@v4.2.0...v4.2.1)

Updates `http_req` from 0.10.3 to 0.11.0
- [Release notes](https://github.com/jayjamesjay/http_req/releases)
- [Commits](jayjamesjay/http_req@v0.10.3...v0.11.0)

---
updated-dependencies:
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: cc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: clap_complete
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: ordered-float
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: http_req
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

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 Jul 1, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 8, 2024

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

@dependabot dependabot bot closed this Jul 8, 2024
@dependabot dependabot bot deleted the dependabot/cargo/all-69a1aa22fe branch July 8, 2024 01:33
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