Update all dependencies #10

Merged
kjuulh merged 1 commits from renovate/all into main 2023-02-08 22:25:36 +01:00
Owner

This PR contains the following updates:

Package Type Update Change
clap dependencies minor 4.0.27 -> 4.1.4
git2 workspace.dependencies minor 0.15.0 -> 0.16.1
serde (source) workspace.dependencies patch 1.0.147 -> 1.0.152
serde_json workspace.dependencies patch 1.0.87 -> 1.0.93

Release Notes

clap-rs/clap

v4.1.4

Compare Source

Fixes
  • (help) Respect disable_colored_help when using arg_required_else_help
Performance
  • Speed up compiling arg! macro

v4.1.3

Compare Source

Fixes
  • (error) Improve suggested flag/value/subcommand when two share a long preifx
  • (error) When suggesting one of several subcommands, use the plural subcommands, rather than subcommand

v4.1.2

Compare Source

Fixes
  • In documentation, refer to get_flag, rather than get_one::<bool>

v4.1.1

Compare Source

Fixes
  • (error) Small softening attempt for "unexpected argument" error

v4.1.0

Compare Source

Compatibility

MSRV changed to 1.64.0

For apps with custom --help and --version flags:

  • Descriptions for --help and --version changed

When apps have errors imitating clap's error style:

  • Error message style was changed, including
    • Moving away from "did you mean" to tips
    • Leading letter is lower case
    • "For more" added some punctuation
Features
  • ArgMatches::get_occurrences support for argument values to be grouped by their occurrence
Fixes
  • (derive) Allow upgrade_from when arguments / subcommands are explicitly marked as required
  • (help) Try be more clearer and succinct with --help and --version (also helps with overflow)
  • (error) Try to be more clearer and succinct with error messages
  • (error) Officially adopt an error style guide

v4.0.32

Compare Source

Fixes
  • (parser) When overriding required(true), consider args that conflict with its group

v4.0.31

Compare Source

Performance
  • Speed up parsing when a lot of different flags are present (100 unique flags)

v4.0.30

Compare Source

Fixes
  • (error) Improve error for args_conflicts_with_subcommand

v4.0.29

Compare Source

v4.0.28

Compare Source

Fixes
  • Fix wasm support which was broken in 4.0.27
rust-lang/git2-rs

v0.16.1

Compare Source

0.16.0...0.16.1

Changed

v0.16.0

Compare Source

0.15.0...0.16.0

Changed
  • Added ability to get the SSH host key and its type.
    This includes an API breaking change to the certificate_check callback.
    #​909
  • Updated to libgit2-sys 0.14.1+1.5.0
serde-rs/serde

v1.0.152

Compare Source

  • Documentation improvements

v1.0.151

