diff --git a/CHANGELOG.md b/CHANGELOG.md index a6972e9a6..1bee49bc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to GBrain will be documented in this file. +## [0.42.44.0] - 2026-06-13 + +### Fixed + +- **Personal-brain tutorial points at the correct AlphaClaw site.** Step 4 of `docs/tutorials/personal-brain.md` ("Deploy via AlphaClaw on Render") linked to the wrong top-level domain, sending readers to a site that isn't the official AlphaClaw. The link now resolves to the right destination, so the deploy step works as written (gbrain#2165). + ## [0.42.42.0] - 2026-06-12 **`gbrain query` no longer pays a flat 10-second exit tax on managed Postgres behind a transaction-mode pooler — and CLI exit codes finally tell the truth on PGLite.** On deployments where the pooler holds sockets open past the bounded pool drain (gbrain#2084, a residual of gbrain#1972), every query printed its results and then sat for 10 seconds until the force-exit banner fired. The cause was two-layered: the hard-deadline timer was armed *before* the operation handler, so a multi-second search on a large brain burned the teardown budget (and any operation slower than 10 seconds was silently killed mid-run with exit 0 and truncated output); and the CLI never exited explicitly on success — it waited for Bun's event loop to drain, which a stuck pooler socket can hold open forever. diff --git a/VERSION b/VERSION index b7fef61ef..08b3aa9ee 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.42.42.0 \ No newline at end of file +0.42.44.0 diff --git a/package.json b/package.json index a345afb96..9ae1a255f 100644 --- a/package.json +++ b/package.json @@ -143,5 +143,5 @@ "bun": ">=1.3.10" }, "license": "MIT", - "version": "0.42.42.0" + "version": "0.42.44.0" }