Skip to content

Commit 9186a4f

Browse files
committed
Update All dependencies (patch only) (#380)
[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [EmbarkStudios/cargo-deny-action](https://togithub.com/EmbarkStudios/cargo-deny-action) | action | patch | `v1.2.12` -> `v1.2.15` | | [actions/checkout](https://togithub.com/actions/checkout) | action | patch | `v3.0.0` -> `v3.0.2` | | [clap](https://togithub.com/clap-rs/clap) | dependencies | patch | `3.1.6` -> `3.1.12` | | [tracing](https://tokio.rs) ([source](https://togithub.com/tokio-rs/tracing)) | dependencies | patch | `0.1.32` -> `0.1.34` | | [tracing-opentelemetry](https://togithub.com/tokio-rs/tracing) | dependencies | patch | `0.17.1` -> `0.17.2` | | [tracing-subscriber](https://tokio.rs) ([source](https://togithub.com/tokio-rs/tracing)) | dependencies | patch | `0.3.9` -> `0.3.11` | --- ### Release Notes <details> <summary>EmbarkStudios/cargo-deny-action</summary> ### [`v1.2.15`](https://togithub.com/EmbarkStudios/cargo-deny-action/releases/v1.2.15) [Compare Source](https://togithub.com/EmbarkStudios/cargo-deny-action/compare/v1.2.14...v1.2.15) ##### Fixed - Accidentally change how arguments were forwarded to cargo-deny which broken more complicated invocations ### [`v1.2.14`](https://togithub.com/EmbarkStudios/cargo-deny-action/releases/v1.2.14) [Compare Source](https://togithub.com/EmbarkStudios/cargo-deny-action/compare/v1.2.13...v1.2.14) ##### Added - Added `git` to the image, resolving [#&#8203;40](https://togithub.com/EmbarkStudios/cargo-deny-action/issues/40) ### [`v1.2.13`](https://togithub.com/EmbarkStudios/cargo-deny-action/releases/v1.2.13) [Compare Source](https://togithub.com/EmbarkStudios/cargo-deny-action/compare/v1.2.12...v1.2.13) ##### Changed - Added the `rust-version` github actions variable, allowing you to specify a specific cargo version to use when running cargo-deny, including nightly, or other unstable versions. </details> <details> <summary>actions/checkout</summary> ### [`v3.0.2`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v302) [Compare Source](https://togithub.com/actions/checkout/compare/v3.0.1...v3.0.2) - [Add input `set-safe-directory`](https://togithub.com/actions/checkout/pull/770) ### [`v3.0.1`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v301) [Compare Source](https://togithub.com/actions/checkout/compare/v3.0.0...v3.0.1) - [Fixed an issue where checkout failed to run in container jobs due to the new git setting `safe.directory`](https://togithub.com/actions/checkout/pull/762) - [Bumped various npm package versions](https://togithub.com/actions/checkout/pull/744) </details> <details> <summary>clap-rs/clap</summary> ### [`v3.1.12`](https://togithub.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;3112---2022-04-22) [Compare Source](https://togithub.com/clap-rs/clap/compare/v3.1.11...v3.1.12) ##### Fixes - Regression in 3.1.11 where the (output) streams were crossed ### [`v3.1.11`](https://togithub.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;3111---2022-04-22) [Compare Source](https://togithub.com/clap-rs/clap/compare/v3.1.10...v3.1.11) ##### Fixes - Implied conflicts override `Arg::required`, making the behavior consistent with how we calculate conflicts for error reporting - Members of a mutually exclusive `ArgGroup` override `Arg::required`, making the behavior consistent with how we calculate conflicts for error reporting - `Arg::overrides_with` always override `Arg::required`, not just when the parser processes an override ### [`v3.1.10`](https://togithub.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;3110---2022-04-19) [Compare Source](https://togithub.com/clap-rs/clap/compare/v3.1.9...v3.1.10) ##### Features - Expose `Command::build` for custom help generation or other command introspection needs ### [`v3.1.9`](https://togithub.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;319---2022-04-15) [Compare Source](https://togithub.com/clap-rs/clap/compare/v3.1.8...v3.1.9) ##### Fixes - Pin the `clap_derive` version so a compatible version is always used with `clap` ### [`v3.1.8`](https://togithub.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;318---2022-04-01) [Compare Source](https://togithub.com/clap-rs/clap/compare/v3.1.7...v3.1.8) ##### Fixes - Add `Debug` impls to more types ### [`v3.1.7`](https://togithub.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;317---2022-03-31) [Compare Source](https://togithub.com/clap-rs/clap/compare/v3.1.6...v3.1.7) ##### Fixes - *(derive)* Abort, rather than ignore, when deriving `ArgEnum` with non-unit unskipped variants </details> <details> <summary>tokio-rs/tracing</summary> ### [`v0.1.34`](https://togithub.com/tokio-rs/tracing/releases/tracing-0.1.34) [Compare Source](https://togithub.com/tokio-rs/tracing/compare/tracing-0.1.33...tracing-0.1.34) This release includes bug fixes for the "log" support feature and for the use of both scoped and global default dispatchers in the same program. ##### Fixed - Failure to use the global default dispatcher when a thread sets a local default dispatcher before the global default is set ([#&#8203;2065]) - **log**: Compilation errors due to `async` block/fn futures becoming `!Send` when the "log" feature flag is enabled ([#&#8203;2073]) - Broken links in documentation ([#&#8203;2068]) Thanks to [@&#8203;ben0x539](https://togithub.com/ben0x539) for contributing to this release! [#&#8203;2065]: https://togithub.com/tokio-rs/tracing/pull/2065 [#&#8203;2073]: https://togithub.com/tokio-rs/tracing/pull/2073 [#&#8203;2068]: https://togithub.com/tokio-rs/tracing/pull/2068 ### [`v0.1.33`](https://togithub.com/tokio-rs/tracing/releases/tracing-0.1.33) [Compare Source](https://togithub.com/tokio-rs/tracing/compare/tracing-0.1.32...tracing-0.1.33) This release adds new `span_enabled!` and `event_enabled!` variants of the `enabled!` macro, for testing whether a subscriber would specifically enable a span or an event. ##### Added - `span_enabled!` and `event_enabled!` macros ([#&#8203;1900]) - Several documentation improvements ([#&#8203;2010], [#&#8203;2012]) ##### Fixed - Compilation warning when compiling for <=32-bit targets (including `wasm32`) ([#&#8203;2060]) Thanks to [@&#8203;guswynn](https://togithub.com/guswynn), [@&#8203;arifd](https://togithub.com/arifd), [@&#8203;hrxi](https://togithub.com/hrxi), [@&#8203;CAD97](https://togithub.com/CAD97), and [@&#8203;name1e5s](https://togithub.com/name1e5s) for contributing to this release! [#&#8203;1900]: https://togithub.com/tokio-rs/tracing/pull/1900 [#&#8203;2010]: https://togithub.com/tokio-rs/tracing/pull/2010 [#&#8203;2012]: https://togithub.com/tokio-rs/tracing/pull/2012 [#&#8203;2060]: https://togithub.com/tokio-rs/tracing/pull/2060 </details> --- ### Configuration 📅 **Schedule**: "after 5:00 and before 6:00 every weekday" in timezone Europe/Berlin. 🚦 **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, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/stackabletech/operator-rs).
1 parent b0d2424 commit 9186a4f

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
RUSTC_BOOTSTRAP: 1
3030
steps:
31-
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3.0.0
31+
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
3232
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # renovate: tag=v1.0.7
3333
with:
3434
profile: minimal
@@ -59,16 +59,16 @@ jobs:
5959
continue-on-error: ${{ matrix.checks == 'advisories' }}
6060

6161
steps:
62-
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3.0.0
63-
- uses: EmbarkStudios/cargo-deny-action@8acbae97b5d01b0481ae14cee8fcd8f5aa9e374d # tag=v1.2.12
62+
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
63+
- uses: EmbarkStudios/cargo-deny-action@ccfac4e084d1dedad50125be4550f87a21ba181e # tag=v1.2.15
6464
with:
6565
command: check ${{ matrix.checks }}
6666

6767
run_rustfmt:
6868
name: Run Rustfmt
6969
runs-on: ubuntu-latest
7070
steps:
71-
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3.0.0
71+
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
7272
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # renovate: tag=v1.0.7
7373
with:
7474
profile: minimal
@@ -84,7 +84,7 @@ jobs:
8484
name: Run Clippy
8585
runs-on: ubuntu-latest
8686
steps:
87-
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3.0.0
87+
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
8888
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # renovate: tag=v1.0.7
8989
with:
9090
profile: minimal
@@ -112,7 +112,7 @@ jobs:
112112
name: Run RustDoc
113113
runs-on: ubuntu-latest
114114
steps:
115-
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3.0.0
115+
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
116116
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # renovate: tag=v1.0.7
117117
with:
118118
profile: minimal
@@ -136,7 +136,7 @@ jobs:
136136
- run_rustdoc
137137
runs-on: ubuntu-latest
138138
steps:
139-
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3.0.0
139+
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
140140
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # renovate: tag=v1.0.7
141141
with:
142142
profile: minimal

.github/workflows/daily_security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
audit:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3.0.0
13+
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
1414
- uses: actions-rs/audit-check@35b7b53b1e25b55642157ac01b4adceb5b9ebef3 # renovate: tag=v1.2.0
1515
with:
1616
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/reviewdog.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,31 @@ jobs:
1313
actionlint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3.0.0
16+
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
1717
- uses: reviewdog/action-actionlint@fb012b9df4b74c9ca9c45515548098a6df8169d8 # tag=v1.21.0
1818
with:
1919
github_token: ${{ secrets.GITHUB_TOKEN }}
2020

2121
detect-secrets:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3.0.0
24+
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
2525
- uses: reviewdog/action-detect-secrets@bc7432bf205393ff7453416b3c93853773cee69d # tag=v0.8.1
2626
with:
2727
github_token: ${{ secrets.github_token }}
2828

2929
markdownlint:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3.0.0
32+
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
3333
- uses: reviewdog/action-markdownlint@80ee585e1abc8c910891110289a9abbb52bd35df # tag=v0.5
3434
with:
3535
github_token: ${{ secrets.GITHUB_TOKEN }}
3636

3737
yamllint:
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3.0.0
40+
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
4141
- uses: reviewdog/action-yamllint@c5a0c559f09938e902466526c71441f1de2e603b # tag=v1.6.0
4242
with:
4343
github_token: ${{ secrets.GITHUB_TOKEN }}

Cargo.toml

Lines changed: 4 additions & 4 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.19", default-features = false }
12-
clap = { version = "3.1.6", features = ["derive", "cargo", "env"] }
12+
clap = { version = "3.1.12", features = ["derive", "cargo", "env"] }
1313
const_format = "0.2.22"
1414
either = "1.6.1"
1515
futures = "0.3.21"
@@ -27,11 +27,11 @@ serde_yaml = "0.8.23"
2727
strum = { version = "0.24.0", features = ["derive"] }
2828
thiserror = "1.0.30"
2929
tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread"] }
30-
tracing = "0.1.32"
31-
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
30+
tracing = "0.1.34"
31+
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
3232
backoff = "0.4.0"
3333
derivative = "2.2.0"
34-
tracing-opentelemetry = "0.17.1"
34+
tracing-opentelemetry = "0.17.2"
3535
opentelemetry = { version = "0.17.0", features = ["rt-tokio"] }
3636
opentelemetry-jaeger = { version = "0.16.0", features = ["rt-tokio"] }
3737

0 commit comments

Comments
 (0)