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

chore(deps): pin dependencies #17

Merged
merged 1 commit into from
Sep 17, 2023
Merged

chore(deps): pin dependencies #17

merged 1 commit into from
Sep 17, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 17, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
EmbarkStudios/cargo-deny-action action pinDigest -> a50c7d5
actions/checkout action pinDigest -> 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.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the A-dependencies Area: Pull requests that update a dependency file label Sep 17, 2023
@simonsan simonsan added this pull request to the merge queue Sep 17, 2023
Merged via the queue into main with commit c090b6c Sep 17, 2023
18 checks passed
@simonsan simonsan deleted the renovate/pin-dependencies branch September 17, 2023 02:00
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
([#&#8203;166](https://redirect.github.com/rustic-rs/rustic_core/pull/166))
- *(commands)* Add option stdin_command to be used in CLI and config
file
([#&#8203;266](https://redirect.github.com/rustic-rs/rustic_core/pull/266))
- \[**breaking**] Use CommandInput for commands
([#&#8203;269](https://redirect.github.com/rustic-rs/rustic_core/pull/269))
- Add CommandInput
([#&#8203;252](https://redirect.github.com/rustic-rs/rustic_core/pull/252))

##### Fixed

- de/serialize tags as DisplayFromStr
([#&#8203;270](https://redirect.github.com/rustic-rs/rustic_core/pull/270))
- \[**breaking**] use plural names for options
([#&#8203;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
([#&#8203;265](https://redirect.github.com/rustic-rs/rustic_core/pull/265))
- properly finish progress bar in Repository::get_snapshot_group
([#&#8203;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
([#&#8203;271](https://redirect.github.com/rustic-rs/rustic_core/pull/271))
- \[**breaking**] Use different Id types
([#&#8203;256](https://redirect.github.com/rustic-rs/rustic_core/pull/256))
- Use serde_with::skip_serializing_none instead of manual mapping
([#&#8203;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
([#&#8203;257](https://redirect.github.com/rustic-rs/rustic_core/pull/257))

##### Fixed

- don't give invalid password error for other keyfile errors
([#&#8203;247](https://redirect.github.com/rustic-rs/rustic_core/pull/247))
- adjust tests to new Rust version
([#&#8203;259](https://redirect.github.com/rustic-rs/rustic_core/pull/259))
- fix FromStr for SnapshotGroupCriterion
([#&#8203;254](https://redirect.github.com/rustic-rs/rustic_core/pull/254))
- make more Indexed traits public
([#&#8203;253](https://redirect.github.com/rustic-rs/rustic_core/pull/253))
- fix StringList::contains_all
([#&#8203;246](https://redirect.github.com/rustic-rs/rustic_core/pull/246))
- *(build)* unbreak building on OpenBSD
([#&#8203;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
([#&#8203;238](https://redirect.github.com/rustic-rs/rustic_core/pull/238))
- add search methods to Repository
([#&#8203;212](https://redirect.github.com/rustic-rs/rustic_core/pull/212))
- \[**breaking**] Allow specifying many options in config profile
without array
([#&#8203;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
([#&#8203;176](https://redirect.github.com/rustic-rs/rustic_core/pull/176))
- Add extra check before writing data
([#&#8203;154](https://redirect.github.com/rustic-rs/rustic_core/pull/154))
-   Allow missing fields in snapshot summary
- Hide plain text password from help text
([#&#8203;170](https://redirect.github.com/rustic-rs/rustic_core/pull/170))
- Add Repository::to_indexed_checked and ::to_index_ids_checked()
([#&#8203;168](https://redirect.github.com/rustic-rs/rustic_core/pull/168))
- *(prune)* Add more debug info to stats
([#&#8203;162](https://redirect.github.com/rustic-rs/rustic_core/pull/162))
- Add append-only repository mode
([#&#8203;164](https://redirect.github.com/rustic-rs/rustic_core/pull/164))

##### Fixed

- parse commands given by arg or env using shell_words
([#&#8203;240](https://redirect.github.com/rustic-rs/rustic_core/pull/240))
- Allow non-value/null xattr
([#&#8203;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
([#&#8203;233](https://redirect.github.com/rustic-rs/rustic_core/pull/233))
- Export types so the Repository type can be fully specified
([#&#8203;229](https://redirect.github.com/rustic-rs/rustic_core/pull/229))
- Always sort StringList
([#&#8203;226](https://redirect.github.com/rustic-rs/rustic_core/pull/226))
-   *(commands)* Properly finish progress bars
- *(commands)* \[**breaking**] Fix edge case for repair index
([#&#8203;219](https://redirect.github.com/rustic-rs/rustic_core/pull/219))
- clippy lints
([#&#8203;220](https://redirect.github.com/rustic-rs/rustic_core/pull/220))
- *(errors)* Show filenames in error message coming from ignore source
([#&#8203;215](https://redirect.github.com/rustic-rs/rustic_core/pull/215))
- *(paths)* Handle paths starting with "." correctly
([#&#8203;213](https://redirect.github.com/rustic-rs/rustic_core/pull/213))
- Add warning about unsorted files and sort where neccessary
([#&#8203;205](https://redirect.github.com/rustic-rs/rustic_core/pull/205))
- *(deps)* update rust crate thiserror to 1.0.58
([#&#8203;192](https://redirect.github.com/rustic-rs/rustic_core/pull/192))
- *(deps)* update rust crate anyhow to 1.0.81
([#&#8203;191](https://redirect.github.com/rustic-rs/rustic_core/pull/191))
- *(deps)* update rust crate serde_with to 3.7.0
([#&#8203;189](https://redirect.github.com/rustic-rs/rustic_core/pull/189))
- *(rclone)* Use semver for version checking
([#&#8203;188](https://redirect.github.com/rustic-rs/rustic_core/pull/188))
- *(deps)* update rust crate strum to 0.26.2
([#&#8203;187](https://redirect.github.com/rustic-rs/rustic_core/pull/187))
- *(deps)* update rust crate clap to 4.5.2
([#&#8203;183](https://redirect.github.com/rustic-rs/rustic_core/pull/183))
- Set correct content for symlink with parent snapshot
([#&#8203;174](https://redirect.github.com/rustic-rs/rustic_core/pull/174))
- update dependency nix
([#&#8203;169](https://redirect.github.com/rustic-rs/rustic_core/pull/169))
- *(memory)* Limit memory usage for restore when having large pack files
([#&#8203;165](https://redirect.github.com/rustic-rs/rustic_core/pull/165))
- *(prune)* Correct number of repacks
([#&#8203;167](https://redirect.github.com/rustic-rs/rustic_core/pull/167))
- updated msrv and fix clippy lints
([#&#8203;160](https://redirect.github.com/rustic-rs/rustic_core/pull/160))

##### Other

-   dependency updates
-   Ensure that MSRV 1.76 works
- *(deps)* more version updates
([#&#8203;237](https://redirect.github.com/rustic-rs/rustic_core/pull/237))
-   Update MSRV to 1.76.0
- *(deps)* Several version updates
([#&#8203;234](https://redirect.github.com/rustic-rs/rustic_core/pull/234))
- fix clippy lints
([#&#8203;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`
([#&#8203;221](https://redirect.github.com/rustic-rs/rustic_core/pull/221))
- *(error)* Add error sources
([#&#8203;217](https://redirect.github.com/rustic-rs/rustic_core/pull/217))
-   add more warnings
- make SnapshotFile::cmp_group public
([#&#8203;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
([#&#8203;175](https://redirect.github.com/rustic-rs/rustic_core/pull/175))
- replace dep bitmask-enum by enumset
([#&#8203;173](https://redirect.github.com/rustic-rs/rustic_core/pull/173))
- *(deps)* update dependencies
([#&#8203;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
([#&#8203;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
([#&#8203;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
([#&#8203;113](https://redirect.github.com/rustic-rs/rustic_core/issues/113))
- Don't abort on negative elapsed time in packer/indexer
([#&#8203;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
([#&#8203;74](https://redirect.github.com/rustic-rs/rustic_core/issues/74))
- Add options rclone-command, use-password, rest-url to rclone backend
([#&#8203;139](https://redirect.github.com/rustic-rs/rustic_core/issues/139))
- Add vfs and webdav fs
([#&#8203;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
([#&#8203;126](https://redirect.github.com/rustic-rs/rustic_core/issues/126))

##### Backup

- Add option to omit identical backups
([#&#8203;56](https://redirect.github.com/rustic-rs/rustic_core/issues/56))
- Run size scanning parallel to backup; add no-scan option
([#&#8203;97](https://redirect.github.com/rustic-rs/rustic_core/issues/97))

##### Cache

- Don't write warnings if cache files don't exist
([#&#8203;100](https://redirect.github.com/rustic-rs/rustic_core/issues/100))

##### Copy

- Add better progress
([#&#8203;94](https://redirect.github.com/rustic-rs/rustic_core/issues/94))
- Double-check for duplicate blobs
([#&#8203;148](https://redirect.github.com/rustic-rs/rustic_core/issues/148))

##### Prune

- Add option early_delete_index
([#&#8203;63](https://redirect.github.com/rustic-rs/rustic_core/issues/63))
- Change default of max-repack to 10%
([#&#8203;64](https://redirect.github.com/rustic-rs/rustic_core/issues/64))

##### Updated Dependencies

- Update rust crate itertools to 0.12.0
([#&#8203;57](https://redirect.github.com/rustic-rs/rustic_core/issues/57))
- Update rust crate enum-map to 2.7.2
([#&#8203;60](https://redirect.github.com/rustic-rs/rustic_core/issues/60))
- Update rust crate enum-map-derive to 0.16.0
([#&#8203;62](https://redirect.github.com/rustic-rs/rustic_core/issues/62))
- Update serde monorepo to 1.0.193
([#&#8203;66](https://redirect.github.com/rustic-rs/rustic_core/issues/66))
- Update rust crate url to 2.5.0
([#&#8203;67](https://redirect.github.com/rustic-rs/rustic_core/issues/67))
- Update rust crate enum-map-derive to 0.17.0
([#&#8203;69](https://redirect.github.com/rustic-rs/rustic_core/issues/69))
- Update rust crate enum-map to 2.7.3
([#&#8203;68](https://redirect.github.com/rustic-rs/rustic_core/issues/68))
- Update rust crate binrw to 0.13.2
([#&#8203;71](https://redirect.github.com/rustic-rs/rustic_core/issues/71))
- Update rust crate cachedir to 0.3.1
([#&#8203;84](https://redirect.github.com/rustic-rs/rustic_core/issues/84))
- Update rust crate clap to 4.4.11
([#&#8203;81](https://redirect.github.com/rustic-rs/rustic_core/issues/81))
- Update rust crate filetime to 0.2.23
([#&#8203;87](https://redirect.github.com/rustic-rs/rustic_core/issues/87))
- Update rust crate serde-aux to 4.3.1
([#&#8203;91](https://redirect.github.com/rustic-rs/rustic_core/issues/91))
- Update rust crate crossbeam-channel to 0.5.9
([#&#8203;93](https://redirect.github.com/rustic-rs/rustic_core/issues/93))
- Update rust crate thiserror to 1.0.51
([#&#8203;95](https://redirect.github.com/rustic-rs/rustic_core/issues/95))
- Update rust crate reqwest to 0.11.23
([#&#8203;99](https://redirect.github.com/rustic-rs/rustic_core/issues/99))
- Update rust crate crossbeam-channel to 0.5.10
([#&#8203;107](https://redirect.github.com/rustic-rs/rustic_core/issues/107))
- Update rust crate thiserror to 1.0.52
([#&#8203;108](https://redirect.github.com/rustic-rs/rustic_core/issues/108))
- Update rust crate clap to 4.4.12
([#&#8203;114](https://redirect.github.com/rustic-rs/rustic_core/issues/114))
- Update rust crate serde_json to 1.0.110
([#&#8203;115](https://redirect.github.com/rustic-rs/rustic_core/issues/115))
- Update rust crate thiserror to 1.0.56
([#&#8203;116](https://redirect.github.com/rustic-rs/rustic_core/issues/116))
- Update serde monorepo to 1.0.194
([#&#8203;117](https://redirect.github.com/rustic-rs/rustic_core/issues/117))
- Update rust crate cached to 0.47.0
([#&#8203;119](https://redirect.github.com/rustic-rs/rustic_core/issues/119))
- Update rust crate serde_json to 1.0.111
([#&#8203;120](https://redirect.github.com/rustic-rs/rustic_core/issues/120))
- Update rust crate clap to 4.4.13
([#&#8203;121](https://redirect.github.com/rustic-rs/rustic_core/issues/121))
- Update rust crate ignore to 0.4.22
([#&#8203;123](https://redirect.github.com/rustic-rs/rustic_core/issues/123))
- Update serde monorepo to 1.0.195
([#&#8203;124](https://redirect.github.com/rustic-rs/rustic_core/issues/124))
- Update rust crate serde-aux to 4.4.0
([#&#8203;132](https://redirect.github.com/rustic-rs/rustic_core/issues/132))
- Update rust crate clap to 4.4.18
([#&#8203;130](https://redirect.github.com/rustic-rs/rustic_core/issues/130))
- Update rust crate rayon to 1.8.1
([#&#8203;131](https://redirect.github.com/rustic-rs/rustic_core/issues/131))
- Update rust crate opendal to 0.44.2
([#&#8203;133](https://redirect.github.com/rustic-rs/rustic_core/issues/133))
- Update rust crate serde_with to 3.5.0
([#&#8203;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>
@rustic-release-plz rustic-release-plz bot mentioned this pull request Nov 9, 2024
github-merge-queue bot pushed a commit that referenced this pull request Nov 9, 2024
## 🤖 New release
* `rustic_scheduler`: 0.1.0 -> 0.1.1 (✓ API compatible changes)

<details><summary><i><b>Changelog</b></i></summary><p>

<blockquote>

##
[0.1.1](v0.1.0...v0.1.1)
- 2024-11-09

### Fixed

- *(docs)* update readme
- *(docs)* update readme
- *(deps)* build sha2-asm on windows-gnu
- *(deps)* build sha2-asm on windows-gnu
- *(deps)* explicitly pull in sha2 asm extensions for non-windows
targets
- *(deps)* update rust crate chrono to v0.4.38
([#46](#46))
- *(deps)* update rust crate axum to v0.7.6
([#45](#45))
- *(deps)* update rust crate anyhow to v1.0.89
([#44](#44))
- typo in readme
([#37](#37))
- *(deps)* update rust crate serde_derive to 1.0.194
([#33](#33))
- *(deps)* update rust crate tungstenite to 0.21
([#34](#34))
- *(deps)* update rust crate axum to 0.7.3
([#29](#29))
- *(deps)* update rust crate url to 2.5
([#28](#28))
- *(deps)* update rust crate serde_derive to 1.0.193
([#27](#27))
- *(ci)* remove unmaintained `actions-rs` ci actions
- *(deps)* update rust crate toml to 0.8.8
([#25](#25))
- *(deps)* update rust crate serde_derive to 1.0.192
([#24](#24))
- *(deps)* update rust crate clap_derive to 4.4.7
([#23](#23))
- Remove redundant clone()
- *(deps)* update rust crate chrono to 0.4.31
([#16](#16))
- *(deps)* update rust crate toml to 0.8.0
([#12](#12))
- cloning
- build and clippy lints

### Other

- don't build on netbsd again, still fails due to `cannot find
-lexecinfo`
- update readme
- *(deps)* update deps
([#60](#60))
- try fix build problems
([#58](#58))
- *(deps)* update actions
([#59](#59))
- use runners according to available images and target triple
([#57](#57))
- update dprint config
([#56](#56))
- add triage label to new issues only if no label has been set when
creating it
([#55](#55))
- *(deps)* lock file maintenance rust dependencies
([#54](#54))
- ignore CHANGELOG.md in dprint formatting
- Update renovate.json
- use release-plz
- *(deps)* upgrade deps
- *(deps)* lockfile maintenance
- update deny.toml
- update deny.toml
- Revert "chore(deps): lock file maintenance"
([#49](#49))
- *(deps)* lock file maintenance
([#48](#48))
- *(deps)* update embarkstudios/cargo-deny-action action to v2
([#47](#47))
- *(deps)* update taiki-e/install-action digest to 18ab6bd
([#43](#43))
- *(deps)* update swatinem/rust-cache digest to 23bce25
([#42](#42))
- *(deps)* update obi1kenobi/cargo-semver-checks-action digest to
7272cc2 ([#41](#41))
- *(deps)* update embarkstudios/cargo-deny-action digest to 3f4a782
([#40](#40))
- *(deps)* update actions/download-artifact digest to fa0a91b
([#39](#39))
- *(deps)* update actions/checkout digest to 692973e
([#38](#38))
- *(deps)* lock file maintenance
([#35](#35))
- break old ci jobs when new commits are pushed so we don't fill up the
queue
- add project-cache-key for better caching in ci
- *(deps)* update taiki-e/install-action digest to 56ab793
([#32](#32))
- *(deps)* update taiki-e/install-action digest to a9ad291
([#31](#31))
- *(deps)* update actions/download-artifact action to v4
([#30](#30))
- dprint fmt
- automerge lockfile maintenance
- activate automerge for github action digest update
- activate automerge for github action digest update
- *(fmt)* upgrade dprint config
- *(deps)* update taiki-e/install-action digest to d211c4b
([#26](#26))
- netbsd nightly builds fail due to missing execinfo, so we don't build
on it for now
- update rustsec/audit-check
- update taiki-e/install-action
- update dtolnay/rust-toolchain
- Run actions that need secrets.GITHUB_TOKEN only on rustic-rs org
- lockfile maintenance
- *(deps)* update embarkstudios/cargo-deny-action digest to 1e59595
([#22](#22))
- *(deps)* update taiki-e/install-action digest to 4d85042
([#21](#21))
- *(deps)* update actions/checkout digest to b4ffde6
([#20](#20))
- add results to ci
- update dprint plugins
- compile dependencies with optimizations in dev mode
- Add client/ site for client statistics
([#19](#19))
- Update README.md
- *(readme)* remove note about rustic_core not being published
- add x86_64-pc-windows-gnu target
- *(deps)* upgrade deps
- dprint fmt
- update cross ci
- *(cargo)* remove special os-dependent linker/compiler settings
- *(manifest)* use rustic_core from crates.io
- sign binaries using rsign2 as well
- add contributing
- fix list indent
- rewrite contributing remark
- relink to new image location
- *(deps)* update dependencies
- *(deps)* update actions/checkout action to v4
([#18](#18))
- *(deps)* pin dependencies
([#17](#17))
- fmt
- add cargo deny
- *(deps)* update taiki-e/install-action digest to de0d48b
([#15](#15))
- add merge queue checks
- *(deps)* update actions/checkout action to v4
([#13](#13))
- *(deps)* update taiki-e/install-action action to v2
([#14](#14))
- *(deps)* update swatinem/rust-cache digest to a95ba19
([#11](#11))
- *(deps)* pin dependencies
([#10](#10))
- run workflow on renovate branches
- update changelog
- run release checks also on release subbranches
- add triaging of issues
- run git-cliff with latest tag during release
- add dev tooling
- add changelog generation
- fix woggly github action comparison
- use bash substring comparison to determine package name from branch
- set right package
- fix github refs
- decrease build times on windows
- fix workflow name for create-binary-artifact action, and check
breaking changes package dependent
- *(changelog)* add generated changelog
- add release CD
- fix comment being wrongly attributed
- update ci to reflect changes and optimizations from rustic_server
- remove lint from ci workflow and keep it separate, replace underscore
in workflow file
- add comment about shallow clone
- declutter and reorganize
- add signature and shallow clones to nightly
- update header
- add link to nightly downloads in documentation
- *(readme)* add link to binaries and badge
- nightly builds
- refactor to library and client + server binaries
- fmt
- fix binary builds
- *(readme)* rewrite comment for rustic_core, uses git dependency now
- *(deps)* use workspace dependency on git repo
- add rustic to artifact build
- pull in rustic manually for now
- *(deps)* update dependencies
- add licenses, fix manifest
- fmt
- add ci
- Update rustic_scheduler.toml
- Update rustic_scheduler.toml
- initial commit

### Bug Fixes

- Build and clippy lints
- Cloning

### Documentation

- Add licenses, fix manifest
- Rewrite comment for rustic_core, uses git dependency now
- Add link to binaries and badge
- Add link to nightly downloads in documentation
- Add generated changelog

### Miscellaneous Tasks

- Add ci
- Pull in rustic manually for now
- Add rustic to artifact build
- Fix binary builds
- Nightly builds
- Update header
- Add signature and shallow clones to nightly
- Declutter and reorganize
- Add comment about shallow clone
- Remove lint from ci workflow and keep it separate, replace underscore
in
  workflow file
- Update ci to reflect changes and optimizations from rustic_server
- Fix comment being wrongly attributed
- Add release CD
- Fix workflow name for create-binary-artifact action, and check
breaking
  changes package dependent
- Decrease build times on windows
- Fix github refs
- Set right package
- Use bash substring comparison to determine package name from branch
- Fix woggly github action comparison
- Add changelog generation
- Add dev tooling
- Run git-cliff with latest tag during release
- Add triaging of issues
- Run release checks also on release subbranches

### Refactor

- Refactor to library and client + server binaries

<!-- generated by git-cliff -->
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).

Co-authored-by: rustic-release-plz[bot] <182542030+rustic-release-plz[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-dependencies Area: Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant