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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66997bbaca41b0302fe7a86baf9b22233f2ade442c2255c3323a900245bd78fb
4
- data.tar.gz: 90498aa57c720504bc09a34e62fab81d0377baaeab3ea2d0598317d6d5b38a93
3
+ metadata.gz: '09c84a25e8888fd675c1225a2a20cf0dfcfcbc26f6ccc5fe025d70fe8ba8269b'
4
+ data.tar.gz: 2f5308382740430050acbefc7e857f6b2f4d17ea906991def3c43316ee017820
5
5
  SHA512:
6
- metadata.gz: a67ca56147f16ca0b6ffa02121f5783dc10f588ae36bc4d6b9df73c5de19bfac22be3b76613c693719156d15b8442723de4fd05479f72dc8074ad5b272c2599e
7
- data.tar.gz: f4802412a11f7d5010487c2bede22037a6302653269eaf2dd4a933f98612296d38b2a6ce4bdd6244db1286c6572ac706615e9723ed73a2bc0ac582289af7ebd8
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
- - `typed_eav_changes` — dirty tracking
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TypedEAV
4
- VERSION = "0.3.1"
4
+ VERSION = "0.3.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typed_eav
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - dchuk