Releases: stantonius/pgserver-search
Releases · stantonius/pgserver-search
v0.1.6
v0.1.5
First release under the pgserver-search name (renamed from pgserver-search-tools before any wheels shipped).
What's in this release
- Postgres 18.3 bundled
- pgvector 0.8.2 —
CREATE EXTENSION vector;for vector search - pg_trgm —
CREATE EXTENSION pg_trgm;for trigram similarity / fuzzy text search (the fork's headline feature)
Installing
pip install pgserver-search
Wheels are also attached to this release for manual install. Platforms shipped: macos_arm64, linux_x86_64 (Python 3.9–3.12).
Tested
Every release is gated on:
- 16-test pytest suite (server lifecycle, extensions, multi-process, cleanup modes)
test_postgres_version— reads POSTGRES_VERSION from pgbuild/Makefile and asserts the running server reports it (self-syncing across minor bumps)test_pg_trgm—similarity()returns plausible values for identical / disjoint / overlapping stringstest_pgvector— vector(3) insert + nearest-neighbor query via<->
All 16 tests must pass on both macOS arm64 and Linux x86_64 before wheels are uploaded.