release: 0.55.6 — backtick-only BQ paths in agnes query --remote no longer fail with DuckDB parser error
This commit is contained in:
parent
9f778251c3
commit
66fae9209f
2 changed files with 6 additions and 2 deletions
|
|
@ -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 (`` `<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
|
||||
|
||||
### 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
|
||||
|
||||
### Fixed
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue