Release date: 2026-05-15
Summary
Section titled “Summary”This release closes the main remaining QQL 2.3 parity gaps in qql-go by adding collection diagnostics, grouped retrieval, and in-place point updates, while refreshing the docs and examples around the new syntax.
Highlights
Section titled “Highlights”SHOW COLLECTION <name>adds collection-level diagnostics from the CLI.- Grouped retrieval adds
GROUP BY <field>and optionalGROUP_SIZE <n>to search queries. - Point updates add
UPDATE ... SET PAYLOADandUPDATE ... SET VECTORfor patching stored data in place. - Docs and examples refresh expands the README, bundled skill guidance, and example scripts to cover the new query surface.
Supported syntax added in this release
Section titled “Supported syntax added in this release”SHOW COLLECTION <name>SEARCH <name> SIMILAR TO '<query>' LIMIT <n> GROUP BY <field> SEARCH <name> SIMILAR TO '<query>' LIMIT <n> GROUP BY <field> GROUP_SIZE <m> SEARCH <name> SIMILAR TO '<query>' LIMIT <n> USING HYBRID GROUP BY <field> [GROUP_SIZE <m>]UPDATE <name> SET PAYLOAD WHERE id = '<uuid>' {...} UPDATE <name> SET PAYLOAD WHERE id = <integer> {...} UPDATE <name> SET PAYLOAD WHERE <filter> {...}UPDATE <name> SET VECTOR WHERE id = '<uuid>' [<float>, ...] UPDATE <name> SET VECTOR WHERE id = <integer> [<float>, ...]Packaging
Section titled “Packaging”Release bundles include:
qql-go(Linux amd64, Linux arm64, Windows amd64, macOS arm64)
Tagged releases also publish:
qql-go_0.1.5_checksums.txt
Known limits
Section titled “Known limits”Full changelog
Section titled “Full changelog”See CHANGELOG.md.
For full commit list and details see the original release notes.