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 dependencies group across 1 directory with 7 updates #386

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 7, 2025

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

Package From To
serde 1.0.215 1.0.217
anyhow 1.0.93 1.0.95
console 0.15.8 0.15.10
ureq 2.10.1 2.12.1
serde_json 1.0.132 1.0.135
git2 0.19.0 0.20.0
clap 4.5.21 4.5.23

Updates serde from 1.0.215 to 1.0.217

Release notes

Sourced from serde's releases.

v1.0.217

  • Support serializing externally tagged unit variant inside flattened field (#2786, thanks @​Mingun)

v1.0.216

  • Mark all generated impls with #[automatically_derived] to exclude from code coverage (#2866, #2868, thanks @​tdittr)
Commits
  • 930401b Release 1.0.217
  • cb6eaea Fix roundtrip inconsistency:
  • b6f339c Resolve repr_packed_without_abi clippy lint in tests
  • 2a5caea Merge pull request #2872 from dtolnay/ehpersonality
  • b9f93f9 Add no-std CI on stable compiler
  • eb5cd47 Drop #[lang = "eh_personality"] from no-std test
  • 8478a3b Merge pull request #2871 from dtolnay/nostdstart
  • dbb9091 Replace #[start] with extern fn main
  • ad8dd41 Release 1.0.216
  • f91d2ed Merge pull request #2868 from dtolnay/automaticallyderived
  • Additional commits viewable in compare view

Updates anyhow from 1.0.93 to 1.0.95

Release notes

Sourced from anyhow's releases.

1.0.95

1.0.94

  • Documentation improvements
Commits
  • 48be1ca Release 1.0.95
  • a03d6d6 Merge pull request #402 from dtolnay/fromboxed
  • 52e4abb Add Error::from_boxed with documentation about bidirectional ?
  • ffecefc Merge pull request #401 from dtolnay/construct
  • 671f700 Add construct_ prefix to name of private construct functions
  • 8ceb5e9 Release 1.0.94
  • b9009ab Merge pull request #399 from dtolnay/okvalue
  • 863791a Align naming between Ok function argument and its documentation
  • 2081692 Merge pull request #398 from zertosh/ok_doc_format
  • cc2cecb Fix anyhow::Ok rustdoc code formatting
  • Additional commits viewable in compare view

Updates console from 0.15.8 to 0.15.10

Release notes

Sourced from console's releases.

0.15.10

What's Changed

0.15.9

What's Changed

Changelog

Sourced from console's changelog.

Changelog

Commits

Updates ureq from 2.10.1 to 2.12.1

Changelog

Sourced from ureq's changelog.

2.12.1

  • Do not use multi-version deps (>=x.x.x) (#907)

2.12.0

  • Bump MSRV 1.67 -> 1.71 because rustls will soon adopt it (#905)
  • Unpin rustls dep (>=0.23.19) (#905)

2.11.0

  • Fixes for changes to cargo-deny (#882)
  • Pin rustls dep on 0.23.19 to keep MSRV 1.67 (#878)
  • Bump MSRV 1.63 -> 1.67 due to time crate (#878)
  • Re-export rustls (#813)
Commits

Updates serde_json from 1.0.132 to 1.0.135

Release notes

Sourced from serde_json's releases.

v1.0.135

v1.0.134

  • Add RawValue associated constants for literal null, true, false (#1221, thanks @​bheylin)

v1.0.133

  • Implement From<[T; N]> for serde_json::Value (#1215)
Commits
  • 9802c08 Release 1.0.135
  • b97935f Merge pull request #1226 from tisonkun/map-into-values
  • d48c224 Add Map::into_values method
  • 1e77cac Resolve precedence clippy lint
  • b2a1415 Release 1.0.134
  • 9875785 Tweak wording of NULL/TRUE/FALSE documentation
  • 4aa05b9 Merge pull request #1222 from dtolnay/rawvalueassoc
  • f42c7c7 Move RawValue associated constants into same impl block as public functions
  • 96576ba Merge pull request #1221 from bheylin/add-const-raw-values-for-null-and-bools
  • 4db66fb Add 'static lifetime to const's
  • Additional commits viewable in compare view

Updates git2 from 0.19.0 to 0.20.0

Changelog

Sourced from git2's changelog.

0.20.0 - 2025-01-04

0.19.0...0.20.0

Added

  • Debug is now implemented for transport::Service #1074
  • Added Repository::commondir #1079
  • Added Repository::merge_base_octopus #1088
  • Restored impls for PartialOrd, Ord, and Hash for bitflags types that were inadvertently removed in a prior release. #1096
  • Added CheckoutBuilder::disable_pathspec_match #1107
  • Added PackBuilder::write #1110

Changed

  • ❗ Updated to libgit2 1.9.0 #1111
  • ❗ Removed the ssh_key_from_memory Cargo feature, it was unused. #1087
  • ❗ Errors from Tree::walk are now correctly reported to the caller. #1098
  • ❗ The trace_set callback now takes a &[u8] instead of a &str. #1071
  • Error::last_error now returns Error instead of Option<Error>. #1072

Fixed

  • Fixed OdbReader::read return value. #1061
  • When a credential helper executes a shell command, don't pop open a console window on Windows. #1075
Commits
  • 14cdc15 Merge pull request #1115 from ehuss/lock-locked
  • cbf9dd4 Merge pull request #1116 from ehuss/update-time
  • e46a1f9 Check that Cargo.lock is not outdated in CI
  • a4bd932 Update the time dev-dependency
  • ca65651 Merge pull request #1113 from ehuss/cargo-lock
  • e16a3f9 Merge pull request #1112 from ehuss/check-cfg
  • f538a99 Add a Cargo.lock
  • 8ce89e2 Squelch the warning about libgit2_vendored check-cfg
  • 92d96ac Merge pull request #1072 from vcfxb/remove-error-unwraps
  • 8977c0c Merge pull request #1071 from vcfxb/fix-tracing-ub
  • Additional commits viewable in compare view

Updates clap from 4.5.21 to 4.5.23

Release notes

Sourced from clap's releases.

v4.5.23

[4.5.23] - 2024-12-05

Fixes

  • (parser) When check allow_negative_numbers, allow E again

v4.5.22

[4.5.22] - 2024-12-03

Fixes

  • (assert) Catch bugs with arguments requiring themself
Changelog

Sourced from clap's changelog.

[4.5.23] - 2024-12-05

Fixes

  • (parser) When check allow_negative_numbers, allow E again

[4.5.22] - 2024-12-03

Fixes

  • (assert) Catch bugs with arguments requiring themself
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 dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.215` | `1.0.217` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.93` | `1.0.95` |
| [console](https://github.com/console-rs/console) | `0.15.8` | `0.15.10` |
| [ureq](https://github.com/algesten/ureq) | `2.10.1` | `2.12.1` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.132` | `1.0.135` |
| [git2](https://github.com/rust-lang/git2-rs) | `0.19.0` | `0.20.0` |
| [clap](https://github.com/clap-rs/clap) | `4.5.21` | `4.5.23` |



Updates `serde` from 1.0.215 to 1.0.217
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.215...v1.0.217)

Updates `anyhow` from 1.0.93 to 1.0.95
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.93...1.0.95)

Updates `console` from 0.15.8 to 0.15.10
- [Release notes](https://github.com/console-rs/console/releases)
- [Changelog](https://github.com/console-rs/console/blob/main/CHANGELOG.md)
- [Commits](console-rs/console@0.15.8...0.15.10)

Updates `ureq` from 2.10.1 to 2.12.1
- [Changelog](https://github.com/algesten/ureq/blob/main/CHANGELOG.md)
- [Commits](algesten/ureq@2.10.1...2.12.1)

Updates `serde_json` from 1.0.132 to 1.0.135
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.132...v1.0.135)

Updates `git2` from 0.19.0 to 0.20.0
- [Changelog](https://github.com/rust-lang/git2-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/git2-rs@git2-0.19.0...git2-0.20.0)

Updates `clap` from 4.5.21 to 4.5.23
- [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.21...clap_complete-v4.5.23)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: console
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ureq
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: git2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

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 Jan 7, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 8, 2025

Superseded by #387.

@dependabot dependabot bot closed this Jan 8, 2025
@dependabot dependabot bot deleted the dependabot/cargo/dependencies-87f5a6c5be branch January 8, 2025 15:02
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