release: 0.55.6 — backtick-only BQ paths in agnes query --remote no longer fail with DuckDB parser error

This commit is contained in:
Monika Feigler 2026-05-20 15:12:13 +02:00
parent 9f778251c3
commit 66fae9209f
2 changed files with 6 additions and 2 deletions

View file

@ -15,12 +15,16 @@ CalVer image tags (`stable-YYYY.MM.N`, `dev-YYYY.MM.N`) are produced for every C
### Changed ### Changed
### Fixed ### Fixed
- `agnes query --remote`: SQL using only a full backtick BQ path (`` `<proj>.<dataset>.<table>` ``) 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 ### Removed
### Internal ### Internal
## [0.55.6] - 2026-05-20
### Fixed
- `agnes query --remote`: SQL using only a full backtick BQ path (`` `<proj>.<dataset>.<table>` ``) 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 ## [0.55.5] — 2026-05-19
### Fixed ### Fixed

View file

@ -1,6 +1,6 @@
[project] [project]
name = "agnes-the-ai-analyst" name = "agnes-the-ai-analyst"
version = "0.55.5" version = "0.55.6"
description = "Agnes — AI Data Analyst platform for AI analytical systems" description = "Agnes — AI Data Analyst platform for AI analytical systems"
requires-python = ">=3.11,<3.14" requires-python = ">=3.11,<3.14"
license = "MIT" license = "MIT"