From 66fae9209f7edf48f442faff31f0dba2ff2d62aa Mon Sep 17 00:00:00 2001 From: Monika Feigler Date: Wed, 20 May 2026 15:12:13 +0200 Subject: [PATCH] =?UTF-8?q?release:=200.55.6=20=E2=80=94=20backtick-only?= =?UTF-8?q?=20BQ=20paths=20in=20agnes=20query=20--remote=20no=20longer=20f?= =?UTF-8?q?ail=20with=20DuckDB=20parser=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 +++++- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8df4a7a..ae105c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,12 +15,16 @@ CalVer image tags (`stable-YYYY.MM.N`, `dev-YYYY.MM.N`) are produced for every C ### Changed ### Fixed -- `agnes query --remote`: SQL using only a full backtick BQ path (`` `..` ``) no longer fails with `Parser Error: syntax error at or near "``"`. The rewriter now detects backtick-quoted paths and wraps them in `bigquery_query()` before passing to DuckDB, instead of sending the BQ-native backtick syntax to the local DuckDB parser. (#363) ### Removed ### Internal +## [0.55.6] - 2026-05-20 + +### Fixed +- `agnes query --remote`: SQL using only a full backtick BQ path (`` `..
` ``) no longer fails with `Parser Error: syntax error at or near "``"`. The rewriter now detects backtick-quoted paths and wraps them in `bigquery_query()` before passing to DuckDB, instead of sending the BQ-native backtick syntax to the local DuckDB parser. (#363) + ## [0.55.5] — 2026-05-19 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 4ae2ba5..ac9851e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agnes-the-ai-analyst" -version = "0.55.5" +version = "0.55.6" description = "Agnes — AI Data Analyst platform for AI analytical systems" requires-python = ">=3.11,<3.14" license = "MIT"