Skip to content

0.1.5 Release Notes

Release date: 2026-05-15

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.

  • SHOW COLLECTION <name> adds collection-level diagnostics from the CLI.
  • Grouped retrieval adds GROUP BY <field> and optional GROUP_SIZE <n> to search queries.
  • Point updates add UPDATE ... SET PAYLOAD and UPDATE ... SET VECTOR for patching stored data in place.
  • Docs and examples refresh expands the README, bundled skill guidance, and example scripts to cover the new query surface.
New Syntax in 0.1.5
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>, ...]

Release bundles include:

  • qql-go (Linux amd64, Linux arm64, Windows amd64, macOS arm64)

Tagged releases also publish:

  • qql-go_0.1.5_checksums.txt

See CHANGELOG.md.


For full commit list and details see the original release notes.