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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -2
- data/README.md +79 -1710
- data/RELEASING.md +81 -0
- data/docs/adr/0001-collapse-column-mapping-stack.md +28 -0
- data/docs/adr/0002-entity-query-orchestration.md +33 -0
- data/docs/adr/0003-keep-event-dispatcher-broker.md +41 -0
- data/docs/adr/0004-field-family-intermediate-bases.md +49 -0
- data/docs/adr/0005-keep-phase-six-modules-independent.md +48 -0
- data/docs/adr/0006-include-missing-via-set-complement.md +77 -0
- data/docs/adr/0007-visibility-versus-mutation-relations.md +33 -0
- data/docs/adr/0008-partial-covering-scalar-indexes.md +83 -0
- data/docs/adr/0009-string-search-indexing.md +110 -0
- data/docs/adr/0010-planner-statistics-policy.md +109 -0
- data/docs/adr/0011-multi-filter-query-strategy.md +111 -0
- data/docs/adr/0012-cross-scope-administrative-query-policy.md +76 -0
- data/docs/adr/0013-durable-versioning-and-field-deletion.md +125 -0
- data/docs/adr/index.md +101 -0
- data/docs/getting-started.md +79 -0
- data/docs/guides/architecture.md +125 -0
- data/docs/guides/bulk-operations.md +205 -0
- data/docs/guides/csv-import.md +88 -0
- data/docs/guides/development.md +73 -0
- data/docs/guides/events-and-versioning.md +360 -0
- data/docs/guides/fields.md +342 -0
- data/docs/guides/performance.md +107 -0
- data/docs/guides/queries.md +188 -0
- data/docs/guides/schema.md +134 -0
- data/docs/guides/scoping.md +254 -0
- data/docs/guides/upgrading.md +26 -0
- data/docs/guides/usage.md +259 -0
- data/docs/index.md +44 -0
- data/docs/maintaining.md +82 -0
- data/docs/reference/api.md +133 -0
- data/docs/reference/configuration.md +64 -0
- data/docs/reference/index.md +16 -0
- data/lib/typed_eav/version.rb +1 -1
- metadata +35 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0dff0e04ca4b32e4e63fbafe6cb3531ba3626f30a68e0bde6cb99196a6e7563e
|
|
4
|
+
data.tar.gz: 300ff1681cb7274d624cf9f6427a771fd003efe87dcd75d25a5ed08ffec69314
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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"](
|
|
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.
|
|
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
|