Version Packages - #210
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
5 times, most recently
from
August 6, 2026 06:20
1be8fef to
4dd23d8
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 6, 2026 07:33
4dd23d8 to
5375b0a
Compare
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
@jantimon/web-performance-debugger@1.5.0
Minor Changes
#215
85054d1- Add the allocation gate. A GC-pressure regression that allocates hard but costs little CPU passed everygate before; now
alloc-diff <baseline> <current> --fail-on-regressiongates on net allocated bytes(mirroring
cpu-diff), andassert --max-alloc-mb <mb>gates the total against a budget. Both read an--target node --allocrecording; a recording with no allocation model is a loud n/a-FAIL, never asilent pass, and an alloc-diff refuses across an incompatible workload/lane/capture.
The gate floor scales with the workload, the same as
cpu-diff:max(--noise-floor MB, --noise-pct% of the baseline), defaultmax(1 MB, 25%), since sampled byte totals are ~15-20% directional. New viewAllocDiffResult.#213
d62f653-assertgains--format json|toon, emitting a typedAssertView: a row per threshold (axis,budget, measuredvalueornull,verdictpass/fail/n-a-fail, plus the routedmemberon arun-group), the overall
passed, and theviolations. A CI PR-comment script now consumes the gateverdict structurally instead of scraping the ASCII table. The exit code is unchanged (0 = passed, 1 =
any failed), so a
--format jsongate fails the build exactly as the human report does.#212
1af338b-cpu-diff --fail-on-regression: the noise floor now scales with the workload. The net JS self-timemust clear
max(--noise-floor ms, --noise-pct% of the baseline), defaultmax(0.5 ms, 15%). The oldfixed 0.5 ms floor false-reds byte-identical code more as the workload grows (measured ~2% at a 5 ms
workload, ~40% at 220 ms /
--iterations 20), because summed self-time grows while the floor staysabsolute; the percentage term tracks it, so identical code stays green at any iteration count while a
30%+ regression on a small workload still fails.
New flags
--noise-floor <ms>and--noise-pct <n>widen (or tighten) the two terms;CpuDiffResultJSON now carries
noisePctand the effectivegateFloorMs.Patch Changes
#209
ec6a66e- Bot-wall detection no longer forces a layout flush while it inspects a page. The collector readsiframe viewport coverage through an
IntersectionObserverand the near-empty-DOM signal throughtextContent, instead ofgetBoundingClientRect/innerText, and the on-ramp inspection runs outsidethe
wpd:runwindow. On a page that keeps layout dirty this drops a few spurious layout/style countsthat the inspection previously added to the run span. Detection results are unchanged.
#211
2b6eaef- AddWPD_INP_ENTRY_WAIT_MSto raise the bounded in-page drain that a step waits for a trustedinteraction's Event Timing entry. The default stays 250ms; a genuinely slow host, where the entry's
task slips later, can extend it (whole ms) so per-step INP still lands. No change to default behaviour
or output.
#217
f541c48- A stalelatestnow explains itself instead of surfacing a rawENOENTon an internal path. When theartifact the pointer names has been deleted, every consumer verb says which one is gone (recording,
CPU/allocation profile, or run-group manifest), shows its path the way the reports do, and names the
fix: record again, or pass an explicit path. A deleted run-group member names the member.