release: v0.18.0 - #264
Merged
Merged
Conversation
Minor bump. Three features land (per-agent Claude provider profiles, the ZCode BYOA engine, one-of-us routing election) plus a document data-loss fix and two schema migrations. MIN/MAX_SUPPORTED_SCHEMA_VERSION move 7 -> 9. There is no overlap with the v0.17.0 image's range (7-7), so once the candidate migration takes production to 9 the previous image can no longer boot and the deploy workflow will refuse to auto-restore a failed candidate — by design. A failed rollout is recovered forward, not back. Claude-Session: https://claude.ai/code/session_01Tw4EygpE4o73TMLzyPFWEv
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.
Everything merged to
mainsincev0.17.0. Minor bump: three user-visible features land (per-agent Claude provider profiles, the ZCode BYOA engine, one-of-us routing election), plus two schema migrations and a document data-loss fix.Features
0008-agent-provider-profile.zcode-acp-serverover ACP. Lands in the compatibility tier (SANDBOXED_ENGINE_IDSis unchanged), so it needsCUMORA_BYOA_ALLOW_UNSANDBOXED=1to run.ROUTING_ONE_OF_US, default off. Migration0009-agent-routing-claims.Fixes
document_updatesbyMAX(id). Those two cover different sets, so an update persisted by another instance could be deleted without ever entering the snapshot: permanent loss on the next cold load. Snapshots are now built from the persisted log under a document-level advisory lock, and only the exact merged rows are deleted.--continue. The verbatim-duplicate check is unaffected — it is deliberately not gated on the bypass.replyCountbumped, andreplyCount > 0gates the onlyopenThreadViewcall site, so the author had no entrance to their own thread.Schema
MIN_SUPPORTED_SCHEMA_VERSION/MAX_SUPPORTED_SCHEMA_VERSIONmove 7 → 9 (migrations 0008 and 0009).There is no overlap with the v0.17.0 image's supported range (7–7). Once the candidate migration Job takes production to 9, the previous image can no longer boot, so the deploy workflow's automatic recovery will classify a failed candidate as newer schema and refuse to auto-restore — by design. If the candidate rollout fails, the path forward is a forward-compatible image, not a rollback. Both migrations are additive (one new column set, one new table) and neither rewrites existing rows.
Migration
0009creates a brand-new table plus its index, so it does not contend with production traffic for locks — the multi-table-DDL deadlock that bit v0.13.1/v0.14.0 does not apply here.Verification
Ran on the merged tree (
main+ this bump), same gates as CI:npm run lint(Biome) — passnpm run typecheck— passnpm run server:typecheck— passnpm run guard:big-brain,guard:llm-tracked,guard:engine-registry— passnpm test— pass (the one local failure isagents-observability-turns.test.ts, which needs a real Postgres; CI provides one)schema-migrations.test.ts) — passhttps://claude.ai/code/session_01Tw4EygpE4o73TMLzyPFWEv