mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-24 13:54:31 +00:00
fix(postgres): Remove pg18 feature (requires pgrx 0.15.0+)
PostgreSQL 18 support requires pgrx 0.15.0 or later, but we're on pgrx 0.12.x. Remove pg18 feature flag for now and revert to PG17 as the latest supported version. Changes: - Remove pg18 feature from Cargo.toml (pgrx 0.12 incompatible) - Update CI workflow matrix to test PG14-17 only - Update Dockerfile default to PG17 - Add comments noting PG18 planned for future pgrx upgrade PostgreSQL 18 support will be added when upgrading to pgrx 0.15.0+ in a future major release. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
22664c5ceb
commit
48eac863c2
3 changed files with 8 additions and 7 deletions
6
.github/workflows/postgres-extension-ci.yml
vendored
6
.github/workflows/postgres-extension-ci.yml
vendored
|
|
@ -27,15 +27,15 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
pg_version: [14, 15, 16, 17, 18]
|
||||
pg_version: [14, 15, 16, 17]
|
||||
rust: [stable]
|
||||
include:
|
||||
# Test on macOS for pg16 and pg18
|
||||
# Test on macOS for pg16 and pg17
|
||||
- os: macos-latest
|
||||
pg_version: 16
|
||||
rust: stable
|
||||
- os: macos-latest
|
||||
pg_version: 18
|
||||
pg_version: 17
|
||||
rust: stable
|
||||
|
||||
services:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue