From a22095564092252ee765dea808de6de02afa022e Mon Sep 17 00:00:00 2001 From: ZdenekSrotyr Date: Tue, 5 May 2026 15:01:37 +0200 Subject: [PATCH] =?UTF-8?q?release:=200.35.1=20=E2=80=94=20CLI=20--remote?= =?UTF-8?q?=20query=20timeout=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch release bundling the only Unreleased change: bump httpx client timeout for agnes query --remote from 30s to 300s (configurable via AGNES_QUERY_TIMEOUT). Renames CHANGELOG [Unreleased] section to [0.35.1] and bumps pyproject version to match. --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7bec4d..2d3a8d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ CalVer image tags (`stable-YYYY.MM.N`, `dev-YYYY.MM.N`) are produced for every C ## [Unreleased] +## [0.35.1] — 2026-05-05 + ### Fixed - `agnes query --remote` no longer dies after 30s on long-running BigQuery SELECTs. The CLI HTTP client now defaults to a 300s timeout for `/api/query` and exposes `AGNES_QUERY_TIMEOUT` (seconds, float) for operators who need to extend it further. Other CLI calls keep the 30s default. (`cli/client.py`, `cli/commands/query.py`) diff --git a/pyproject.toml b/pyproject.toml index 8fd52a8..4359a74 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agnes-the-ai-analyst" -version = "0.35.0" +version = "0.35.1" description = "Agnes — AI Data Analyst platform for AI analytical systems" requires-python = ">=3.11,<3.14" license = "MIT"