Skip to content
This repository has been archived by the owner on Aug 18, 2024. It is now read-only.

chore(deps): update rust crate strum to 0.26 - autoclosed #184

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 24, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
strum workspace.dependencies minor 0.24 -> 0.26

Release Notes

Peternator7/strum (strum)

v0.26.2

Compare Source

  • #​337: Fix missing generic impls for EnumTryAs
  • #​334: Support prefix in AsRefStr. Technically a breaking change,
    but prefix was just added in 0.26.0 so it's a newer feature and it makes the feature more consisent in general.

v0.26.1

  • #​325: use core instead of std in VariantArray.

v0.26.0

Breaking Changes
  • The EnumVariantNames macro has been renamed VariantNames. The deprecation warning should steer you in
    the right direction for fixing the warning.
  • The Iterator struct generated by EnumIter now has new bounds on it. This shouldn't break code unless you manually
    added the implementation in your code.
  • Display now supports format strings using named fields in the enum variant. This should be a no-op for most code.
    However, if you were outputting a string like "Hello {field}", this will now be interpretted as a format string.
  • EnumDiscriminant now inherits the repr and discriminant values from your main enum. This makes the discriminant type
    closer to a mirror of the original and that's always the goal.
New features
  • The VariantArray macro has been added. This macro adds an associated constant VARIANTS to your enum. The constant
    is a &'static [Self] slice so that you can access all the variants of your enum. This only works on enums that only
    have unit variants.

    use strum::VariantArray;
    
    #[derive(Debug, VariantArray)]
    enum Color {
      Red,
      Blue,
      Green,
    }
    
    fn main() {
      println!("{:?}", Color::VARIANTS); // prints: ["Red", "Blue", "Green"]
    }
  • The EnumTable macro has been experimentally added. This macro adds a new type that stores an item for each variant
    of the enum. This is useful for storing a value for each variant of an enum. This is an experimental feature because
    I'm not convinced the current api surface area is correct.

    use strum::EnumTable;
    
    #[derive(Copy, Clone, Debug, EnumTable)]
    enum Color {
      Red,
      Blue,
      Green,
    }
    
    fn main() {
      let mut counts = ColorTable::filled(0);
      for color in &[Color::Red, Color::Red, Color::Green]] {
        counts[color] += 1;
      }
    
      assert_eq!(counts[Color::Red], 2);
      assert_eq!(counts[Color::Blue], 0);
      assert_eq!(counts[Color::Green], 1);
    }
  • Display has 2 new features:

    • the strum(prefix = "some_value") attribute on an enum now allows you to prepend a string onto every
      variant when you serialize it.

    • Custom to_string and serialize attributes now support string interopolation on serialization.

PR's Merged
  • #​322: avoid collisions on std::fmt::Debug
  • #​321: avoid conflicts with consecutive underscores.
  • #​314: add additional bounds to EnumIterator
  • #​311: add FusedIterator bounds to EnumIterator
  • #​297: New macro, add VariantArray
  • #​296: adds prefix attribute to To/From String macros.
  • #​294: use named enum fields in to_string macro.
  • #​288: discriminant enums now inherit the repr from the original enum.
  • #​279: Add EnumTable macro to generate a mapping between fieldless variants and data.

v0.25.0

Breaking Changes
  • #​261 Upgrade syn dependency to version 2. This bumps the msrv to
    1.56. It's impractical to maintain a package where a core dependency of the ecosystem has a different msrv than this one.

  • 270 Change the to_string behavior when using default. Now, when
    using default, the display method will return the display version of the value contained in the enum rather than
    the name of the variant.

    #[derive(strum::Display)]
    enum Color {
      Red,
      Blue,
      Green,
      #[strum(default)]
      Other(String)
    }
    
    fn main() {
      // This used to print "Other", now it prints "Purple"
      assert_eq!(Color::Other("Purple".to_string()).to_string(), "Purple");
    }

    If you want the old behavior, you can use the to_string attribute to override this behavior. See the PR for an example.

  • 268 Update the behavior of EnumCount to exclude variants that are
    disabled. This is a breaking change, but the behavior makes it more consistent with other methods.

New Features
  • #​257 This PR adds the EnumIs macro that automatically implements
    is_{variant_name} methods for each variant.

    #[derive(EnumIs)]
    enum Color {
        Red,
        Blue,
        Green,
    }
    
    #[test]
    fn simple_test() {
        assert!(Color::Red.is_red());
    }

Configuration

📅 Schedule: Branch creation - "after 9pm every weekend,before 12am every weekend" 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.


  • 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 requested a review from Lucky3028 as a code owner June 24, 2023 12:58
