chore(deps): update rust crate secrecy to 0.10 - autoclosed #164

Closed
renovate wants to merge 1 commit from renovate/secrecy-0.x into dev
Collaborator

This PR contains the following updates:

Package Type Update Change
secrecy (source) workspace.dependencies minor 0.8 -> 0.10

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

iqlusioninc/crates (secrecy)

v0.10.3

Added
  • Make integer primitive SecretSlices cloneable (#​1236)
  • Impl From<&str> for SecretString (#​1237)

v0.10.2

Added
  • Impl Deserialize for SecretString (#​1220)

v0.10.1

Added
  • Impl Clone for SecretString (#​1217)

v0.10.0

This release represents a significant redesign of the secrecy crate. We will update this section
with upgrade instructions based on feedback from people upgrading, as it's been a long time since
the previous release, and this release includes a number of breaking changes.

The most notable change is the generic Secret<T> type has been removed: instead use SecretBox<T>
which stores secrets on the heap instead of the stack. Many of the other changes fall out of this
change and things which were previously type aliases of Secret<T> are now type aliases of
SecretBox<T>.

This unfortunately means this crate no longer has support for "heapless" no_std targets. We don't
have a good solution for these targets, which was a motivation for this change in the first place.

Added
Changed
  • Rust 2021 edition upgrade (#​889)
  • MSRV 1.60 (#​1105)
  • SecretBox<T> is now a newtype rather than a type alias of `Secret<Box> (#​1140)
  • SecretString is now a type alias for SecretBox<str> (#​1213)
  • Disable serde default features (#​1194)
Removed
  • alloc feature: now a hard dependency (#​1140)
  • bytes crate integration: no replacement (#​1140)
  • DebugSecret trait: no replacement (#​1140)
  • Secret<T>: use SecretBox<T> instead (#​1140)

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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 | |---|---|---|---| | [secrecy](https://github.com/iqlusioninc/crates) ([source](https://github.com/iqlusioninc/crates/tree/HEAD/secrecy)) | workspace.dependencies | minor | `0.8` -> `0.10` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>iqlusioninc/crates (secrecy)</summary> ### [`v0.10.3`](https://github.com/iqlusioninc/crates/blob/HEAD/secrecy/CHANGELOG.md#0103-2024-10-09) ##### Added - Make integer primitive `SecretSlice`s cloneable ([#&#8203;1236]) - Impl `From<&str>` for `SecretString` ([#&#8203;1237]) [#&#8203;1236]: https://github.com/iqlusioninc/crates/pull/1236 [#&#8203;1237]: https://github.com/iqlusioninc/crates/pull/1237 ### [`v0.10.2`](https://github.com/iqlusioninc/crates/blob/HEAD/secrecy/CHANGELOG.md#0102-2024-09-20) ##### Added - Impl `Deserialize` for `SecretString` ([#&#8203;1220]) [#&#8203;1220]: https://github.com/iqlusioninc/crates/pull/1220 ### [`v0.10.1`](https://github.com/iqlusioninc/crates/blob/HEAD/secrecy/CHANGELOG.md#0101-2024-09-18) ##### Added - Impl `Clone` for `SecretString` ([#&#8203;1217]) [#&#8203;1217]: https://github.com/iqlusioninc/crates/pull/1217 ### [`v0.10.0`](https://github.com/iqlusioninc/crates/blob/HEAD/secrecy/CHANGELOG.md#0100-2024-09-17) This release represents a significant redesign of the `secrecy` crate. We will update this section with upgrade instructions based on feedback from people upgrading, as it's been a long time since the previous release, and this release includes a number of breaking changes. The most notable change is the generic `Secret<T>` type has been removed: instead use `SecretBox<T>` which stores secrets on the heap instead of the stack. Many of the other changes fall out of this change and things which were previously type aliases of `Secret<T>` are now type aliases of `SecretBox<T>`. This unfortunately means this crate no longer has support for "heapless" `no_std` targets. We don't have a good solution for these targets, which was a motivation for this change in the first place. ##### Added - `SecretBox::{init_with, try_init_with}` ([#&#8203;1212]) - `SecretBox::init_with_mut` ([#&#8203;1213]) - `?Sized` bounds for `SecretBox` ([#&#8203;1213]) - `SecretSlice<T>` ([#&#8203;1214]) ##### Changed - Rust 2021 edition upgrade ([#&#8203;889]) - MSRV 1.60 ([#&#8203;1105]) - `SecretBox<T>` is now a newtype rather than a type alias of \`Secret\<Box<T>> ([#&#8203;1140]) - `SecretString` is now a type alias for `SecretBox<str>` ([#&#8203;1213]) - Disable `serde` default features ([#&#8203;1194]) ##### Removed - `alloc` feature: now a hard dependency ([#&#8203;1140]) - `bytes` crate integration: no replacement ([#&#8203;1140]) - `DebugSecret` trait: no replacement ([#&#8203;1140]) - `Secret<T>`: use `SecretBox<T>` instead ([#&#8203;1140]) [#&#8203;889]: https://github.com/iqlusioninc/crates/pull/889 [#&#8203;1105]: https://github.com/iqlusioninc/crates/pull/1105 [#&#8203;1140]: https://github.com/iqlusioninc/crates/pull/1140 [#&#8203;1194]: https://github.com/iqlusioninc/crates/pull/1194 [#&#8203;1212]: https://github.com/iqlusioninc/crates/pull/1212 [#&#8203;1213]: https://github.com/iqlusioninc/crates/pull/1213 [#&#8203;1214]: https://github.com/iqlusioninc/crates/pull/1214 </details> --- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOC44Ni4wIiwidXBkYXRlZEluVmVyIjoiMzguMTE0LjAiLCJ0YXJnZXRCcmFuY2giOiJkZXYiLCJsYWJlbHMiOltdfQ==-->
renovate added 1 commit 2024-09-18 00:16:36 +01:00
chore(deps): update rust crate secrecy to 0.10
Some checks failed
renovate/artifacts Artifact file update failure
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/pr/cron-docker-builder Pipeline was successful
ci/woodpecker/pr/push-next Pipeline was successful
ci/woodpecker/pr/tag-created Pipeline was successful
71e4c98020
Author
Collaborator

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package secrecy@0.8.0 --precise 0.10.0
    Updating crates.io index
error: failed to select a version for the requirement `secrecy = "^0.8"`
candidate versions found which didn't match: 0.10.0
location searched: crates.io index
required by package `kxio v1.2.0`
    ... which satisfies dependency `kxio = "^1.2"` (locked to 1.2.0) of package `git-next v0.13.11 (/tmp/renovate/repos/gitea/kemitix/git-next/crates/cli)`

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package secrecy@0.8.0 --precise 0.10.0 Updating crates.io index error: failed to select a version for the requirement `secrecy = "^0.8"` candidate versions found which didn't match: 0.10.0 location searched: crates.io index required by package `kxio v1.2.0` ... which satisfies dependency `kxio = "^1.2"` (locked to 1.2.0) of package `git-next v0.13.11 (/tmp/renovate/repos/gitea/kemitix/git-next/crates/cli)` ```
renovate changed title from chore(deps): update rust crate secrecy to 0.10 to chore(deps): update rust crate secrecy to 0.10 - autoclosed 2024-10-21 19:31:47 +01:00
renovate closed this pull request 2024-10-21 19:31:47 +01:00
Some checks failed
renovate/artifacts Artifact file update failure
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/pr/cron-docker-builder Pipeline was successful
ci/woodpecker/pr/push-next Pipeline was successful
ci/woodpecker/pr/tag-created Pipeline was successful

Pull request closed

Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
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: kemitix/git-next#164
No description provided.