Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 9 15 +6
Lines 343 363 +20
Branches 44 49 +5
=========================================
+ Hits 343 363 +20 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Changed
Replaced
cattrandiattrwith unifiedcattriDSLcattri, withscope: :classorscope: :instanceiattrandcattrare no longer public APIAttribute behavior is now centralized via:
Cattri::AttributeandCattri::AttributeOptionsCattri::ContextandContextRegistryCattri::InternalStorefor safe write-once value storageFinal attributes (
final: true) now enforced at the store level, with safe write-once semanticsVisibility and exposure are fully separated:
visibility: :public|:protected|:privatesets method scopeexpose: :read_write|:read|:write|:nonecontrols which methods are generatedNew predicate handling via
predicate: true, with visibility inheritanceAdded
scope:to explicitly declare attribute scopeInitializerPatchto apply default values forfinalinstance attributesmemoize_default_valuehelper to simplify accessor generation.attributes,.attribute,.attribute_methods,.attribute_sourceRemoved
iattr,cattr,iattr_alias,cattr_alias, and setter helpers (*_setter)Notes
This release consolidates and simplifies the attribute system into a modern, safer, and more flexible DSL. All existing functionality is preserved through the
cattriinterface.This version introduces breaking changes to the DSL. Migration guide available in the README.