foobara 0.0.38 → 0.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +629 -149
- data/projects/builtin_types/src/builtin_types.rb +31 -9
- data/projects/detached_entity/src/extensions/type_declarations/handlers/extend_detached_entity_type_declaration/to_type_transformer.rb +1 -0
- data/projects/entity/src/extensions/builtin_types/entity/casters/primary_key.rb +39 -0
- data/projects/entity/src/extensions/type_declarations/handlers/extend_entity_type_declaration/to_type_transformer.rb +0 -31
- data/projects/model/src/extensions/builtin_types/model/{transformers → supported_transformers}/mutable.rb +5 -1
- data/projects/model/src/extensions/builtin_types/model/validators/attributes_declaration.rb +4 -0
- data/projects/model/src/extensions/type_declarations/handlers/extend_model_type_declaration/to_type_transformer.rb +1 -1
- data/projects/model/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration/to_type_transformer.rb +0 -4
- data/projects/types/src/type.rb +48 -1
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2bf050110d18ea4044f2f757e1f1ca259817ee14b70d9bda10c6bc595334fb31
|
4
|
+
data.tar.gz: 3e09509445c5f5a5e2d68eceb02636033bba1df6cdbc324349b6ae92c044083f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4761fb5fb340f5f4d34b48b3609b5c1a43e365a4fa11f775c9ac8c1fcbecc88855e9dfc08380b20c11dead7aa5974145c1013f7b23db689452c5021c35b6d3a4
|
7
|
+
data.tar.gz: e9a736a451d1f33569dedf51c978c38cd3391052c7c48e1016d519b9716789588951a1a530848991fdeb374944c260604e4443aaa47392708187ad285ff85aba
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
|
-
## [0.0.
|
1
|
+
## [0.0.39] - 2024-12-18
|
2
|
+
|
3
|
+
- Introduce processor .requires_type? concept and extract PrimaryKey caster to a proper location
|
4
|
+
- Make mutable a supported processor
|
5
|
+
|
6
|
+
## [0.0.38] - 2024-12-11
|
2
7
|
|
3
8
|
- Make DomainMappers extend Command so they have possible errors and statefulness/a cleaner API
|
4
9
|
- Fixup domain mapper lookups to give proper values/errors in various scenarios, particularly in the context
|