* Upgrade xterm to 6.1.0-beta.303 and generate the addon patches
Takes the current xterm beta line: xterm 287 -> 303, addon-webgl 286 -> 299,
addon-serialize 287 -> 300, headless 302, the remaining addons -> 300, and the
same set on mobile. All four packages stamp upstream commit d3e32b3.
The reasons are upstream #6042/#6043/#6055 (a shared glyph atlas no longer
garbles sibling panes on a page merge, clear, or sampler-budget overflow) and
Note that core 303 is not image-addon-only over 302: it carries the buffer perf
work, including the new BufferLineStringCache.
addon-webgl and addon-serialize move into the patch generator
--------------------------------------------------------------
Both were hand-edited minified bundles, which is what the Known Gaps section of
docs/reference/xterm-patch-regeneration.md described. Both reproduce byte for
byte from the pinned commit, so they are now manifest entries generated from a
source patch like @xterm/xterm already was. Their sourcemaps now move with their
bundles; before this they shipped maps whose offsets did not match the code
beside them.
The webgl patch shrinks from a 1.06 MB hand-edited bundle to a 6.6 KB source
patch, because upstream took the invalidation half Orca had backported. What is
left is only what upstream still lacks: the fragment-shader else branch for a
v_texpage past the sampler budget, the clearTexture guard that no-ops once a
merged page holds index 0, spending the merge retry budget before beginFrame
latches the version it saw, and Orca's font-weight probe.
The serialize source patch is byte-for-byte the same fixes as before; upstream
changed nothing in that addon between 287 and 300.
Generator fixes, each of which failed silently
----------------------------------------------
- `--relative` was appended after the `--` separator in CHECKOUT_DIFF_FLAGS, so
git read it as a pathspec and kept repo-root-relative paths, dropping every
source hunk from an addon's patch.
- `git apply` run from a package subdirectory still resolves patch paths from
the repo root, skips every hunk and exits 0. It now runs from the root with
`--directory=<packageDir>`, and a source patch that leaves the checkout
unchanged is a hard failure rather than an empty patch.
- An addon's own `tsgo -p .` has empty files/include and only project
references, so it emits nothing and the addon webpack then fails on a missing
./out/. The root build now runs first.
- versionStampFile is optional; publish.js stamps an addon's package.json, which
overlayBuildOutput never patches.
- On a version bump the lockfile has no entry under the new key yet, so --write
reports the gap instead of aborting mid-run. --check still fails on it.
Adding the two addons pushed the generator and the Electron packaging contract
test over max-lines, so the patch-text helpers move to xterm-patch-text.mjs
(pure text: no checkout, no build) and the vendored-xterm assertions move out of
the packaging contract into xterm-webgl-runtime-contract.test.mjs.
Tests
-----
Four tests asserted upstream bugs that are now fixed, not Orca behaviour:
- xterm-user-scrolling-contract pinned headless and core by version string.
Upstream bumps each package only when its own output changes, so headless 302
and core 303 are the same source. It now asserts they share a commit.
- Five CSI 3 J assertions expected a reader stranded at the top after an erase.
Upstream #6081 clears isUserScrolling there, so the erase releases them to the
bottom instead. Orca's pin still lands them correctly, because its parser
handler observes the erase before xterm's own handler runs.
- The IME transaction test hard-coded the xterm version; it now reads the
installed package, since the point is that bundle, map and version agree.
- The Electron runtime contract asserted Orca's old clearModelGeneration. Shared
atlas invalidation is upstream's now, so it asserts pageLayoutVersion on the
resolved dependency, plus the Orca-only hunks on the patch.
Verified: 66,008 unit tests, mobile's 3,863, the four WebGL atlas e2e specs, and
`regenerate-xterm-patches.mjs --check` in sync on all three packages.
Left alone deliberately: resetAllTerminalWebglAtlases still fans out globally
even though clearTexture now self-heals siblings, and upstream #6068
(WebglAddon.dispose leaks the GL context) is still open.
* Drop the two unused WebGL atlas fan-out exports
resetAllTerminalWebglAtlases and presentAllTerminalPanesWithoutAtlasClear have
no callers, and had none at cadfc55102 either — the last call site went in
#6949, which routed reveal recovery through
resetAndRefreshAllTerminalWebglAtlases instead. Only a comment in
pane-manager.ts still named the first one; it now points at the live entry
point. scheduleRevealPresent leaves the registry's structural type with them,
though the manager method stays: terminal-visibility-resume.ts calls it
directly.
This is dead-code removal, not a consequence of the xterm bump. The live
recovery path is unchanged.
resetAndRefreshAllTerminalWebglAtlases stays, and so does the reveal-time
escalation in pane-reveal-repaint.ts. Upstream 299 does make a pane-local
clearTexture bump pageLayoutVersion so siblings rebuild on their next frame,
which is the bug the escalation was written for, but I could not demonstrate
that removing it is safe: with the escalation removed,
floating-workspace-shared-glyph-atlas.spec.ts still passed headful, and it also
passed with upstream's mechanism deliberately disabled (pageLayoutVersion
pinned to 0 in the installed bundle, verified present in the built renderer).
A guard that passes with the fix disabled cannot license removing the
workaround, so the escalation stays until that spec can reproduce the garbling.
Verified: pane-manager and terminal-pane suites (4,713 tests), typecheck, the
headful shared-atlas spec, and the three headless WebGL specs.
* Give the shared glyph atlas spec a trigger that can fail
floating-workspace-shared-glyph-atlas.spec.ts guards the corruption where one
terminal wiping the module-global atlas leaves sibling terminals drawing from
stale texture coordinates. Both of its tests drive that through a floating
panel reveal, and Orca's reveal paths escalate to a registry-wide atlas reset
that repaints every pane — so the recovery under test heals the damage before
the assertion runs, and the tests pass whether or not xterm propagates the
invalidation at all.
The new test clears the shared atlas straight through the floating manager with
the panel closed, so nothing else repaints the workspace terminal, then repaints
it with terminal.refresh(). That is the load-bearing detail: _updateModel skips
cells whose content is unchanged, so the refresh reuses vertices baked against
the pages that were just wiped, which is exactly the state the fix has to
recover from.
Verified as a discriminator rather than assumed. Pinning ITextureAtlas's
pageLayoutVersion getter to 0 in the installed bundle, which disables the
per-renderer invalidation upstream added in addon-webgl 0.20.0-beta.299, and
confirming that reached the built renderer:
fix intact: siblingClearIntact=true 1 passed
fix disabled: siblingClearIntact=false 1 failed
The failure renders the workspace terminal completely blank — stale coordinates
into a wiped atlas sample nothing. The two reveal tests pass unchanged in both
configurations, which is the gap this closes.
* Compare shared-atlas screenshots with tolerance instead of byte equality
Byte equality fails on sub-pixel antialiasing noise that leaves every glyph
legible, so the headful spec flaked under xterm 303. Reuse the existing
compareTerminalScreenshots helper: real stale-model corruption blanks the
terminal at ~3% of pixels, twice the helper's 1.5% threshold, so the looser
oracle keeps its teeth. Log the ratio so failures are diagnosable.
* fix(xterm): cancel empty deferred IME compositions
* test(xterm): strengthen runtime patch contracts
15 KiB
xterm Patch Regeneration
Scope
Orca ships @xterm/xterm with four source changes it needs and upstream has
not taken: the IME composition hooks, the xterm-composition-* custom events
they raise, the ICompositionHelper surface those hooks widen, and a SortedList
fix. pnpm applies them through config/patches/@xterm__xterm@<version>.patch.
That patch touches eight files. Four are hand-authored source
(src/browser/CoreBrowserTerminal.ts, src/browser/Types.ts,
src/browser/input/CompositionHelper.ts, src/common/SortedList.ts) and four
are the build output those sources produce (lib/xterm.js, lib/xterm.mjs,
and both sourcemaps). The bundle half is 7.3 MB of minified code. It is
generated, and this document exists so nobody edits it by hand.
The two halves are the same edits diffed two ways, so the generator requires
them to match byte for byte on every source file. A hunk the shipped patch
cannot name — upstream's .npmignore strips src/**/*.test.ts — would be
dropped by the next --write, so it fails the run instead.
config/patches/xterm-src/@xterm__xterm@<version>.src.patch is the source of
truth. Everything else is derived from it by
config/scripts/regenerate-xterm-patches.mjs, which is pinned to the exact
upstream commit the published tarball was built from.
@xterm/addon-webgl and @xterm/addon-serialize are generated the same way,
from their own source patches under config/patches/xterm-src/. Their entries
differ only in packageDir and build steps; everything below applies to all
three. @xterm/addon-ligatures is the one patch still written by hand — see
Known Gaps.
Rules
- Never edit
config/patches/@xterm__*@<version>.patch. Edit the source patch and regenerate. - Never edit
lib/inside a patchednode_modulestree and re-runpnpm patch-commit. That is how bundle hunks stop matching their sources. - Every source change must land together with the regenerated bundle hunks and
the
pnpm-lock.yamlhash bump, in one commit. - The upstream commit lives in
config/patches/xterm-upstream.json, not in a comment. A version bump that leaves it stale fails the generator, it does not silently patch the wrong tree. - Sourcemaps move with the bundle, and are never silently omitted. The patch
moves the code, so dropping only the map hunks would ship offsets pointing at
the wrong lines.
sourcemaps.policyacceptsincludeand nothing else: it costs about 5.8 MB of the emitted patch and is required becausesrc/renderer/src/components/terminal-pane/terminal-ime-xterm-transaction-events.test.tsreadslib/*.mapand asserts the mappedVersion.tsmatches the runtime version. Deleting the maps was once an option; the code that did it was removed as unreachable, so re-adding the policy means re-adding that code. --checkis the authority on the lockfile, notpnpm install. pnpm writes the patch hash in two places —patchedDependenciesand every resolution key that depends on the patched package — and on a warm store it will leave the resolution keys at their previous value while reporting success. That installs locally and drifts on CI's cold store. For a version bump, follow the Version Bumps workflow through step 5 (the final--check); if it reports a stale hash after an install, rerun--write. For a source-only edit, the four-step workflow above ends at--check.
Workflow
# 1. Edit the source hunks.
$EDITOR config/patches/xterm-src/@xterm__xterm@6.1.0-beta.303.src.patch
# 2. Rebuild the bundle hunks, the full patch, and the lockfile hash.
node config/scripts/regenerate-xterm-patches.mjs --write
# 3. Reinstall so node_modules picks up the new patch hash.
pnpm install
# 4. Confirm the tree is self-consistent.
node config/scripts/regenerate-xterm-patches.mjs --check
Editing a patch file by hand is awkward for anything larger than a one-liner. For a substantial change, work in the generator's own checkout instead — after any run it is left at the pinned commit with the source patch applied:
node config/scripts/regenerate-xterm-patches.mjs --check --work-dir=/tmp/xterm
$EDITOR /tmp/xterm/upstream/src/browser/input/CompositionHelper.ts
git -C /tmp/xterm/upstream diff -- src/ > config/patches/xterm-src/@xterm__xterm@6.1.0-beta.303.src.patch
node config/scripts/regenerate-xterm-patches.mjs --write --work-dir=/tmp/xterm
For an addon, edit under addons/<name>/ and take the diff from that directory
with --relative, so the patch is rooted at the package the way the published
tarball is:
$EDITOR /tmp/xterm/upstream/addons/addon-webgl/src/TextureAtlas.ts
git -C /tmp/xterm/upstream/addons/addon-webgl diff --relative -- src/ \
> config/patches/xterm-src/@xterm__addon-webgl@0.20.0-beta.299.src.patch
--write rewrites the source patch into the canonical form it would emit on a
re-diff, so a hand-produced git diff gets normalized on the first run rather
than fighting --check forever.
Run the checkout outside this repository. A build tree underneath it makes
tsgo walk up into Orca's own node_modules and fail with TS2300: Duplicate identifier, which is a symptom of where the tree sits and not of the patch.
How the Commit Is Known
Upstream bin/publish.js sets packageJson.commit before npm publish, so
each published tarball names the commit that built it. The generator asserts
that stamp against xterm-upstream.json and then compares the tarball's src/
against the checkout file by file. Only src/common/Version.ts may differ,
because publish.js rewrites the version immediately before packaging; the
generator applies the same stamp.
That pair of checks is what makes the rebuild trustworthy. Without them a wrong commit would still produce a plausible-looking 7 MB patch.
Build Order
Upstream's publish path is npm ci → stamp Version.ts → npm run package.
npm run package runs webpack for lib/xterm.js and then, via postpackage,
bin/esbuild_all.mjs --prod for lib/xterm.mjs.
An addon needs three steps, in this order, and the first is easy to miss:
- root
npm run build. The addon's ownnpm run buildistsgo -p .against a tsconfig whosefilesandincludeare both empty and which only lists project references. In-pmode tsgo does not build references, so it succeeds while emitting nothing, and the addon's webpack then fails on a missing./out/. The root build is what populates it. - addon
npm run package— the addon's own webpack, which emits the CJSlib/addon-*.js. The rootpackagescript never builds this. - root
npm run esbuild-package—bin/esbuild_all.mjs --prod, which emits the ESMlib/addon-*.mjsfor every addon at once.
Do not run npm run setup after the packaging build. setup is the
development esbuild pass with minify: false. Running it afterwards overwrites
lib/xterm.mjs with an unminified bundle and a map that no longer matches, and
the resulting patch is silently wrong — the failure mode is a .mjs that is
50% larger than the published one, which is easy to miss inside a 7 MB diff.
forbiddenBuildScripts in the manifest encodes this and the generator refuses
to run a build step that names one of those scripts.
The generator also builds the unmodified commit first and asserts that it
reproduces the published lib/ byte for byte before it emits anything. A
toolchain or build-order problem therefore surfaces as an explicit "did not
reproduce the published bundles" error rather than as 7 MB of mystery diff.
Recovering From Hand-Edited Bundles
Between 2026-08-09 and 2026-08-17 this harness did not exist, and four fixes
landed by editing the minified bundles directly. The tell is code no minifier
emits: const in an otherwise let-only bundle, and identifiers like $rl,
$hp, $tid.
Recovery is not a rewrite. The hand-edits were applied to src/ as well, so the
source hunks in the shipped patch were already correct and --write re-derives
the bundles from them. What changes is cosmetic and expected:
- Hand-written locals collapse back into minifier names, which shifts esbuild's
frequency-ordered allocation and can swap two short names bundle-wide (
i↔tin the.mjs,w↔yin the.js). Most differing lines are the same length. - Hand-written equivalents normalize to what the toolchain actually emits
(
!!xback toBoolean(x), an escaped\u200Eback to the literal character).
To confirm a regeneration is semantically a no-op rather than a revert, compare identifier multisets between the old and new bundle instead of reading the diff: every name that is not a single-letter minifier local should appear the same number of times in both. Anything else is a real change and needs explaining.
The Lockfile Moves With the Patch
pnpm derives the patchedDependencies hash in pnpm-lock.yaml — and the
.pnpm/@xterm+xterm@<version>_patch_hash=<hash>/ store directory name — from
the sha256 of the patch file itself. A regenerated patch without the lockfile
bump fails pnpm install --frozen-lockfile on every machine except the
author's. --write makes that edit; --check fails if it is missing.
config/scripts/regenerate-xterm-patches.test.mjs asserts the same thing
without a network or a build, so the ordinary test job catches lockfile drift
in milliseconds even though the full rebuild runs in its own CI lane.
Toolchain Pin
toolchain in the manifest records what upstream's package-lock.json resolves
at the pinned commit, and the generator fails if npm ci produces something
else. The entry that matters is @typescript/native-preview
(tsgo), which upstream pins to a dated development build —
7.0.0-dev.20260521.1 at the time of writing. It is a real published version
and npm does not prune old releases, but it is the one dependency of this scheme
that is not a stable release.
If that version ever becomes unresolvable the generator fails with a toolchain
error naming it. Recovery is to move the pin to the next upstream commit whose
package-lock.json resolves, re-verify that the rebuild still reproduces the
published bundles, and regenerate. The committed patch keeps working the whole
time — only regeneration is blocked, so this is never an outage.
Patch Path Rooting
A published tarball is rooted at the package, so an addon's patch names
src/TextureAtlas.ts, not addons/addon-webgl/src/TextureAtlas.ts. Two places
have to agree with that, and both fail silently if they do not:
- The checkout diff passes
--relative, which must sit before the--separator inCHECKOUT_DIFF_FLAGS. After it, git reads it as a pathspec and keeps repo-root-relative paths, and every source hunk then falls out of the emitted patch. git applyruns from the repo root with--directory=<packageDir>. Run from a subdirectory instead, git still resolves patch paths from the repo root, skips every hunk, and exits 0. The generator guards this by failing when applying a source patch leaves the checkout unchanged.
Version Bumps
Upstream publishes each package only when its own output changes, so the four
packages carry different beta numbers while sharing one commit — at the time of
writing @xterm/xterm@6.1.0-beta.303 and @xterm/headless@6.1.0-beta.302 are
both built from d3e32b3. Match on package.json.commit, never on the version
string; xterm-user-scrolling-contract.test.ts asserts that pairing for
headless and core.
Bumping @xterm/xterm is:
- Update the version in
package.jsonand runpnpm install. - Rename both patch files to the new version and update
patch,sourcePatch, andversioninxterm-upstream.json. - Update
upstream.committo thecommitfield of the new tarball'spackage.json, andtoolchainto whatever the newpackage-lock.jsonresolves. node config/scripts/regenerate-xterm-patches.mjs --write.pnpm install, then--check. On a bump the lockfile has no entry under the new key yet, so--writereports the gap and leaves the hash topnpm install;--checkis what proves the two agree afterwards.
Step 4 is where a real upstream conflict shows up: git apply of the source
patch fails against the new tree. Resolve it in the checkout, re-diff, and
rerun. The bundle hunks need no attention at any point.
Why Not Vendor a Fork
A vendored @xterm/xterm fork removes the patch entirely, but it moves Orca off
the published package, so every upstream beta becomes a merge rather than a
version bump, and Orca inherits responsibility for building and publishing a
package it does not own. The patch is four small source hunks against a commit
that reproduces byte for byte; a fork is a much larger standing cost for the
same result.
Why Not Handle Composition at Runtime
CompositionHelper hooks four private call sites upstream of onData, and
SortedList has no public surface at all. There is no supported extension point
that reaches either, so a runtime shim would mean reaching into _core
internals that upstream renames freely between betas. The patch is the smaller
risk.
CI Contract
xterm_patch_sync in .github/workflows/pr.yml runs
regenerate-xterm-patches.mjs --check on every PR and is part of the verify
aggregate. It clones the pinned commit, installs upstream's toolchain, builds
twice, and byte-compares the result against the committed patch. Both builds and
the diff together are about eight seconds; npm ci for upstream's toolchain is
what the job actually spends its minutes on, and the cache key is the manifest.
config/scripts/regenerate-xterm-patches.test.mjs covers the pure pieces —
pnpm's diff flags and normalization, hunk splitting, round-trip stability, the
commit and build-order assertions, and lockfile coupling — with no network and
no build, so they run in the ordinary test shards.
Known Gaps
@xterm/addon-ligatures is still patched by hand, and can stay that way: the
patch is a fifteen-line package.json edit that repoints module and adds an
exports block, touching no bundle and no sourcemap. Nothing about it is
generated, so there is nothing for this harness to verify.
The addons were folded into this manifest on 2026-08-29. Before that they were
hand-edited minified bundles carrying a literal /* PATCH(orca): ... */ comment
inside minified code, parser round-trip artifacts (!0 printed back as true,
locals renamed i → i5), and no .map hunks at all — so both shipped
sourcemaps whose offsets did not match the bundle beside them. All four
@xterm/addon-webgl artifacts and all four @xterm/addon-serialize artifacts
now reproduce byte for byte from the pinned commit, which is what closed it.
The one thing still unproven is that this holds across upstream revisions rather
than at this commit. addon-serialize.js.map did not reproduce on the first
attempt here; the cause was a stale out/ from a wrong build order, not
upstream nondeterminism, and it reproduced exactly once the root build ran
first. Treat a future non-reproducing artifact as a build-order bug until proven
otherwise.