fix(auth): fail closed on unsafe scoped op-log projection#190
Open
marcus-pousette wants to merge 2 commits into
Open
fix(auth): fail closed on unsafe scoped op-log projection#190marcus-pousette wants to merge 2 commits into
marcus-pousette wants to merge 2 commits into
Conversation
marcus-pousette
force-pushed
the
fix/auth-stable-delegation-roots
branch
from
July 11, 2026 23:00
8e0d3c0 to
a60fc61
Compare
marcus-pousette
force-pushed
the
fix/auth-safe-oplog-projection
branch
from
July 11, 2026 23:01
9b37f32 to
54181f6
Compare
marcus-pousette
force-pushed
the
fix/auth-stable-delegation-roots
branch
from
July 12, 2026 12:18
a60fc61 to
93b6c16
Compare
marcus-pousette
force-pushed
the
fix/auth-safe-oplog-projection
branch
from
July 12, 2026 12:18
54181f6 to
3c84eae
Compare
marcus-pousette
force-pushed
the
fix/auth-stable-delegation-roots
branch
from
July 13, 2026 14:07
93b6c16 to
0e47034
Compare
marcus-pousette
force-pushed
the
fix/auth-safe-oplog-projection
branch
2 times, most recently
from
July 13, 2026 15:06
76a4623 to
b8a38ac
Compare
marcus-pousette
force-pushed
the
fix/auth-stable-delegation-roots
branch
from
July 13, 2026 15:06
0e47034 to
34ce166
Compare
marcus-pousette
force-pushed
the
fix/auth-safe-oplog-projection
branch
from
July 13, 2026 15:50
b8a38ac to
afc0fe2
Compare
marcus-pousette
force-pushed
the
fix/auth-stable-delegation-roots
branch
from
July 13, 2026 15:50
34ce166 to
0d1d338
Compare
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem
Sync filters reconcile historical operations, but the subtree evaluator only sees current materialized ancestry. A node can enter a private subtree and later re-enter readable state; filtering from current membership can then reveal its private destination or payload history.
Simply omitting a required operation is also unsafe because it changes the selected causal op set and can leave the receiver stale.
What changes
read_structurefor bothFilter.allandFilter.children.read_payload.SyncAuthimplementations remain free to provide a different authenticated projection format.Fast paths
read_structure.childrenfiltering and the existing reconciliation optimizations remain available.Tests
read_payloadStack
Stacked on #189.