fix(deps): update strum monorepo to 0.26 - abandoned#10
Closed
renovate[bot] wants to merge 2 commits intomainfrom
Closed
fix(deps): update strum monorepo to 0.26 - abandoned#10renovate[bot] wants to merge 2 commits intomainfrom
renovate[bot] wants to merge 2 commits intomainfrom
Conversation
409f061 to
4e429be
Compare
57faed8 to
7b53c37
Compare
2a49c52 to
4ff91af
Compare
ca9fcf3 to
dbf706a
Compare
dbf706a to
edd588f
Compare
Contributor
Author
Edited/Blocked NotificationRenovate 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. |
Contributor
Author
Autoclosing SkippedThis 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. |
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.25->0.260.25->0.26Release Notes
Peternator7/strum (strum)
v0.26.3Compare Source
EnumTablebecause it's going to be deprecated in the nextversion.
itertoolsby using the fullyqualified name rather than the inherent method.
string interpolation.
#[strum(to_string = "Field 0: {0}, Field 1: {1})")]will now work for tuple variantsv0.26.2Compare Source
EnumTryAsAsRefStr. Technically a breaking change,but
prefixwas just added in0.26.0so it's a newer feature and it makes the feature more consisent in general.v0.26.1coreinstead ofstdin VariantArray.v0.26.0Breaking Changes
EnumVariantNamesmacro has been renamedVariantNames. The deprecation warning should steer you inthe right direction for fixing the warning.
added the implementation in your code.
Displaynow 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.closer to a mirror of the original and that's always the goal.
New features
The
VariantArraymacro has been added. This macro adds an associated constantVARIANTSto your enum. The constantis a
&'static [Self]slice so that you can access all the variants of your enum. This only works on enums that onlyhave unit variants.
The
EnumTablemacro has been experimentally added. This macro adds a new type that stores an item for each variantof 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.
Displayhas 2 new features:the
strum(prefix = "some_value")attribute on an enum now allows you to prepend a string onto everyvariant when you serialize it.
Custom
to_stringandserializeattributes now support string interopolation on serialization.PR's Merged
std::fmt::DebugVariantArrayEnumTablemacro 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.
This PR was generated by Mend Renovate. View the repository job log.