Merge the v0.3.1 maintenance line into main and release 0.3.2 - #131
Merged
Merged
Conversation
v0.3.1 was released from codex/patch-release-031, a branch that never merged. main went on without it, so two things were true at once: the registry served 0.3.1 while main declared 0.3.0, and main was missing code that shipped to users. The missing code was not cosmetic. openTargetChecked and openBrowserAwaitLaunch were absent, and main's openBrowserChecked was a synchronous wrapper that returned the launch plan without waiting for the OS launcher to start or fail. On a machine with no browser, `auth login` reported a launch it had only attempted. This merge restores that fix and the async login path that uses it, along with the maintenance line's release guards in ci.yml, release.yml, release-truth.yml, and verify-production.ts. Five conflicts, resolved deliberately: - README.md and test/login.test.ts kept main's rebuilt copies; the 0.3.1 side was the older front door. - src/commands/login.ts took the 0.3.1 side, because that side is the fix. - package.json and src/main.ts were reconciled by hand. The version becomes 0.3.2 across package.json, package-lock.json, src/version.ts, the README rows, and the PyPI launcher via packages/sync-version.mjs. This candidate publishes no command, flag, or contract of its own; the feature work already on main is carried by the merge and is deliberately not announced here, so whichever release announces it can take the next minor number. Declaring a version obliges the release record that goes with it, so this also adds OPERATOR-PACKET-v0.3.2.md with measured evidence (1,387,500 packed bytes, 4,461,548 unpacked, 673 entries, shasum 3e22664f, from a local dry run against this tree), the RELEASE_NOTES entry, docs/releases/2026-09-03.md, its index row, and the V032_PACKET constant the coherence suite checks the packet against. v0.3.1 is now an ancestor of main, so the next occurrence of this drift is visible to `git merge-base --is-ancestor` rather than only to whoever compares the registry against package.json by hand. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.
v0.3.1was released fromcodex/patch-release-031, a branch that never merged. main went on without it, so two things were true at once: the registry served0.3.1while main declared0.3.0, and main was missing code that shipped to users.The missing code is not cosmetic
openTargetCheckedandopenBrowserAwaitLaunchwere absent from main, and main'sopenBrowserCheckedwas a synchronous wrapper that returned the launch plan without waiting for the OS launcher to start or fail:On a machine with no browser,
aether auth loginreported a launch it had only attempted. This merge restores the fix and the async login path that uses it, plus the maintenance line's release guards inci.yml,release.yml,release-truth.yml, andverify-production.ts.Conflicts, resolved deliberately
README.md,test/login.test.tssrc/commands/login.tspackage.json,src/main.ts0.3.2
Version bumped across
package.json,package-lock.json,src/version.ts, the README rows and source-scope banner, and the PyPI launcher viapackages/sync-version.mjs.Patch, not minor: this candidate publishes no command, flag, or contract of its own. The device-runtime, telemetry, and session-library work already on main is carried by the merge and deliberately not announced here — whichever release announces it should take the next minor number.
Release record
Declaring a version obliges the record that goes with it, so this also adds:
docs/releases/OPERATOR-PACKET-v0.3.2.mdwith measured evidence — 1,387,500 packed bytes, 4,461,548 unpacked, 673 entries, shasum3e22664f…, from a localnpm pack --dry-runagainst this treeRELEASE_NOTES.mdentry,docs/releases/2026-09-03.md, and its index rowV031_PACKET→V032_PACKETinrelease_coherence.test.ts, the constant the suite checks the packet againstWhy it will not silently recur
v0.3.1is now an ancestor of main, so the next occurrence is visible togit merge-base --is-ancestorrather than only to whoever compares the registry againstpackage.jsonby hand.Local: the release-coherence, public-docs-truth, opener, login, main-entrypoint, and production-hardening suites pass (58 tests), as do the 29 PyPI launcher tests. Full-suite verification is CI's.
🤖 Generated with Claude Code