chore(release): version packages#93
Open
github-actions[bot] wants to merge 1 commit into
Open
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@lanterna-profiler/core@2.4.0
Minor Changes
703d967: Make async profiling pinpoint which code is slow, what the latency is, and why.
firstRunAtMs(scheduling delay precursor) and derivewaitMs(time waiting, not on CPU) andscheduleDelayMsper operation, plus per-family latency percentiles (summary.byKindLatency).latencyCause+causeConfidence+causeEvidence) by overlapping its wait windows with event-loop stalls, GC pauses, downstream-async activity, I/O kind, or CPU-bound execution.attributedFrameOrigin), and raise the default init-stack capture depth.clockSyncUncertaintyMs(CDP jitter / clock resolution) instead of a placeholder.long-awaitfinding with the latency decomposition and cause-specific guidance, and add a newevent-loop-blocked-asyncdetector that ties a slow async operation to the synchronous frame blocking the event loop.backgroundlatency cause (instead of mis-reading their incidental stall overlap asevent-loop-blocked); when the event-loop heartbeat is unavailable, mark anunknowncause withcauseEvidence.basis = "no-eventloop-signal"and add a quality reason, so missing signal is not conflated with "no problem"; and under--async-max-eventspressure, evict the shortest-duration completed record instead of FIFO so the slow/long operations that matter for latency survive.gc-pause.gc-pauseis now correctly rare.event-loop-blockednow requires the loop to have still been stalled when the callback became runnable (aroundfirstRunAtMs); a stall that ended well before the operation ran is treated as a coincidental overlap, eliminating falseevent-loop-blockedlabels on genuinely slow I/O whose wait merely spans an unrelated stall.topOperationsandsummary.byKindLatency— their capture-clamped, fictional duration was dominating the ranking and skewing the percentiles — and remain reported inorphans[].event-loop-blocked-asyncdetector stands down when no CPU hotspot identifies a culprit frame, instead of emitting a critical finding anchored at a placeholder(event-loop)location.backgroundinstead of having their capture-length aggregatewaitMsreported as a singleevent-loop-blocked/long-awaitfinding. TherunCount > 1discriminator preserves genuine single long operations (a discrete delayed callback runs at most once). Validated on a real HTTP server under load: the blockingpbkdf2Synchandler is still correctly surfaced, without the misleading multi-second findings on keep-alive connections.event-loop-blocked-asyncdetector now attributes the blocking frame per stall instead of stamping the single globally-dominant CPU hotspot on every blocked op.profiles.cpu.eventLoop.stallIntervals[]gains an optionaltopFrame(the user frame that dominated CPU during that specific stall), and the detector matches each delayed op to the stall active when its callback became runnable (firstRunAtMs), falling back to the global hotspot only when no stall matches. With several distinct blocking call sites, each delayed operation now points at its own culprit.@lanterna-profiler/detectors@2.4.0
Minor Changes
703d967: Make async profiling pinpoint which code is slow, what the latency is, and why.
firstRunAtMs(scheduling delay precursor) and derivewaitMs(time waiting, not on CPU) andscheduleDelayMsper operation, plus per-family latency percentiles (summary.byKindLatency).latencyCause+causeConfidence+causeEvidence) by overlapping its wait windows with event-loop stalls, GC pauses, downstream-async activity, I/O kind, or CPU-bound execution.attributedFrameOrigin), and raise the default init-stack capture depth.clockSyncUncertaintyMs(CDP jitter / clock resolution) instead of a placeholder.long-awaitfinding with the latency decomposition and cause-specific guidance, and add a newevent-loop-blocked-asyncdetector that ties a slow async operation to the synchronous frame blocking the event loop.backgroundlatency cause (instead of mis-reading their incidental stall overlap asevent-loop-blocked); when the event-loop heartbeat is unavailable, mark anunknowncause withcauseEvidence.basis = "no-eventloop-signal"and add a quality reason, so missing signal is not conflated with "no problem"; and under--async-max-eventspressure, evict the shortest-duration completed record instead of FIFO so the slow/long operations that matter for latency survive.gc-pause.gc-pauseis now correctly rare.event-loop-blockednow requires the loop to have still been stalled when the callback became runnable (aroundfirstRunAtMs); a stall that ended well before the operation ran is treated as a coincidental overlap, eliminating falseevent-loop-blockedlabels on genuinely slow I/O whose wait merely spans an unrelated stall.topOperationsandsummary.byKindLatency— their capture-clamped, fictional duration was dominating the ranking and skewing the percentiles — and remain reported inorphans[].event-loop-blocked-asyncdetector stands down when no CPU hotspot identifies a culprit frame, instead of emitting a critical finding anchored at a placeholder(event-loop)location.backgroundinstead of having their capture-length aggregatewaitMsreported as a singleevent-loop-blocked/long-awaitfinding. TherunCount > 1discriminator preserves genuine single long operations (a discrete delayed callback runs at most once). Validated on a real HTTP server under load: the blockingpbkdf2Synchandler is still correctly surfaced, without the misleading multi-second findings on keep-alive connections.event-loop-blocked-asyncdetector now attributes the blocking frame per stall instead of stamping the single globally-dominant CPU hotspot on every blocked op.profiles.cpu.eventLoop.stallIntervals[]gains an optionaltopFrame(the user frame that dominated CPU during that specific stall), and the detector matches each delayed op to the stall active when its callback became runnable (firstRunAtMs), falling back to the global hotspot only when no stall matches. With several distinct blocking call sites, each delayed operation now points at its own culprit.Patch Changes
@lanterna-profiler/cli@1.14.1
Patch Changes
703d967: Make async profiling pinpoint which code is slow, what the latency is, and why.
firstRunAtMs(scheduling delay precursor) and derivewaitMs(time waiting, not on CPU) andscheduleDelayMsper operation, plus per-family latency percentiles (summary.byKindLatency).latencyCause+causeConfidence+causeEvidence) by overlapping its wait windows with event-loop stalls, GC pauses, downstream-async activity, I/O kind, or CPU-bound execution.attributedFrameOrigin), and raise the default init-stack capture depth.clockSyncUncertaintyMs(CDP jitter / clock resolution) instead of a placeholder.long-awaitfinding with the latency decomposition and cause-specific guidance, and add a newevent-loop-blocked-asyncdetector that ties a slow async operation to the synchronous frame blocking the event loop.backgroundlatency cause (instead of mis-reading their incidental stall overlap asevent-loop-blocked); when the event-loop heartbeat is unavailable, mark anunknowncause withcauseEvidence.basis = "no-eventloop-signal"and add a quality reason, so missing signal is not conflated with "no problem"; and under--async-max-eventspressure, evict the shortest-duration completed record instead of FIFO so the slow/long operations that matter for latency survive.gc-pause.gc-pauseis now correctly rare.event-loop-blockednow requires the loop to have still been stalled when the callback became runnable (aroundfirstRunAtMs); a stall that ended well before the operation ran is treated as a coincidental overlap, eliminating falseevent-loop-blockedlabels on genuinely slow I/O whose wait merely spans an unrelated stall.topOperationsandsummary.byKindLatency— their capture-clamped, fictional duration was dominating the ranking and skewing the percentiles — and remain reported inorphans[].event-loop-blocked-asyncdetector stands down when no CPU hotspot identifies a culprit frame, instead of emitting a critical finding anchored at a placeholder(event-loop)location.backgroundinstead of having their capture-length aggregatewaitMsreported as a singleevent-loop-blocked/long-awaitfinding. TherunCount > 1discriminator preserves genuine single long operations (a discrete delayed callback runs at most once). Validated on a real HTTP server under load: the blockingpbkdf2Synchandler is still correctly surfaced, without the misleading multi-second findings on keep-alive connections.event-loop-blocked-asyncdetector now attributes the blocking frame per stall instead of stamping the single globally-dominant CPU hotspot on every blocked op.profiles.cpu.eventLoop.stallIntervals[]gains an optionaltopFrame(the user frame that dominated CPU during that specific stall), and the detector matches each delayed op to the stall active when its callback became runnable (firstRunAtMs), falling back to the global hotspot only when no stall matches. With several distinct blocking call sites, each delayed operation now points at its own culprit.Updated dependencies [703d967]