Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -861,13 +861,14 @@ From `youtube/upload.py` (HTTP errors from YouTube Data API v3):

Dates are merge dates. Older releases are tagged; `git log` is the full record.

### Unreleased — the Flow migration
### v1.2.0 — 2026-09-18 — the Flow migration

Flow moved to `flow.google.com` in September 2026 and stopped minting the bearer
token the old REST API needed. Everything below is that migration.

| Date | Change |
|---|---|
| 2026-09-18 | `/health` reports the app's real version again — it had been pinned at `0.2.0` since v0.2.0 while the app said `1.1.0`, because only one of the two literals was ever bumped ([#52](../../pull/52)) |
| 2026-09-18 | Omni 1.1 Flash first-frame, first+last and reference modes ported to `batchexecute` ([#48](../../pull/48), [#50](../../pull/50)). Unported capabilities drop from four to three, all on the Veo path |
| 2026-09-17 | REST transport removed — the ten `_legacy_*` methods, the `USE_BATCH_RPC` branches, the fingerprint pools and `agent/services/headers.py`; net −1043 lines ([#49](../../pull/49)) |
| 2026-09-17 | Migrated image API: variant submit, settled-wave retry, and 2K/4K image export via `SPrCad` ([#42](../../pull/42)) |
Expand Down
4 changes: 2 additions & 2 deletions agent/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ async def lifespan(app: FastAPI):
logger.info("Flow Kit stopped")


app = FastAPI(title="Flow Kit", version="1.1.0", lifespan=lifespan)
app = FastAPI(title="Flow Kit", version="1.2.0", lifespan=lifespan)

app.add_middleware(
CORSMiddleware,
Expand Down Expand Up @@ -171,7 +171,7 @@ async def health():
client = get_flow_client()
return {
"status": "ok",
"version": "0.2.0",
"version": app.version,
"extension_connected": client.connected,
"ws": client.ws_stats,
}
Expand Down
Loading