Skip to content

Commit 1d91f48

Browse files
committed
Update All dependencies (patch only) (#515)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [clap](https://togithub.com/clap-rs/clap) | dependencies | patch | `4.0.26` -> `4.0.29` | | [reviewdog/action-actionlint](https://togithub.com/reviewdog/action-actionlint) | action | patch | `v1.34.1` -> `v1.34.2` | | [serde](https://serde.rs) ([source](https://togithub.com/serde-rs/serde)) | dependencies | patch | `1.0.147` -> `1.0.148` | | [syn](https://togithub.com/dtolnay/syn) | dependencies | patch | `1.0.103` -> `1.0.105` | --- ### Release Notes <details> <summary>clap-rs/clap</summary> ### [`v4.0.29`](https://togithub.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;4029---2022-11-29) [Compare Source](https://togithub.com/clap-rs/clap/compare/v4.0.28...v4.0.29) ### [`v4.0.28`](https://togithub.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;4028---2022-11-29) [Compare Source](https://togithub.com/clap-rs/clap/compare/v4.0.27...v4.0.28) ##### Fixes - Fix wasm support which was broken in 4.0.27 ### [`v4.0.27`](https://togithub.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;4027---2022-11-24) [Compare Source](https://togithub.com/clap-rs/clap/compare/v4.0.26...v4.0.27) ##### Features - Have `Arg::value_parser` accept `Vec<impl Into<PossibleValue>>` - Implement `Display` and `FromStr` for `ColorChoice` ##### Fixes - Remove soundness issue by switching from `atty` to `is-terminal` </details> <details> <summary>reviewdog/action-actionlint</summary> ### [`v1.34.2`](https://togithub.com/reviewdog/action-actionlint/releases/tag/v1.34.2) [Compare Source](https://togithub.com/reviewdog/action-actionlint/compare/v1.34.1...v1.34.2) #### What's Changed - use haya14busa/action-bumpr by [@&#8203;shogo82148](https://togithub.com/shogo82148) in [https://github.com/reviewdog/action-actionlint/pull/93](https://togithub.com/reviewdog/action-actionlint/pull/93) - show debug logs if debug mode is enabled by [@&#8203;shogo82148](https://togithub.com/shogo82148) in [https://github.com/reviewdog/action-actionlint/pull/82](https://togithub.com/reviewdog/action-actionlint/pull/82) **Full Changelog**: reviewdog/action-actionlint@v1.34.1...v1.34.2 </details> <details> <summary>serde-rs/serde</summary> ### [`v1.0.148`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.148) [Compare Source](https://togithub.com/serde-rs/serde/compare/v1.0.147...v1.0.148) - Support `remote` derive for generic types that have private fields ([#&#8203;2327](https://togithub.com/serde-rs/serde/issues/2327)) </details> <details> <summary>dtolnay/syn</summary> ### [`v1.0.105`](https://togithub.com/dtolnay/syn/releases/tag/1.0.105) [Compare Source](https://togithub.com/dtolnay/syn/compare/1.0.104...1.0.105) - Improve parse errors related to `dyn` and `impl` type syntax ([#&#8203;1245](https://togithub.com/dtolnay/syn/issues/1245)) ### [`v1.0.104`](https://togithub.com/dtolnay/syn/releases/tag/1.0.104) [Compare Source](https://togithub.com/dtolnay/syn/compare/1.0.103...1.0.104) - Add `PathArguments::is_none()` </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 5:00 and before 6:00 every weekday" in timezone Europe/Berlin, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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://togithub.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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/stackabletech/operator-rs). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC40OC4xIiwidXBkYXRlZEluVmVyIjoiMzQuNDguMSJ9-->
1 parent 6629570 commit 1d91f48

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/reviewdog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
17-
- uses: reviewdog/action-actionlint@5c714fa8ca7b5ea8d929d273ed5bb2e3a4a7c019 # v1.34.1
17+
- uses: reviewdog/action-actionlint@4decc2a20473dcd14c8c3dc8a27da19d95bb9f59 # v1.34.2
1818
with:
1919
github_token: ${{ secrets.GITHUB_TOKEN }}
2020

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository = "https://github.com/stackabletech/operator-rs"
99

1010
[dependencies]
1111
chrono = { version = "0.4.23", default-features = false }
12-
clap = { version = "4.0.26", features = ["derive", "cargo", "env"] }
12+
clap = { version = "4.0.29", features = ["derive", "cargo", "env"] }
1313
const_format = "0.2.30"
1414
either = "1.8.0"
1515
futures = "0.3.25"
@@ -21,7 +21,7 @@ product-config = { git = "https://github.com/stackabletech/product-config.git",
2121
rand = "0.8.5"
2222
regex = "1.7.0"
2323
schemars = "0.8.11"
24-
serde = { version = "1.0.147", features = ["derive"] }
24+
serde = { version = "1.0.148", features = ["derive"] }
2525
serde_json = "1.0.89"
2626
serde_yaml = "0.9.14"
2727
strum = { version = "0.24.1", features = ["derive"] }

stackable-operator-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ proc-macro = true
1414
darling = "0.14.2"
1515
proc-macro2 = "1.0.47"
1616
quote = "1.0.21"
17-
syn = "1.0.103"
17+
syn = "1.0.105"
1818

1919
[dev-dependencies]
2020
stackable-operator = { path = ".." }

0 commit comments

Comments
 (0)