-
ablo connect --registerworks against any deployment. Registering your database as an Ablo data source over logical replication is now a first-class path everywhere — the gate that could refuse a new connection-string registration is gone. Pointablo connect --registerat your Postgres and Ablo begins consuming its replication stream while your application keeps owning the write path; registering the source is the enable, with no tier or flag to choose. The signeddataSource()endpoint remains the explicit fallback for databases that can't grant replication. -
More engine failures surface as typed errors you can branch on, instead of opaque
500s. NewAbloErrorcodes:schema_provisioning_forbidden(403— a push tried to create tables in a database where the engine isn't permitted to run DDL),request_too_large(413— a query or commit body exceeded the size limit),commit_operation_invalid(400— a malformed commit operation), andupload_not_configured(503— an upload was attempted with no blob store wired). -
@abloatai/ablo/wirenow exports the protocol schemas.commitOperationSchema,commitPayloadSchema, and the frame schemas let tooling and tests validate client↔engine frames against the same contract the engine enforces. -
@abloatai/ablo/coordinationexposes the conflict-policy vocabulary —defaultPolicy,capabilityPreemptPolicy, andinterpretConflictAxis— for server-side consumers building on the claim model.@abloatai/ablo/schemagains the role primitives (identityRole,entityRole, and their types and schemas) for declaring identity- and entity-scoped roles. -
Removed unused API surface. Dropped the
@abloatai/ablo/server/nextsubpath export and the unusedMutationDispatcherinterface (plus itsMockMutationDispatchertest double) and the offline-mutation-queue internals behind them — none had documented consumers. Every supported entry point (@abloatai/ablo,/ai-sdk,/react,/source,/coordination,/schema,/keys,/auth,/wire, …) is unchanged. -
Internal: the SDK's largest modules — the
Abloclient, the data-source runtime, the transaction queue, and the WebSocket sync loop — were decomposed into cohesive leaf modules. No public runtime API or import path changed. -
CLI & docs.
ablo pushprints a calmer, information-first deploy banner (a production push still requires typing the project name to confirm). The README andAGENTS.mdnow lead with the one-path logical-replication model and clarify that sandbox is test-mode only — in production your rows stay in your database and Ablo holds only the transaction log.