Releases: thepradip/SQLAS
Releases · thepradip/SQLAS
Release list
SQLAS v2.0.0 — Agentic Quality, Cache Metrics & AST Security
What's new in v2.0.0
🔒 Security fix — AST-based read-only enforcement
read_only_compliance upgraded from keyword regex to sqlglot AST parsing.
The old approach could be silently bypassed:
-- v1.x missed this (returned 1.0 wrong)
WITH x AS (INSERT INTO t VALUES(1)) SELECT 1
-- v2.0 correctly blocks it (returns 0.0)
No new dependencies — sqlglot was already required.