typed_eav 0.3.1 → 0.3.2
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 +14 -0
- data/README.md +2 -2
- data/lib/typed_eav/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '09c84a25e8888fd675c1225a2a20cf0dfcfcbc26f6ccc5fe025d70fe8ba8269b'
|
|
4
|
+
data.tar.gz: 2f5308382740430050acbefc7e857f6b2f4d17ea906991def3c43316ee017820
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: efe552ea5914d737eb82b2d6c33a6198c5d0c161d1e0c08d7037c4e52f85b8b199a0ea608b15b910004dc7e645c3b3a1a3099b07f847cefac14380103f5cbab4
|
|
7
|
+
data.tar.gz: 283c08abec00ff9604d56ac7d5cacec43b1596e9c9ba44710a5087edf326218bd075b6b9ac7d2098b9934ea4c86dd40588cb8a7bc5e72c4b7818c0ea532f76b2
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.2] - 2026-05-25
|
|
9
|
+
|
|
10
|
+
Documentation-only release. No code or behavior changes.
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- README §"Architecture" — Per-record reads/writes subsection erroneously
|
|
15
|
+
listed `typed_eav_changes` as a public `InstanceMethods` API (added in
|
|
16
|
+
0.3.1). That method does not exist on `InstanceMethods`. Replaced with
|
|
17
|
+
the actual existing methods (`typed_eav_definitions` and noting the
|
|
18
|
+
`typed_eav=` alias). Dirty tracking for typed-EAV writes is tracked as
|
|
19
|
+
a feature request — not implemented in this release.
|
|
20
|
+
|
|
8
21
|
## [0.3.1] - 2026-05-25
|
|
9
22
|
|
|
10
23
|
Documentation-only release. No code or behavior changes.
|
|
@@ -228,6 +241,7 @@ worked examples.
|
|
|
228
241
|
|
|
229
242
|
Initial release.
|
|
230
243
|
|
|
244
|
+
[0.3.2]: https://github.com/dchuk/typed_eav/releases/tag/v0.3.2
|
|
231
245
|
[0.3.1]: https://github.com/dchuk/typed_eav/releases/tag/v0.3.1
|
|
232
246
|
[0.3.0]: https://github.com/dchuk/typed_eav/releases/tag/v0.3.0
|
|
233
247
|
[0.2.1]: https://github.com/dchuk/typed_eav/releases/tag/v0.2.1
|
data/README.md
CHANGED
|
@@ -1307,8 +1307,8 @@ Single-record reads (`typed_eav_value`, `typed_eav_hash`) live on `InstanceMetho
|
|
|
1307
1307
|
`lib/typed_eav/has_typed_eav/instance_methods.rb` (~250 LOC) holds the per-record API:
|
|
1308
1308
|
|
|
1309
1309
|
- `typed_eav_value(name)` / `typed_eav_hash` — reads
|
|
1310
|
-
- `set_typed_eav_value(name, value)` / `typed_eav_attributes=` — writes
|
|
1311
|
-
- `
|
|
1310
|
+
- `set_typed_eav_value(name, value)` / `typed_eav_attributes=` (aliased as `typed_eav=`) — writes
|
|
1311
|
+
- `typed_eav_definitions` — resolved field-definitions map for the host record
|
|
1312
1312
|
- `typed_eav_scope` / `typed_eav_parent_scope` — scope resolution per record
|
|
1313
1313
|
|
|
1314
1314
|
Every method uses `TypedEAV::Partition.definitions_by_name` so the collision-precedence rules for ambient/explicit/parent scopes are computed in one place.
|
data/lib/typed_eav/version.rb
CHANGED