Skip to content

Merge the v0.3.1 maintenance line into main and release 0.3.2 - #131

Merged
AetherAI3 merged 5 commits into
mainfrom
fix/reconcile-v031-into-main
Sep 3, 2026
Merged

AetherAI3 merged 5 commits into
mainfrom
fix/reconcile-v031-into-main

Conversation

@AetherAI3

Copy link
Copy Markdown
Owner

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 is not cosmetic

openTargetChecked and openBrowserAwaitLaunch were absent from main, and main's openBrowserChecked was a synchronous wrapper that returned the launch plan without waiting for the OS launcher to start or fail:

/** Same launch, but with the outcome so a caller can report a refusal. */
export function openBrowserChecked(url: string): OpenOutcome {
  return openTarget(url);   // reports only that a spawn was attempted
}

On a machine with no browser, aether auth login reported 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 in ci.yml, release.yml, release-truth.yml, and verify-production.ts.

Conflicts, resolved deliberately

File Resolution
README.md, 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, src/main.ts reconciled by hand

0.3.2

Version bumped across package.json, package-lock.json, src/version.ts, the README rows and source-scope banner, and the PyPI launcher via packages/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.md with measured evidence — 1,387,500 packed bytes, 4,461,548 unpacked, 673 entries, shasum 3e22664f…, from a local npm pack --dry-run against this tree
  • the RELEASE_NOTES.md entry, docs/releases/2026-09-03.md, and its index row
  • V031_PACKETV032_PACKET in release_coherence.test.ts, the constant the suite checks the packet against

Why it will not silently recur

v0.3.1 is now an ancestor of main, so the next occurrence is visible to git merge-base --is-ancestor rather than only to whoever compares the registry against package.json by 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

AetherAI3 and others added 5 commits August 28, 2026 22:58
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>
@AetherAI3
AetherAI3 merged commit 6864d71 into main Sep 3, 2026
7 checks passed
@AetherAI3
AetherAI3 deleted the fix/reconcile-v031-into-main branch September 3, 2026 19:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant