fix(boundary): support reference impl owners without graph collisions - #159
Merged
randlee merged 1 commit intoSep 20, 2026
Merged
Conversation
Owner
Author
Final Quality ReportGenerated: 2026-09-19T04:41:04Z Machine Status (JSON){
"sprint": "phase-c-lint-parser-fix",
"task": "phase-c-lint-parser-fix-qa",
"branch": "fix/reference-impl-owner",
"commit": "ba2d9bf622c1604e3f017c728040906b90e71bce",
"pr": 159,
"verdict": "PASS",
"findings": {
"blocking": 0,
"important": 0,
"minor": 1
},
"blocking_ids": [],
"merge_readiness": "ready",
"merge_reason": "All 8 review targets independently verified: structural correctness (arch-qa, code read), requirements/deliverable presence (req-qa, static analysis - its 4 execution-dependent items were separately confirmed directly by quality-mgr and rust-qa-agent, since req-qa's toolset has no command-execution capability), and full execution-based verification (rust-qa-agent: fmt/clippy/tests/just lint/just test all pass, 88/88 tests, CLI-against-consumer triage). Zero blocking or important findings. PR159 CI green (12/12) at the exact reviewed head.",
"next_action": "none",
"owner": "none",
"recommendation": "Merge-ready from a QA standpoint. This is a supporting upstream fix for sc-observability's PHC-QA-019 backend-parser sub-cause only; consumer adoption (sc-lint version pin bump in sc-observability's release-preflight) is a separate, still-open step before PHC-QA-019 can be closed on the consumer side."
}Validated Scope
Findings Summary (Final)
Residual Risks
Merge Readiness
RecommendationMerge-ready from a QA standpoint. This is a supporting upstream fix for sc-observability's PHC-QA-019 backend-parser sub-cause only; consumer adoption (sc-lint version pin bump in sc-observability's release-preflight) is a separate, still-open step before PHC-QA-019 can be closed on the consumer side. |
randlee
marked this pull request as ready for review
September 19, 2026 17:42
randlee
added this pull request to stack #165
September 19, 2026 20:09
randlee
force-pushed
the
fix/reference-impl-owner
branch
from
September 20, 2026 17:47
ba2d9bf to
0887a43
Compare
rand-lee
force-pushed
the
fix/reference-impl-owner
branch
from
September 20, 2026 18:27
0887a43 to
235cac9
Compare
randlee
force-pushed
the
fix/reference-impl-owner
branch
from
September 20, 2026 18:42
235cac9 to
a24d36a
Compare
randlee
removed this pull request from stack #165
September 20, 2026 18:42
randlee
changed the base branch from
develop
to
chore/orchestration-upstream-alignment
September 20, 2026 18:43
randlee
added this pull request to stack #172
September 20, 2026 18:43
randlee
force-pushed
the
fix/reference-impl-owner
branch
from
September 20, 2026 18:48
a24d36a to
74bfd41
Compare
randlee
removed this pull request from stack #172
September 20, 2026 20:19
randlee
added this pull request to stack #183
September 20, 2026 20:19
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.
Valid Rust trait implementations such as
impl<T: ?Sized + serde::Serialize> SerializeKindTag for &FieldValue<'_, T> {}abort boundary analysis with “only path owners are supported.” This blocks sc-observability's nonpublishing release preflight (PHC-QA-019).Resolve reference, parenthesized, and grouped self types to their underlying path owner. Reference implementations and their methods get distinct graph identities, so owned, shared, mutable, and nested reference implementations coexist without merging nodes. Existing path-owner IDs remain unchanged. Cycle analysis continues attributing reference methods to the underlying type.
Validation:
cargo test -p sc-lint-boundary: 88 passed, including the exact generic FieldValue syntax, owned/shared/mutable/nested coexistence, transparent parentheses/groups, preserved path IDs, and cycle attribution.just lintandjust test: passed.git diff --check: passed.7246f6796a52ecb2d026d735426ae726968a1eb6. Parsing completes, scanning nine crates. The report still has statusfailwith 41 findings: 22 SCB-MANIFEST-001, one SCB-MANIFEST-002, six SCB-CYCLE-001, two SCB-CYCLE-002, and ten SCB-CYCLE-003. Successful CLI execution is not a clean lint result; these consumer diagnostics are outside this fix.The change is limited to four boundary analyzer/test files. No consumer source/configuration changes, lint waivers, tags, releases, or publication. Other unnamed self-type shapes still produce explicit errors. Beads:
lint-2va; review pending. Draft for independent QA, targeting develop.