@renovate renovate bot force-pushed the renovate/strum-0.x branch from 453fcd7 to 01fb841 Compare June 25, 2023 00:54
@renovate renovate bot force-pushed the renovate/strum-0.x branch 3 times, most recently from 9635833 to 1656197 Compare July 8, 2023 14:41
@renovate renovate bot force-pushed the renovate/strum-0.x branch from 1656197 to e2b1dbb Compare July 17, 2023 02:20
@renovate renovate bot force-pushed the renovate/strum-0.x branch 2 times, most recently from 098339e to ef20bd8 Compare August 13, 2023 00:36
@renovate renovate bot force-pushed the renovate/strum-0.x branch 3 times, most recently from 91b85df to ccce7c8 Compare September 3, 2023 00:11
@renovate renovate bot force-pushed the renovate/strum-0.x branch 5 times, most recently from 390a64f to bb7e677 Compare September 16, 2023 15:53
@renovate renovate bot force-pushed the renovate/strum-0.x branch from bb7e677 to 1f4872d Compare September 17, 2023 00:27
@Lucky3028 Lucky3028 enabled auto-merge September 17, 2023 00:27
@renovate renovate bot force-pushed the renovate/strum-0.x branch 5 times, most recently from 9a0ccd1 to a86a244 Compare September 23, 2023 15:13
@renovate renovate bot force-pushed the renovate/strum-0.x branch from a86a244 to bd1c951 Compare October 10, 2023 04:55
@renovate renovate bot force-pushed the renovate/strum-0.x branch from bd1c951 to 071347d Compare November 11, 2023 16:10
Copy link
Contributor Author

renovate bot commented Dec 10, 2023

⚠ 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 [email protected] --precise 0.26.2
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 the requirement `strum = "^0.24"`
candidate versions found which didn't match: 0.26.2
location searched: crates.io index
required by package `c-domain v0.1.0 (/tmp/renovate/repos/github/GiganticMinecraft/IdeaDiscussionMaster/c-domain)`
perhaps a crate was updated and forgotten to be re-vendored?

@renovate renovate bot force-pushed the renovate/strum-0.x branch 2 times, most recently from 1652572 to 30aa300 Compare December 10, 2023 03:27
@renovate renovate bot force-pushed the renovate/strum-0.x branch from 30aa300 to bce54ea Compare January 28, 2024 03:42
@renovate renovate bot changed the title chore(deps): update rust crate strum to 0.25 chore(deps): update rust crate strum to 0.26 Jan 28, 2024
@renovate renovate bot force-pushed the renovate/strum-0.x branch 3 times, most recently from ae18751 to 0d8c49e Compare March 7, 2024 12:32
@renovate renovate bot force-pushed the renovate/strum-0.x branch 2 times, most recently from da9e645 to 2ddcc01 Compare April 13, 2024 14:06
@renovate renovate bot force-pushed the renovate/strum-0.x branch 2 times, most recently from 63d96da to e1b2807 Compare May 1, 2024 09:27
@renovate renovate bot changed the title chore(deps): update rust crate strum to 0.26 chore(deps): update rust crate strum to 0.26.2 May 1, 2024
@renovate renovate bot force-pushed the renovate/strum-0.x branch 7 times, most recently from 6ffdf5f to 0cefd93 Compare May 5, 2024 09:34
@renovate renovate bot changed the title chore(deps): update rust crate strum to 0.26.2 chore(deps): update rust crate strum to v0.26.2 May 5, 2024
@renovate renovate bot force-pushed the renovate/strum-0.x branch from 0cefd93 to 0259a9e Compare May 5, 2024 17:13
@renovate renovate bot changed the title chore(deps): update rust crate strum to v0.26.2 chore(deps): update rust crate strum to 0.26 May 5, 2024
Copy link
Contributor Author

renovate bot commented May 11, 2024

⚠️ 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 [email protected] --precise 0.26.2
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 the requirement `strum = "^0.24"`
candidate versions found which didn't match: 0.26.2
location searched: crates.io index
required by package `c-domain v0.1.0 (/tmp/renovate/repos/github/GiganticMinecraft/IdeaDiscussionMaster/c-domain)`
perhaps a crate was updated and forgotten to be re-vendored?

@renovate renovate bot force-pushed the renovate/strum-0.x branch 4 times, most recently from c2be919 to d6e1d1b Compare May 16, 2024 05:07
@renovate renovate bot force-pushed the renovate/strum-0.x branch from d6e1d1b to 15ed5a8 Compare May 18, 2024 17:39
@renovate renovate bot force-pushed the renovate/strum-0.x branch from 15ed5a8 to 584e7a0 Compare May 18, 2024 22:42
@renovate renovate bot changed the title chore(deps): update rust crate strum to 0.26 chore(deps): update rust crate strum to 0.26 - autoclosed May 21, 2024
@renovate renovate bot closed this May 21, 2024
auto-merge was automatically disabled May 21, 2024 16:58

Pull request was closed

@renovate renovate bot deleted the renovate/strum-0.x branch May 21, 2024 16:59
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants