This repository was archived by the owner on May 13, 2026. It is now read-only.
Trigger field transforms on field updates - #2
Merged
shiba4life merged 1 commit intoMay 17, 2025
Merged
Conversation
shiba4life
deleted the
codex/trigger-dependent-transformer-on-schema-update
branch
May 24, 2025 23:52
shiba4life
added a commit
that referenced
this pull request
Apr 13, 2026
Round 4 item #2: the 5 remaining raw namespace getters (metadata_store, permissions_store, public_keys_store, idempotency_store, process_results_store) on DbOperations are replaced by two new domain stores whose namespace fields are private: - PermissionsStore: permissions + public_keys namespaces. Owns trust-map persistence, audit log, and system public-key storage. - MetadataStore: metadata + idempotency + process_results namespaces. Owns node_id, idempotency cache, and process-result bookkeeping. Accessors `DbOperations::permissions()` and `DbOperations::metadata()` join the existing `schemas()`, `atoms()`, `views()` set. Existing delegator methods on DbOperations (get_node_id, load_trust_map, get_system_public_key, etc.) are kept for backward compatibility and now forward into the domain stores. `raw_metadata_store()` remains as a public escape hatch for fold_db_node callers that need generic KV access. Internal callers in fold_db_core (mutation_manager, process_results subscriber) and org_operations are updated to go through the new accessors. Pure refactor; no behavior changes. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
3 tasks
shiba4life
added a commit
that referenced
this pull request
Apr 13, 2026
) Round 4 item #2: the 5 remaining raw namespace getters (metadata_store, permissions_store, public_keys_store, idempotency_store, process_results_store) on DbOperations are replaced by two new domain stores whose namespace fields are private: - PermissionsStore: permissions + public_keys namespaces. Owns trust-map persistence, audit log, and system public-key storage. - MetadataStore: metadata + idempotency + process_results namespaces. Owns node_id, idempotency cache, and process-result bookkeeping. Accessors `DbOperations::permissions()` and `DbOperations::metadata()` join the existing `schemas()`, `atoms()`, `views()` set. Existing delegator methods on DbOperations (get_node_id, load_trust_map, get_system_public_key, etc.) are kept for backward compatibility and now forward into the domain stores. `raw_metadata_store()` remains as a public escape hatch for fold_db_node callers that need generic KV access. Internal callers in fold_db_core (mutation_manager, process_results subscriber) and org_operations are updated to go through the new accessors. Pure refactor; no behavior changes. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This was referenced Apr 23, 2026
4 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Arctransformmodule re-exportTesting
cargo test --quiet