-
Notifications
You must be signed in to change notification settings - Fork 1
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
chore(deps): pin dependencies #17
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
renovate
bot
added
the
A-dependencies
Area: Pull requests that update a dependency file
label
Sep 17, 2023
simonsan
approved these changes
Sep 17, 2023
github-merge-queue bot
pushed a commit
that referenced
this pull request
Oct 1, 2024
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | | | lockFileMaintenance | All locks refreshed | | [env_logger](https://redirect.github.com/rust-cli/env_logger) | dependencies | minor | `0.10` -> `0.11` | | [gethostname](https://redirect.github.com/swsnr/gethostname.rs) | dependencies | minor | `0.4.3` -> `0.5.0` | | [rustic_core](https://rustic.cli.rs/) ([source](https://redirect.github.com/rustic-rs/rustic_core)) | dependencies | minor | `0.1` -> `0.4` | | [sailfish](https://redirect.github.com/rust-sailfish/sailfish) | dependencies | minor | `0.8` -> `0.9` | | [tungstenite](https://redirect.github.com/snapview/tungstenite-rs) | dependencies | minor | `0.21` -> `0.24` | 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Release Notes <details> <summary>rust-cli/env_logger (env_logger)</summary> ### [`v0.11.5`](https://redirect.github.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0115---2024-07-25) [Compare Source](https://redirect.github.com/rust-cli/env_logger/compare/v0.11.4...v0.11.5) ### [`v0.11.4`](https://redirect.github.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0114---2024-07-23) [Compare Source](https://redirect.github.com/rust-cli/env_logger/compare/v0.11.3...v0.11.4) ### [`v0.11.3`](https://redirect.github.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0113---2024-03-05) [Compare Source](https://redirect.github.com/rust-cli/env_logger/compare/v0.11.2...v0.11.3) ##### Features - Experimental support for key-value logging behind `unstable-kv` ### [`v0.11.2`](https://redirect.github.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0112---2024-02-13) [Compare Source](https://redirect.github.com/rust-cli/env_logger/compare/v0.11.1...v0.11.2) ### [`v0.11.1`](https://redirect.github.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0111---2024-01-27) [Compare Source](https://redirect.github.com/rust-cli/env_logger/compare/v0.11.0...v0.11.1) ##### Fixes - Allow styling with `Target::Pipe` ### [`v0.11.0`](https://redirect.github.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0110---2024-01-19) [Compare Source](https://redirect.github.com/rust-cli/env_logger/compare/v0.10.2...v0.11.0) ##### Migration Guide **env_logger::fmt::Style:** The bespoke styling API, behind `color`, was removed, in favor of accepting any ANSI styled string and adapting it to the target stream's capabilities. Possible styling libraries include: - [anstyle](https://docs.rs/anstyle) is a minimal, runtime string styling API and is re-exported as `env_logger::fmt::style` - [owo-colors](https://docs.rs/owo-colors) is a feature rich runtime string styling API - [color-print](https://docs.rs/color-print) for feature-rich compile-time styling API [custom_format.rs](https://docs.rs/env_logger/latest/src/custom_format/custom_format.rs.html) uses `anstyle` via [`Formatter::default_level_style`](https://docs.rs/env_logger/latest/env_logger/fmt/struct.Formatter.html#method.default_level_style) ##### Breaking Change - Removed bespoke styling API - `env_logger::fmt::Formatter::style` - `env_logger::fmt::Formatter::default_styled_level` - `env_logger::fmt::Style` - `env_logger::fmt::Color` - `env_logger::fmt::StyledValue` - Removed `env_logger::filter` in favor of `env_filter` ##### Compatibility MSRV changed to 1.71 ##### Features - Automatically adapt ANSI escape codes in logged messages to the current terminal's capabilities - Add support for `NO_COLOR` and `CLICOLOR_FORCE`, see https://bixense.com/clicolors/ ##### Fixes - Print colors when `is_test(true)` </details> <details> <summary>swsnr/gethostname.rs (gethostname)</summary> ### [`v0.5.0`](https://redirect.github.com/swsnr/gethostname.rs/blob/HEAD/CHANGELOG.md#050--2024-07-06) [Compare Source](https://redirect.github.com/swsnr/gethostname.rs/compare/v0.4.3...v0.5.0) ##### Changed - On Unix, use `rustix` to provide a simple implementation of `gethostname` without `unsafe` (see [GH-10] and [GH-17]). [GH-10]: https://redirect.github.com/swsnr/gethostname.rs/pull/10 [GH-17]: https://redirect.github.com/swsnr/gethostname.rs/pull/17 </details> <details> <summary>rustic-rs/rustic_core (rustic_core)</summary> ### [`v0.4.0`](https://redirect.github.com/rustic-rs/rustic_core/releases/tag/rustic_core-v0.4.0) [Compare Source](https://redirect.github.com/rustic-rs/rustic_core/compare/rustic_core-v0.3.1...rustic_core-v0.4.0) ##### Added - make IndexPack::pack_size() public - Add Repository::drop_index and ::drop_data_from_index ([#​166](https://redirect.github.com/rustic-rs/rustic_core/pull/166)) - *(commands)* Add option stdin_command to be used in CLI and config file ([#​266](https://redirect.github.com/rustic-rs/rustic_core/pull/266)) - \[**breaking**] Use CommandInput for commands ([#​269](https://redirect.github.com/rustic-rs/rustic_core/pull/269)) - Add CommandInput ([#​252](https://redirect.github.com/rustic-rs/rustic_core/pull/252)) ##### Fixed - de/serialize tags as DisplayFromStr ([#​270](https://redirect.github.com/rustic-rs/rustic_core/pull/270)) - \[**breaking**] use plural names for options ([#​267](https://redirect.github.com/rustic-rs/rustic_core/pull/267)) - fix clippy lint - *(test)* shorten snapshot names for windows environment - \[**breaking**] improve password-command error reporting ([#​265](https://redirect.github.com/rustic-rs/rustic_core/pull/265)) - properly finish progress bar in Repository::get_snapshot_group ([#​263](https://redirect.github.com/rustic-rs/rustic_core/pull/263)) ##### Other - remove readme versions in usage section for easier release due to release PR ([#​271](https://redirect.github.com/rustic-rs/rustic_core/pull/271)) - \[**breaking**] Use different Id types ([#​256](https://redirect.github.com/rustic-rs/rustic_core/pull/256)) - Use serde_with::skip_serializing_none instead of manual mapping ([#​251](https://redirect.github.com/rustic-rs/rustic_core/pull/251)) ### [`v0.3.1`](https://redirect.github.com/rustic-rs/rustic_core/releases/tag/rustic_core-v0.3.1) [Compare Source](https://redirect.github.com/rustic-rs/rustic_core/compare/rustic_core-v0.3.0...rustic_core-v0.3.1) ##### Added - Add autocompletion hints ([#​257](https://redirect.github.com/rustic-rs/rustic_core/pull/257)) ##### Fixed - don't give invalid password error for other keyfile errors ([#​247](https://redirect.github.com/rustic-rs/rustic_core/pull/247)) - adjust tests to new Rust version ([#​259](https://redirect.github.com/rustic-rs/rustic_core/pull/259)) - fix FromStr for SnapshotGroupCriterion ([#​254](https://redirect.github.com/rustic-rs/rustic_core/pull/254)) - make more Indexed traits public ([#​253](https://redirect.github.com/rustic-rs/rustic_core/pull/253)) - fix StringList::contains_all ([#​246](https://redirect.github.com/rustic-rs/rustic_core/pull/246)) - *(build)* unbreak building on OpenBSD ([#​245](https://redirect.github.com/rustic-rs/rustic_core/pull/245)) ### [`v0.3.0`](https://redirect.github.com/rustic-rs/rustic_core/releases/tag/rustic_core-v0.3.0): rustic_core v0.3.0 [Compare Source](https://redirect.github.com/rustic-rs/rustic_core/compare/rustic_core-v0.2.0...rustic_core-v0.3.0) ### Changelog #### [0.3.0](https://redirect.github.com/rustic-rs/rustic_core/compare/rustic_core-v0.2.0...rustic_core-v0.3.0) - 2024-08-18 ##### Added - *(forget)* \[**breaking**] Make keep-\* Options and add keep-none ([#​238](https://redirect.github.com/rustic-rs/rustic_core/pull/238)) - add search methods to Repository ([#​212](https://redirect.github.com/rustic-rs/rustic_core/pull/212)) - \[**breaking**] Allow specifying many options in config profile without array ([#​211](https://redirect.github.com/rustic-rs/rustic_core/pull/211)) - \[**breaking**] move clippy lints to cargo manifest and fix upcoming issues all over the workspace ([#​176](https://redirect.github.com/rustic-rs/rustic_core/pull/176)) - Add extra check before writing data ([#​154](https://redirect.github.com/rustic-rs/rustic_core/pull/154)) - Allow missing fields in snapshot summary - Hide plain text password from help text ([#​170](https://redirect.github.com/rustic-rs/rustic_core/pull/170)) - Add Repository::to_indexed_checked and ::to_index_ids_checked() ([#​168](https://redirect.github.com/rustic-rs/rustic_core/pull/168)) - *(prune)* Add more debug info to stats ([#​162](https://redirect.github.com/rustic-rs/rustic_core/pull/162)) - Add append-only repository mode ([#​164](https://redirect.github.com/rustic-rs/rustic_core/pull/164)) ##### Fixed - parse commands given by arg or env using shell_words ([#​240](https://redirect.github.com/rustic-rs/rustic_core/pull/240)) - Allow non-value/null xattr ([#​235](https://redirect.github.com/rustic-rs/rustic_core/pull/235)) - ensure Rust 1.76.0 compiles - backup file even if failed listing extended attributes ([#​233](https://redirect.github.com/rustic-rs/rustic_core/pull/233)) - Export types so the Repository type can be fully specified ([#​229](https://redirect.github.com/rustic-rs/rustic_core/pull/229)) - Always sort StringList ([#​226](https://redirect.github.com/rustic-rs/rustic_core/pull/226)) - *(commands)* Properly finish progress bars - *(commands)* \[**breaking**] Fix edge case for repair index ([#​219](https://redirect.github.com/rustic-rs/rustic_core/pull/219)) - clippy lints ([#​220](https://redirect.github.com/rustic-rs/rustic_core/pull/220)) - *(errors)* Show filenames in error message coming from ignore source ([#​215](https://redirect.github.com/rustic-rs/rustic_core/pull/215)) - *(paths)* Handle paths starting with "." correctly ([#​213](https://redirect.github.com/rustic-rs/rustic_core/pull/213)) - Add warning about unsorted files and sort where neccessary ([#​205](https://redirect.github.com/rustic-rs/rustic_core/pull/205)) - *(deps)* update rust crate thiserror to 1.0.58 ([#​192](https://redirect.github.com/rustic-rs/rustic_core/pull/192)) - *(deps)* update rust crate anyhow to 1.0.81 ([#​191](https://redirect.github.com/rustic-rs/rustic_core/pull/191)) - *(deps)* update rust crate serde_with to 3.7.0 ([#​189](https://redirect.github.com/rustic-rs/rustic_core/pull/189)) - *(rclone)* Use semver for version checking ([#​188](https://redirect.github.com/rustic-rs/rustic_core/pull/188)) - *(deps)* update rust crate strum to 0.26.2 ([#​187](https://redirect.github.com/rustic-rs/rustic_core/pull/187)) - *(deps)* update rust crate clap to 4.5.2 ([#​183](https://redirect.github.com/rustic-rs/rustic_core/pull/183)) - Set correct content for symlink with parent snapshot ([#​174](https://redirect.github.com/rustic-rs/rustic_core/pull/174)) - update dependency nix ([#​169](https://redirect.github.com/rustic-rs/rustic_core/pull/169)) - *(memory)* Limit memory usage for restore when having large pack files ([#​165](https://redirect.github.com/rustic-rs/rustic_core/pull/165)) - *(prune)* Correct number of repacks ([#​167](https://redirect.github.com/rustic-rs/rustic_core/pull/167)) - updated msrv and fix clippy lints ([#​160](https://redirect.github.com/rustic-rs/rustic_core/pull/160)) ##### Other - dependency updates - Ensure that MSRV 1.76 works - *(deps)* more version updates ([#​237](https://redirect.github.com/rustic-rs/rustic_core/pull/237)) - Update MSRV to 1.76.0 - *(deps)* Several version updates ([#​234](https://redirect.github.com/rustic-rs/rustic_core/pull/234)) - fix clippy lints ([#​236](https://redirect.github.com/rustic-rs/rustic_core/pull/236)) - Update MSRV (needed by opendal) - update sha2 dependency - add integration tests for `prune` and `ls` ([#​221](https://redirect.github.com/rustic-rs/rustic_core/pull/221)) - *(error)* Add error sources ([#​217](https://redirect.github.com/rustic-rs/rustic_core/pull/217)) - add more warnings - make SnapshotFile::cmp_group public ([#​210](https://redirect.github.com/rustic-rs/rustic_core/pull/210)) - Update MSRV to 1.73.0 - fix clippy lints - add backup integration tests using snapshots ([#​175](https://redirect.github.com/rustic-rs/rustic_core/pull/175)) - replace dep bitmask-enum by enumset ([#​173](https://redirect.github.com/rustic-rs/rustic_core/pull/173)) - *(deps)* update dependencies ([#​180](https://redirect.github.com/rustic-rs/rustic_core/pull/180)) - use release-plz action, remove public api fixtures incl. test and related ci and other release related ci - Add unit tests for extra verification ([#​172](https://redirect.github.com/rustic-rs/rustic_core/pull/172)) - rustic_config v0.1.0 - add rustic_testing to workspace crates ### [`v0.2.0`](https://redirect.github.com/rustic-rs/rustic_core/releases/tag/rustic_core-v0.2.0): rustic_core v0.2.0 [Compare Source](https://redirect.github.com/rustic-rs/rustic_core/compare/0.1.2...rustic_core-v0.2.0) #### rustic_core-v0.2.0 - 2024-02-01 ##### BREAKING CHANGES - The `Repository::ls()` method now returnes an iterator with yielding elements with restricted lifetime. You may need to change your code to handle this, see e.g. rustic-rs/rustic@5be54a1 - config changes from `[repository]` to `[backend]` [(check `config/` in rustic)](https://redirect.github.com/rustic-rs/rustic/tree/main/config) - for rustic core API: the way how to construct a repository changed, `struct RepositoryOptions` changed - Please check also our examples for changes and updated usage ##### Bug Fixes - Don't produce error when initializing a new hot/cold repository ([#​112](https://redirect.github.com/rustic-rs/rustic_core/issues/112)) - Add missing Serialize derive on KeepOptions - Repair index: Don't set "to-delete" flag for newly read pack files ([#​113](https://redirect.github.com/rustic-rs/rustic_core/issues/113)) - Don't abort on negative elapsed time in packer/indexer ([#​138](https://redirect.github.com/rustic-rs/rustic_core/issues/138)) - Remove unmaintained `actions-rs` ci actions - Clippy missing backticks for item ##### Documentation - Fix c\&p for SftpBackend - Update examples and other minor things - Update Changelog - Update intra doc links - Add features and fix intra-doc links ##### Features - Add `--custom-ignorefile` command line flag ([#​74](https://redirect.github.com/rustic-rs/rustic_core/issues/74)) - Add options rclone-command, use-password, rest-url to rclone backend ([#​139](https://redirect.github.com/rustic-rs/rustic_core/issues/139)) - Add vfs and webdav fs ([#​106](https://redirect.github.com/rustic-rs/rustic_core/issues/106)) ##### Generated - Updated Public API fixtures for linux - Updated Public API fixtures for macos - Updated Public API fixtures for windows ##### Miscellaneous Tasks - Run actions that need secrets.GITHUB_TOKEN only on rustic-rs org - Set MSRV to 1.70.0 - Update dtolnay/rust-toolchain - Update taiki-e/install-action - Update rustsec/audit-check - Activate automerge for github action digest update - Release - Add rustic_backend to release-pr workflow - Update dependencies - Fix directory for public api fixtures for core ##### Backend - Add sftp backend ([#​126](https://redirect.github.com/rustic-rs/rustic_core/issues/126)) ##### Backup - Add option to omit identical backups ([#​56](https://redirect.github.com/rustic-rs/rustic_core/issues/56)) - Run size scanning parallel to backup; add no-scan option ([#​97](https://redirect.github.com/rustic-rs/rustic_core/issues/97)) ##### Cache - Don't write warnings if cache files don't exist ([#​100](https://redirect.github.com/rustic-rs/rustic_core/issues/100)) ##### Copy - Add better progress ([#​94](https://redirect.github.com/rustic-rs/rustic_core/issues/94)) - Double-check for duplicate blobs ([#​148](https://redirect.github.com/rustic-rs/rustic_core/issues/148)) ##### Prune - Add option early_delete_index ([#​63](https://redirect.github.com/rustic-rs/rustic_core/issues/63)) - Change default of max-repack to 10% ([#​64](https://redirect.github.com/rustic-rs/rustic_core/issues/64)) ##### Updated Dependencies - Update rust crate itertools to 0.12.0 ([#​57](https://redirect.github.com/rustic-rs/rustic_core/issues/57)) - Update rust crate enum-map to 2.7.2 ([#​60](https://redirect.github.com/rustic-rs/rustic_core/issues/60)) - Update rust crate enum-map-derive to 0.16.0 ([#​62](https://redirect.github.com/rustic-rs/rustic_core/issues/62)) - Update serde monorepo to 1.0.193 ([#​66](https://redirect.github.com/rustic-rs/rustic_core/issues/66)) - Update rust crate url to 2.5.0 ([#​67](https://redirect.github.com/rustic-rs/rustic_core/issues/67)) - Update rust crate enum-map-derive to 0.17.0 ([#​69](https://redirect.github.com/rustic-rs/rustic_core/issues/69)) - Update rust crate enum-map to 2.7.3 ([#​68](https://redirect.github.com/rustic-rs/rustic_core/issues/68)) - Update rust crate binrw to 0.13.2 ([#​71](https://redirect.github.com/rustic-rs/rustic_core/issues/71)) - Update rust crate cachedir to 0.3.1 ([#​84](https://redirect.github.com/rustic-rs/rustic_core/issues/84)) - Update rust crate clap to 4.4.11 ([#​81](https://redirect.github.com/rustic-rs/rustic_core/issues/81)) - Update rust crate filetime to 0.2.23 ([#​87](https://redirect.github.com/rustic-rs/rustic_core/issues/87)) - Update rust crate serde-aux to 4.3.1 ([#​91](https://redirect.github.com/rustic-rs/rustic_core/issues/91)) - Update rust crate crossbeam-channel to 0.5.9 ([#​93](https://redirect.github.com/rustic-rs/rustic_core/issues/93)) - Update rust crate thiserror to 1.0.51 ([#​95](https://redirect.github.com/rustic-rs/rustic_core/issues/95)) - Update rust crate reqwest to 0.11.23 ([#​99](https://redirect.github.com/rustic-rs/rustic_core/issues/99)) - Update rust crate crossbeam-channel to 0.5.10 ([#​107](https://redirect.github.com/rustic-rs/rustic_core/issues/107)) - Update rust crate thiserror to 1.0.52 ([#​108](https://redirect.github.com/rustic-rs/rustic_core/issues/108)) - Update rust crate clap to 4.4.12 ([#​114](https://redirect.github.com/rustic-rs/rustic_core/issues/114)) - Update rust crate serde_json to 1.0.110 ([#​115](https://redirect.github.com/rustic-rs/rustic_core/issues/115)) - Update rust crate thiserror to 1.0.56 ([#​116](https://redirect.github.com/rustic-rs/rustic_core/issues/116)) - Update serde monorepo to 1.0.194 ([#​117](https://redirect.github.com/rustic-rs/rustic_core/issues/117)) - Update rust crate cached to 0.47.0 ([#​119](https://redirect.github.com/rustic-rs/rustic_core/issues/119)) - Update rust crate serde_json to 1.0.111 ([#​120](https://redirect.github.com/rustic-rs/rustic_core/issues/120)) - Update rust crate clap to 4.4.13 ([#​121](https://redirect.github.com/rustic-rs/rustic_core/issues/121)) - Update rust crate ignore to 0.4.22 ([#​123](https://redirect.github.com/rustic-rs/rustic_core/issues/123)) - Update serde monorepo to 1.0.195 ([#​124](https://redirect.github.com/rustic-rs/rustic_core/issues/124)) - Update rust crate serde-aux to 4.4.0 ([#​132](https://redirect.github.com/rustic-rs/rustic_core/issues/132)) - Update rust crate clap to 4.4.18 ([#​130](https://redirect.github.com/rustic-rs/rustic_core/issues/130)) - Update rust crate rayon to 1.8.1 ([#​131](https://redirect.github.com/rustic-rs/rustic_core/issues/131)) - Update rust crate opendal to 0.44.2 ([#​133](https://redirect.github.com/rustic-rs/rustic_core/issues/133)) - Update rust crate serde_with to 3.5.0 ([#​134](https://redirect.github.com/rustic-rs/rustic_core/issues/134)) </details> <details> <summary>snapview/tungstenite-rs (tungstenite)</summary> ### [`v0.24.0`](https://redirect.github.com/snapview/tungstenite-rs/blob/HEAD/CHANGELOG.md#0240) [Compare Source](https://redirect.github.com/snapview/tungstenite-rs/compare/v0.23.0...v0.24.0) - Raised MSRV to 1.63 to match `tokio-tungstenite`. - Connecting to WSS URL without TLS features specified results in a better error. - Handshake will now flush after completion to be safe (works better with buffered streams). ### [`v0.23.0`](https://redirect.github.com/snapview/tungstenite-rs/blob/HEAD/CHANGELOG.md#0230) [Compare Source](https://redirect.github.com/snapview/tungstenite-rs/compare/v0.22.0...v0.23.0) - Disable default features for `rustls` giving the user more flexibility. ### [`v0.22.0`](https://redirect.github.com/snapview/tungstenite-rs/blob/HEAD/CHANGELOG.md#0220) [Compare Source](https://redirect.github.com/snapview/tungstenite-rs/compare/v0.21.0...v0.22.0) - Make `url` optional. - Add a builder for convenient headers and subprotocols construction. - Update `rustls` dependency. </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Never, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/rustic-rs/rustic_scheduler). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiQS1kZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
a50c7d5
f43a0e5
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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 if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.