typed_eav 0.8.0 → 0.8.1

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.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +25 -2
  3. data/README.md +79 -1710
  4. data/RELEASING.md +81 -0
  5. data/docs/adr/0001-collapse-column-mapping-stack.md +28 -0
  6. data/docs/adr/0002-entity-query-orchestration.md +33 -0
  7. data/docs/adr/0003-keep-event-dispatcher-broker.md +41 -0
  8. data/docs/adr/0004-field-family-intermediate-bases.md +49 -0
  9. data/docs/adr/0005-keep-phase-six-modules-independent.md +48 -0
  10. data/docs/adr/0006-include-missing-via-set-complement.md +77 -0
  11. data/docs/adr/0007-visibility-versus-mutation-relations.md +33 -0
  12. data/docs/adr/0008-partial-covering-scalar-indexes.md +83 -0
  13. data/docs/adr/0009-string-search-indexing.md +110 -0
  14. data/docs/adr/0010-planner-statistics-policy.md +109 -0
  15. data/docs/adr/0011-multi-filter-query-strategy.md +111 -0
  16. data/docs/adr/0012-cross-scope-administrative-query-policy.md +76 -0
  17. data/docs/adr/0013-durable-versioning-and-field-deletion.md +125 -0
  18. data/docs/adr/index.md +101 -0
  19. data/docs/getting-started.md +79 -0
  20. data/docs/guides/architecture.md +125 -0
  21. data/docs/guides/bulk-operations.md +205 -0
  22. data/docs/guides/csv-import.md +88 -0
  23. data/docs/guides/development.md +73 -0
  24. data/docs/guides/events-and-versioning.md +360 -0
  25. data/docs/guides/fields.md +342 -0
  26. data/docs/guides/performance.md +107 -0
  27. data/docs/guides/queries.md +188 -0
  28. data/docs/guides/schema.md +134 -0
  29. data/docs/guides/scoping.md +254 -0
  30. data/docs/guides/upgrading.md +26 -0
  31. data/docs/guides/usage.md +259 -0
  32. data/docs/index.md +44 -0
  33. data/docs/maintaining.md +82 -0
  34. data/docs/reference/api.md +133 -0
  35. data/docs/reference/configuration.md +64 -0
  36. data/docs/reference/index.md +16 -0
  37. data/lib/typed_eav/version.rb +1 -1
  38. metadata +35 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 026326e328ecf153d7ba72eeac001470ba67307ed17bf5cef68f52548b6abd47
4
- data.tar.gz: 6a76dce02983e81312d67662de6837804b51e691ab0d79dbfb13cacc2b25c19c
3
+ metadata.gz: 0dff0e04ca4b32e4e63fbafe6cb3531ba3626f30a68e0bde6cb99196a6e7563e
4
+ data.tar.gz: 300ff1681cb7274d624cf9f6427a771fd003efe87dcd75d25a5ed08ffec69314
5
5
  SHA512:
6
- metadata.gz: 1677489ecff776e1914305db8d9681a6cb52891282c6602b3d6b12acb99b89d2263bca877606e686e64d260ecff1f5170ac0f6a733b8f7f5592447d5f8852b90
7
- data.tar.gz: 528cbe73ee76daa4e2bb50806b1e148483a68ac9563e2b3c49a3110ee153fba00bd7a6f79612824dc018fc7d13bfcde7e81ed1b0daa67190b401320ee9ea1e5f
6
+ metadata.gz: 58b786e5c7f2679b0f94c463f3eaa1e341ca765f19b8fe539fa7366dba9604fdb8f29987effafc3281a77e4e65b61c47e06043d1fa7c63456f4b4fd59dc51247
7
+ data.tar.gz: a5847413bc3b562802705359c916de7eadba21e9c4aba9a281e46194cb52c2269d27c2f4a6908a31a4bc3fbaf546d30205395a0d4aebf50aee6f19a7c49134e7
data/CHANGELOG.md CHANGED
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.8.1] - 2026-09-08
11
+
12
+ Documentation-focused patch release; no runtime API or database migration changes.
13
+
14
+ ### Added
15
+
16
+ - Browsable documentation site with grouped sidebar navigation, a public API and
17
+ configuration reference, and a user-facing summary of design decisions.
18
+ - Guides for CSV mapping, schema import/export and snapshots, defaults,
19
+ missing-value queries, bulk-write results, and public partition helpers.
20
+ - GitHub Pages build and deployment workflow with local link and anchor checks.
21
+ The site renders its changelog from the canonical root file.
22
+ - Public documentation Markdown included in the gem package.
23
+
24
+ ### Changed
25
+
26
+ - Shortened the README into an installation and discovery entry point, preserving
27
+ detailed examples and contracts in linked guides.
28
+ - Corrected scope-resolver examples to use the documented tuple return shape.
29
+ - Required documentation review after every repository change in both agent
30
+ instruction files.
31
+
10
32
  ## [0.8.0] - 2026-09-04
11
33
 
12
34
  New SQL-backed query APIs, selective/preloaded bulk reads, logical dirty
@@ -652,7 +674,7 @@ without giving up the existing single-scope ergonomics.
652
674
  4. Optional: declare `parent_scope_method:` on hosts that have an in-tenant
653
675
  partition. Existing single-scope models continue to work without changes.
654
676
 
655
- See the README ["Migrating from v0.1.x"](README.md#migrating-from-v01x)
677
+ See the README ["Migrating from v0.1.x"](docs/guides/upgrading.md#migrating-from-v01x)
656
678
  section for the full guidance, including the orphan-parent invariant and
657
679
  worked examples.
658
680
 
@@ -670,7 +692,8 @@ worked examples.
670
692
 
671
693
  Initial release.
672
694
 
673
- [Unreleased]: https://github.com/dchuk/typed_eav/compare/v0.8.0...HEAD
695
+ [Unreleased]: https://github.com/dchuk/typed_eav/compare/v0.8.1...HEAD
696
+ [0.8.1]: https://github.com/dchuk/typed_eav/releases/tag/v0.8.1
674
697
  [0.8.0]: https://github.com/dchuk/typed_eav/releases/tag/v0.8.0
675
698
  [0.7.1]: https://github.com/dchuk/typed_eav/releases/tag/v0.7.1
676
699
  [0.7.0]: https://github.com/dchuk/typed_eav/releases/tag/v0.7.0