Runtime super polish pass 2: runtime hardening and fixes#40
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.
Summary
Runtime hardening pass for Rezi runtime layers, with targeted bug fixes and regression coverage.
Scope explicitly excludes Ink compatibility implementation work (
packages/ink-compat/*unchanged).What Was Fixed
1) Unicode-safe truncation in layout text measurement
packages/core/src/layout/textMeasure.tstruncateWithEllipsisandtruncateMiddlenow truncate on grapheme boundaries instead of raw UTF-16 offsets.packages/core/src/layout/__tests__/textMeasure.truncate.unicode.test.ts2) Focus-zone traversal correctness
packages/core/src/runtime/focus.tsactiveZoneIdand zone memory now recomputed from final focus):packages/core/src/runtime/focus.tspackages/core/src/runtime/__tests__/focusZones.golden.test.ts3) Native FFI boundary hardening (Rust addon)
packages/native/src/lib.rsengineDebugGetPayloadrecord-id parsing to reject out-of-range BigInt values (>= 2^64) instead of truncating.outHeadersrejectionrecordIdrejectionpackages/native/scripts/smoke.mjs4) CI coverage gap on Linux reduced e2e profile
.github/workflows/ci.ymlscripts/__tests__/ci-workflow-linux-reduced-e2e.test.mjs5) Bench dependency alignment
inkis retained for benchmark scenarios.ink.Changed Files
packages/core/src/layout/textMeasure.tspackages/core/src/layout/__tests__/textMeasure.truncate.unicode.test.tspackages/core/src/runtime/focus.tspackages/core/src/runtime/__tests__/focusZones.golden.test.tspackages/native/src/lib.rspackages/native/scripts/smoke.mjs.github/workflows/ci.ymlscripts/__tests__/ci-workflow-linux-reduced-e2e.test.mjspackages/bench/package.jsonpackages/bench/tsconfig.jsonpackage-lock.jsonValidation
npm run lint✅npm run typecheck✅npm run build✅npm test✅npm run test:e2e✅npm run test:e2e:reduced✅npm run test:native:smoke✅npm -w @rezi-ui/native run build:native✅cargo test(inpackages/native) ✅node --test --test-concurrency=1 packages/core/dist/layout/__tests__/textMeasure.truncate.unicode.test.js packages/core/dist/runtime/__tests__/focusZones.golden.test.js✅Residual Notes