release: v0.1.1224 - #3520
Merged
Merged
Conversation
kojiwakayama
enabled auto-merge
August 9, 2026 21:35
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (2)
📝 WalkthroughWalkthroughThe release version changes from ChangesRelease version
Estimated code review effort: 1 (Trivial) | ~2 minutes Possibly related PRs
Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
This was referenced Aug 9, 2026
Merged
Closed
Merged
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.
Patch release cutting #3519.
Contents
feat(agent): stamp an absolute
emittedAton persisted run events (#3519)elapsedMsis measured from the encoder's construction, so reading it correctly requires knowing which encoder instance produced it — the anchor ambiguity behind three of the four attempts it took to landelapsedMsat all (#3483 clockedrun-chunk-mirror, #3497 clockedhosted-lifecycle; both were correct fixes to encoders production does not use).emittedAthas no anchor. Stored as epoch milliseconds: comparable without parsing, and roughly a third of the bytes of an ISO string on a stream carrying thousands of events per run.Both fields are kept because they fail differently — a wall clock can step backwards under NTP correction and yield a negative duration;
performance.now()cannot.emittedAtis the durable record,elapsedMsthe trustworthy intra-run measure.Unlocks
created_at − emittedAtas ingest lag: the gap that produced the phantom "metronomic 30ms delta cadence" in the original trace analysis becomes measurable rather than a trap.Also included: a refactor forwarding encoder timing as one
timingoptions object instead of re-declaring each clock through four wrapper layers. Net-negative diff, no behaviour change — and it means adding a future clock is one edit rather than a sweep, which is structurally the same failure this field already went through.Version files
deno.json,src/utils/version-constant.ts, andsrc/html/hydration-script-builder/hydration-runtime.generated.ts— all three at 0.1.1224.Cut with
--no-test --no-build;--no-buildremains mandatory until issue #435 (deno task verify:distdoes not exist) is fixed.Summary by CodeRabbit