Open renovate[bot] opened 11 months ago
Renovate failed to update artifacts 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:
The artifact failure details are included below:
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/koe/Cargo.toml --workspace
warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
note: for more details see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
Updating crates.io index
error: failed to select a version for `zeroize`.
... required by package `xsalsa20poly1305 v0.8.0`
... which satisfies dependency `xsalsa20poly1305 = "^0.8"` of package `songbird v0.3.2`
... which satisfies dependency `songbird = "^0.3.2"` of package `koe v0.1.0 (/tmp/renovate/repos/github/ciffelia/koe/crates/koe)`
versions that meet the requirements `>=1, <1.4` are: 1.3.0, 1.2.0, 1.1.1, 1.1.0, 1.0.0
all possible versions conflict with previously selected packages.
previously selected package `zeroize v1.4.0`
... which satisfies dependency `zeroize = "^1.4"` of package `secrecy v0.8.0`
... which satisfies dependency `secrecy = "^0.8.0"` of package `serenity v0.12.0`
... which satisfies dependency `serenity = "^0.12.0"` of package `koe v0.1.0 (/tmp/renovate/repos/github/ciffelia/koe/crates/koe)`
failed to select a version for `zeroize` which could resolve this conflict
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/koe-call/Cargo.toml --workspace
warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
note: for more details see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
Updating crates.io index
error: failed to select a version for `zeroize`.
... required by package `xsalsa20poly1305 v0.8.0`
... which satisfies dependency `xsalsa20poly1305 = "^0.8"` of package `songbird v0.3.2`
... which satisfies dependency `songbird = "^0.3.2"` of package `koe v0.1.0 (/tmp/renovate/repos/github/ciffelia/koe/crates/koe)`
versions that meet the requirements `>=1, <1.4` are: 1.3.0, 1.2.0, 1.1.1, 1.1.0, 1.0.0
all possible versions conflict with previously selected packages.
previously selected package `zeroize v1.4.0`
... which satisfies dependency `zeroize = "^1.4"` of package `secrecy v0.8.0`
... which satisfies dependency `secrecy = "^0.8.0"` of package `serenity v0.12.0`
... which satisfies dependency `serenity = "^0.12.0"` of package `koe v0.1.0 (/tmp/renovate/repos/github/ciffelia/koe/crates/koe)`
failed to select a version for `zeroize` which could resolve this conflict
This PR contains the following updates:
0.11.7
->0.12.0
Release Notes
serenity-rs/serenity (serenity)
### [`v0.12.2`](https://redirect.github.com/serenity-rs/serenity/blob/HEAD/CHANGELOG.md#0122---2024-06-01) [Compare Source](https://redirect.github.com/serenity-rs/serenity/compare/v0.12.1...v0.12.2) Thanks to the following for their contributions: - \[[@bend-n](https://redirect.github.com/bend-n)] - \[[@GnomedDev](https://redirect.github.com/GnomedDev)] - \[[@jamesbt365](https://redirect.github.com/jamesbt365)] - \[[@MidSpike](https://redirect.github.com/MidSpike)] - \[[@mkrasnitski](https://redirect.github.com/mkrasnitski)] - \[[@RegenJacob](https://redirect.github.com/RegenJacob)] ##### Deprecations Continuing with the deprecations started in 0.12.1, many more methods and fields have been deprecated in order to make an easier upgrade path to 0.13. These deprecation messages include a migration path, it is recommended to go one by one using `cargo check` and migrate each warning to reduce the burden migrating to 0.13. Following is a list of the deprecation PRs and the justification for these changes. - ([#2791](https://redirect.github.com/serenity-rs/serenity/pull/2791)) The `Channel::is_nsfw` method was wrong, useless, and served better by `GuildChannel::nsfw` - ([#2794](https://redirect.github.com/serenity-rs/serenity/pull/2794)) These cache methods needed arcane borrow checker dances internally, and obscure the simplicity of the cache. - ([#2816](https://redirect.github.com/serenity-rs/serenity/pull/2816)) `Member::highest_role_info` is now strictly less powerful than the new `Guild::member_highest_role` and can avoid a cache lookup if used correctly. - ([#2825](https://redirect.github.com/serenity-rs/serenity/pull/2825)) - - `Guild::is_large` is less accurate than `Guild::large` - - `Message::is_own` is super simple to implement yourself - - `Message::is_private` simply checks if `Message::guild_id` is `none`. - ([#2838](https://redirect.github.com/serenity-rs/serenity/pull/2838)) `Event::PresencesReplace` does not exist, and is a relic from when serenity supported user accounts. - ([#2861](https://redirect.github.com/serenity-rs/serenity/pull/2861)) `TeamMember::permissions` is always `["*"]`, so is useless. ##### Other notable changes - ([#2790](https://redirect.github.com/serenity-rs/serenity/pull/2790])) Added `CreateMessage::enforce_nonce`, to prevent sending duplicate messages. - ([#2801](https://redirect.github.com/serenity-rs/serenity/pull/2801)) Added `EditProfile::banner`, allowing banners to be set for bots. - ([#2810](https://redirect.github.com/serenity-rs/serenity/pull/2810)) Added `ChannelId::get_thread_member`. - ([#2812](https://redirect.github.com/serenity-rs/serenity/pull/2812)) Added `Guild::partial_member_permissions_in`, which can be used to avoid fetching a `Member` in message events just to check permissions. - ([#2819](https://redirect.github.com/serenity-rs/serenity/pull/2819)) Added `FromConfiguration
📅 Schedule: Branch creation - "before 9am on Saturday" in timezone Asia/Tokyo, 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.
This PR was generated by Mend Renovate. View the repository job log.