Compare Source

  • Update serde::{ser,de}::StdError to re-export core::error::Error when serde is built with feature="std" off and feature="unstable" on (#​2344)

v1.0.150

Compare Source

  • Relax some trait bounds from the Serialize impl of HashMap and BTreeMap (#​2334)
  • Enable Serialize and Deserialize impls of std::sync::atomic types on more platforms (#​2337, thanks @​badboy)

v1.0.149

Compare Source

  • Relax some trait bounds from the Serialize impl of BinaryHeap, BTreeSet, and HashSet (#​2333, thanks @​jonasbb)

v1.0.148

Compare Source

  • Support remote derive for generic types that have private fields (#​2327)
serde-rs/json

v1.0.93

Compare Source

  • Support 128-bit integers in serde_json::to_value (#​982)

v1.0.92

Compare Source

  • Documentation improvements

v1.0.91

Compare Source

  • Opt out of -Zrustdoc-scrape-examples on docs.rs for now

v1.0.90

Compare Source

  • Documentation improvements

v1.0.89

Compare Source

  • Fix invalid JSON incorrectly accepted when a large number has no digits after decimal point (#​953)

v1.0.88

Compare Source

  • Optimize serde_json::Map's implementation of append and clone_from (#​952, thanks @​Lucretiel)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [clap](https://github.com/clap-rs/clap) | dependencies | minor | `4.0.27` -> `4.1.4` | | [git2](https://github.com/rust-lang/git2-rs) | workspace.dependencies | minor | `0.15.0` -> `0.16.1` | | [serde](https://serde.rs) ([source](https://github.com/serde-rs/serde)) | workspace.dependencies | patch | `1.0.147` -> `1.0.152` | | [serde_json](https://github.com/serde-rs/json) | workspace.dependencies | patch | `1.0.87` -> `1.0.93` | --- ### Release Notes <details> <summary>clap-rs/clap</summary> ### [`v4.1.4`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;414---2023-01-24) [Compare Source](https://github.com/clap-rs/clap/compare/v4.1.3...v4.1.4) ##### Fixes - *(help)* Respect `disable_colored_help` when using `arg_required_else_help` ##### Performance - Speed up compiling `arg!` macro ### [`v4.1.3`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;413---2023-01-23) [Compare Source](https://github.com/clap-rs/clap/compare/v4.1.2...v4.1.3) ##### Fixes - *(error)* Improve suggested flag/value/subcommand when two share a long preifx - *(error)* When suggesting one of several subcommands, use the plural `subcommands`, rather than `subcommand` ### [`v4.1.2`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;412---2023-01-23) [Compare Source](https://github.com/clap-rs/clap/compare/v4.1.1...v4.1.2) ##### Fixes - In documentation, refer to `get_flag`, rather than `get_one::<bool>` ### [`v4.1.1`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;411---2023-01-14) [Compare Source](https://github.com/clap-rs/clap/compare/v4.1.0...v4.1.1) ##### Fixes - *(error)* Small softening attempt for "unexpected argument" error ### [`v4.1.0`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;410---2023-01-13) [Compare Source](https://github.com/clap-rs/clap/compare/v4.0.32...v4.1.0) ##### Compatibility MSRV changed to 1.64.0 For apps with custom `--help` and `--version` flags: - Descriptions for `--help` and `--version` changed When apps have errors imitating clap's error style: - Error message style was changed, including - Moving away from "did you mean" to tips - Leading letter is lower case - "For more" added some punctuation ##### Features - `ArgMatches::get_occurrences` support for argument values to be grouped by their occurrence ##### Fixes - *(derive)* Allow `upgrade_from` when arguments / subcommands are explicitly marked as required - *(help)* Try be more clearer and succinct with `--help` and `--version` (also helps with overflow) - *(error)* Try to be more clearer and succinct with error messages - *(error)* Officially adopt [an error style guide](https://rustc-dev-guide.rust-lang.org/diagnostics.html#suggestion-style-guide) ### [`v4.0.32`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;4032---2022-12-22) [Compare Source](https://github.com/clap-rs/clap/compare/v4.0.31...v4.0.32) ##### Fixes - *(parser)* When overriding `required(true)`, consider args that conflict with its group ### [`v4.0.31`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;4031---2022-12-22) [Compare Source](https://github.com/clap-rs/clap/compare/v4.0.30...v4.0.31) ##### Performance - Speed up parsing when a lot of different flags are present (100 unique flags) ### [`v4.0.30`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;4030---2022-12-21) [Compare Source](https://github.com/clap-rs/clap/compare/v4.0.29...v4.0.30) ##### Fixes - *(error)* Improve error for `args_conflicts_with_subcommand` ### [`v4.0.29`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;4029---2022-11-29) [Compare Source](https://github.com/clap-rs/clap/compare/v4.0.28...v4.0.29) ### [`v4.0.28`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;4028---2022-11-29) [Compare Source](https://github.com/clap-rs/clap/compare/v4.0.27...v4.0.28) ##### Fixes - Fix wasm support which was broken in 4.0.27 </details> <details> <summary>rust-lang/git2-rs</summary> ### [`v0.16.1`](https://github.com/rust-lang/git2-rs/blob/HEAD/CHANGELOG.md#&#8203;0161---2023-01-20) [Compare Source](https://github.com/rust-lang/git2-rs/compare/0.16.0...0.16.1) [0.16.0...0.16.1](https://github.com/rust-lang/git2-rs/compare/0.16.0...0.16.1) ##### Changed - Updated to [libgit2-sys 0.14.2+1.5.1](libgit2-sys/CHANGELOG.md#&#8203;0142151---2023-01-20) ### [`v0.16.0`](https://github.com/rust-lang/git2-rs/blob/HEAD/CHANGELOG.md#&#8203;0160---2023-01-10) [Compare Source](https://github.com/rust-lang/git2-rs/compare/0.15.0...0.16.0) [0.15.0...0.16.0](https://github.com/rust-lang/git2-rs/compare/0.15.0...0.16.0) ##### Changed - Added ability to get the SSH host key and its type. This includes an API breaking change to the `certificate_check` callback. [#&#8203;909](https://github.com/rust-lang/git2-rs/pull/909) - Updated to [libgit2-sys 0.14.1+1.5.0](libgit2-sys/CHANGELOG.md#&#8203;0141150---2023-01-10) </details> <details> <summary>serde-rs/serde</summary> ### [`v1.0.152`](https://github.com/serde-rs/serde/releases/tag/v1.0.152) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.151...v1.0.152) - Documentation improvements ### [`v1.0.151`](https://github.com/serde-rs/serde/releases/tag/v1.0.151) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.150...v1.0.151) - Update `serde::`{`ser`,`de`}`::StdError` to re-export `core::error::Error` when serde is built with `feature="std"` **off** and `feature="unstable"` **on** ([#&#8203;2344](https://github.com/serde-rs/serde/issues/2344)) ### [`v1.0.150`](https://github.com/serde-rs/serde/releases/tag/v1.0.150) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.149...v1.0.150) - Relax some trait bounds from the `Serialize` impl of `HashMap` and `BTreeMap` ([#&#8203;2334](https://github.com/serde-rs/serde/issues/2334)) - Enable `Serialize` and `Deserialize` impls of `std::sync::atomic` types on more platforms ([#&#8203;2337](https://github.com/serde-rs/serde/issues/2337), thanks [@&#8203;badboy](https://github.com/badboy)) ### [`v1.0.149`](https://github.com/serde-rs/serde/releases/tag/v1.0.149) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.148...v1.0.149) - Relax some trait bounds from the `Serialize` impl of `BinaryHeap`, `BTreeSet`, and `HashSet` ([#&#8203;2333](https://github.com/serde-rs/serde/issues/2333), thanks [@&#8203;jonasbb](https://github.com/jonasbb)) ### [`v1.0.148`](https://github.com/serde-rs/serde/releases/tag/v1.0.148) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.147...v1.0.148) - Support `remote` derive for generic types that have private fields ([#&#8203;2327](https://github.com/serde-rs/serde/issues/2327)) </details> <details> <summary>serde-rs/json</summary> ### [`v1.0.93`](https://github.com/serde-rs/json/releases/tag/v1.0.93) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.92...v1.0.93) - Support 128-bit integers in serde_json::to_value ([#&#8203;982](https://github.com/serde-rs/json/issues/982)) ### [`v1.0.92`](https://github.com/serde-rs/json/releases/tag/v1.0.92) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.91...v1.0.92) - Documentation improvements ### [`v1.0.91`](https://github.com/serde-rs/json/releases/tag/v1.0.91) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.90...v1.0.91) - Opt out of `-Zrustdoc-scrape-examples` on docs.rs for now ### [`v1.0.90`](https://github.com/serde-rs/json/releases/tag/v1.0.90) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.89...v1.0.90) - Documentation improvements ### [`v1.0.89`](https://github.com/serde-rs/json/releases/tag/v1.0.89) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.88...v1.0.89) - Fix invalid JSON incorrectly accepted when a large number has no digits after decimal point ([#&#8203;953](https://github.com/serde-rs/json/issues/953)) ### [`v1.0.88`](https://github.com/serde-rs/json/releases/tag/v1.0.88) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.87...v1.0.88) - Optimize serde_json::Map's implementation of `append` and `clone_from` ([#&#8203;952](https://github.com/serde-rs/json/issues/952), thanks [@&#8203;Lucretiel](https://github.com/Lucretiel)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yMy4xIiwidXBkYXRlZEluVmVyIjoiMzQuMTI4LjEifQ==-->
kjuulh changed title from Update Rust crate clap to 4.0.29 to Update all dependencies 2022-12-09 17:44:28 +01:00
kjuulh force-pushed renovate/all from 6339a73b13 to a5f669ffd4 2022-12-09 17:44:29 +01:00 Compare
kjuulh force-pushed renovate/all from a5f669ffd4 to 835d6425e2 2022-12-12 01:51:30 +01:00 Compare
kjuulh force-pushed renovate/all from 835d6425e2 to 2fb2787ddf 2022-12-18 12:10:53 +01:00 Compare
kjuulh force-pushed renovate/all from 2fb2787ddf to ffe8fba8c2 2022-12-18 18:34:20 +01:00 Compare
kjuulh force-pushed renovate/all from ffe8fba8c2 to 5a0e9cd818 2022-12-22 11:41:32 +01:00 Compare
kjuulh force-pushed renovate/all from 5a0e9cd818 to 7b57222164 2022-12-22 20:03:49 +01:00 Compare
kjuulh force-pushed renovate/all from 7b57222164 to 61f4cd566a 2022-12-22 20:55:33 +01:00 Compare
kjuulh force-pushed renovate/all from 61f4cd566a to f8f90dfdc8 2022-12-26 18:54:19 +01:00 Compare
kjuulh force-pushed renovate/all from f8f90dfdc8 to 71cfa1395b 2023-01-10 17:29:23 +01:00 Compare
kjuulh force-pushed renovate/all from 71cfa1395b to 3305d08bc4 2023-01-13 16:50:07 +01:00 Compare
kjuulh force-pushed renovate/all from 3305d08bc4 to 7e04216601 2023-01-14 11:13:32 +01:00 Compare
kjuulh force-pushed renovate/all from 7e04216601 to 20d0b091d9 2023-01-21 00:27:01 +01:00 Compare
kjuulh force-pushed renovate/all from 20d0b091d9 to ad406efc27 2023-01-23 17:09:31 +01:00 Compare
kjuulh force-pushed renovate/all from ad406efc27 to 0fc4697cf3 2023-01-24 14:46:49 +01:00 Compare
kjuulh force-pushed renovate/all from 0fc4697cf3 to 54b53fa756 2023-01-25 00:19:23 +01:00 Compare
kjuulh force-pushed renovate/all from 54b53fa756 to 9bc3065376 2023-02-05 12:16:40 +01:00 Compare
kjuulh force-pushed renovate/all from 9bc3065376 to a793f07878 2023-02-08 22:04:03 +01:00 Compare
kjuulh merged commit a793f07878 into main 2023-02-08 22:25:36 +01:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/git-log#10
No description provided.