Skip to content

fix(deps): update strum monorepo to 0.26 - abandoned#10

Closed
renovate[bot] wants to merge 2 commits intomainfrom
renovate/strum-monorepo
Closed

fix(deps): update strum monorepo to 0.26 - abandoned#10
renovate[bot] wants to merge 2 commits intomainfrom
renovate/strum-monorepo

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Dec 17, 2024

This PR contains the following updates:

Package Type Update Change
strum dependencies minor 0.25 -> 0.26
strum_macros dependencies minor 0.25 -> 0.26

Release Notes

Peternator7/strum (strum)

v0.26.3

Compare Source

  • #​344: Hide EnumTable because it's going to be deprecated in the next
    version.
  • #​357: Fixes an incompatiblity with itertools by using the fully
    qualified name rather than the inherent method.
  • #​345: Allows unnamed tuple like variants to use their variants in
    string interpolation. #[strum(to_string = "Field 0: {0}, Field 1: {1})")] will now work for tuple variants

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.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

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


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/strum-monorepo branch 2 times, most recently from 409f061 to 4e429be Compare December 18, 2024 02:24
@renovate renovate bot changed the title fix(deps): update strum monorepo to 0.26 Update strum monorepo to 0.26 Dec 18, 2024
@renovate renovate bot force-pushed the renovate/strum-monorepo branch 8 times, most recently from 57faed8 to 7b53c37 Compare December 19, 2024 05:36
@renovate renovate bot changed the title Update strum monorepo to 0.26 fix(deps): update strum monorepo to 0.26 Dec 19, 2024
@renovate renovate bot force-pushed the renovate/strum-monorepo branch 18 times, most recently from 2a49c52 to 4ff91af Compare December 20, 2024 09:49
@renovate renovate bot force-pushed the renovate/strum-monorepo branch 4 times, most recently from ca9fcf3 to dbf706a Compare December 21, 2024 00:15
@renovate renovate bot force-pushed the renovate/strum-monorepo branch from dbf706a to edd588f Compare December 21, 2024 03:18
@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Dec 21, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@renovate renovate bot changed the title fix(deps): update strum monorepo to 0.26 fix(deps): update strum monorepo to 0.26 - abandoned Dec 21, 2024
@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Dec 21, 2024

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

@tusharmath tusharmath closed this Jan 13, 2025
Zetkolink added a commit to Zetkolink/forgecode that referenced this pull request Apr 8, 2026
Bugs fixed:
- #1: Unified timestamp format — all tables use strftime('%s','now') (unix seconds)
- #2: delete_file_refs and delete_workspace wrapped in transactions
- tailcallhq#19: Removed chrono_now(), use SQLite DEFAULT instead

Security:
- tailcallhq#15: All workspace methods verify ownership (authenticate_and_verify_owner)
- Added db.verify_workspace_owner() method

Code quality:
- tailcallhq#7: ForgeServiceImpl fields private, added new() constructor
- tailcallhq#8: IntoStatus trait eliminates 15+ duplicate .map_err() calls
- tailcallhq#9: Removed unused lock_conn helper, kept consistent pattern
- tailcallhq#11: Documented ends_with filter limitation in qdrant.rs
- tailcallhq#10: reqwest Client with 120s timeout + 10s connect_timeout
- tailcallhq#18: Added extract_workspace_id() helper

Co-Authored-By: ForgeCode <noreply@users.noreply.github.com>
Zetkolink added a commit to Zetkolink/forgecode that referenced this pull request Apr 8, 2026
Bugs fixed:
- #1: Unified timestamp format — all tables use strftime('%s','now') (unix seconds)
- #2: delete_file_refs and delete_workspace wrapped in transactions
- antinomyhq#19: Removed chrono_now(), use SQLite DEFAULT instead

Security:
- antinomyhq#15: All workspace methods verify ownership (authenticate_and_verify_owner)
- Added db.verify_workspace_owner() method

Code quality:
- antinomyhq#7: ForgeServiceImpl fields private, added new() constructor
- antinomyhq#8: IntoStatus trait eliminates 15+ duplicate .map_err() calls
- antinomyhq#9: Removed unused lock_conn helper, kept consistent pattern
- antinomyhq#11: Documented ends_with filter limitation in qdrant.rs
- antinomyhq#10: reqwest Client with 120s timeout + 10s connect_timeout
- antinomyhq#18: Added extract_workspace_id() helper
Zetkolink added a commit to Zetkolink/forgecode that referenced this pull request Apr 8, 2026
Bugs fixed:
- #1: Unified timestamp format — all tables use strftime('%s','now') (unix seconds)
- #2: delete_file_refs and delete_workspace wrapped in transactions
- tailcallhq#19: Removed chrono_now(), use SQLite DEFAULT instead

Security:
- tailcallhq#15: All workspace methods verify ownership (authenticate_and_verify_owner)
- Added db.verify_workspace_owner() method

Code quality:
- tailcallhq#7: ForgeServiceImpl fields private, added new() constructor
- tailcallhq#8: IntoStatus trait eliminates 15+ duplicate .map_err() calls
- tailcallhq#9: Removed unused lock_conn helper, kept consistent pattern
- tailcallhq#11: Documented ends_with filter limitation in qdrant.rs
- tailcallhq#10: reqwest Client with 120s timeout + 10s connect_timeout
- tailcallhq#18: Added extract_workspace_id() helper
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant