공통 편집 계약과 구현 정책을 분리하고 History 관찰 의존성을 제거한다 - #736
Merged
Conversation
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.
EditingSession의 공통 의미와 현재 구현 정책이 섞여 있었고,
n=0 → 로컬 n=1 → 외부 n=2 → 외부 n=1에서 UI 구독자가 없으면 Undo 기록이 남았다. 공통 계약과 binding 정책을 분리하고, 같은 변경 이력에서는 UI 구독 유무와 관계없이 local Undo/Redo가 무효화되도록 수정한다.계약과 동작
standards/editing-session.md의 12개 ES 규칙은 값·선택·원자성·일관된 관찰·결과 귀속·안전한 복구·책임 경계의 공통 의미를 규정한다.docs:evaluate는 규칙별 행동 증거와 owner 링크를 검사하고, 기존 Usage에서 History 무효화 owner source를 발견할 수 있다.원래 문서 한정 범위에서 History 결함 수정까지 포함한 것은 사용자 승인 contract delta에 따른다. public API·Core 여섯 member·wire·package 배치는 변경하지 않는다. Hands 정책, 독립 Session 구현 인증, 구독하지 않은 기간의 모든 selection 경로·revision 재생은 확정 범위 밖이다.
검증
verify: typecheck·290 tests·build 통과npm run verify:libraries: 전체 30개 library typecheck·build 및 130 files / 1,351 tests 통과. Rich Text React unmount 뒤 일회성 표시 해제와 외부 값 왕복 이후 History 무효화 회귀 포함docs:evaluate,git diff --check통과회귀 테스트 통과는 영구성이나 독립 Editing 구현 간 상호운용의 증명이 아니다. UI 화면을 새로 구현한 변경이 없어
show-me는 해당하지 않는다.Closes #735