Skip to content

Commit 1506166

Browse files
authored
Merge pull request #768 from constructive-io/devin/1772455386-pgvector-auto-discover
feat(graphile-pgvector-plugin): auto-discover vector columns; remove old postgraphile-plugin-pgvector
2 parents c432832 + 358b303 commit 1506166

25 files changed

Lines changed: 932 additions & 1251 deletions

File tree

.github/workflows/run-tests.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ jobs:
7777
env: {}
7878
- package: graphile/graphile-pgvector-plugin
7979
env: {}
80-
- package: graphile/postgraphile-plugin-pgvector
81-
env: {}
8280
- package: graphql/server-test
8381
env: {}
8482
- package: graphql/env

GRAPHILE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ All Graphile RC dependencies are pinned to **exact versions** (no `^` or `~` pre
5959
- **graphile-cache** -- LRU cache with PostGraphile v5 integration
6060
- **graphile-test** -- PostGraphile v5 testing utilities
6161
- **graphile-authz** -- Dynamic authorization plugin for PostGraphile v5
62-
- **postgraphile-plugin-pgvector** -- pgvector similarity search plugin for PostGraphile v5
62+
- **graphile-pgvector-plugin** -- pgvector codec + auto-discovered vector search plugin for PostGraphile v5
6363

6464
### `graphql/` packages
6565

graphile/graphile-pgvector-plugin/package.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,19 @@
3737
"pgsql-test": "workspace:^"
3838
},
3939
"peerDependencies": {
40+
"@dataplan/pg": "1.0.0-rc.5",
4041
"graphile-build": "5.0.0-rc.4",
4142
"graphile-build-pg": "5.0.0-rc.5",
4243
"graphile-config": "1.0.0-rc.5",
4344
"graphql": "^16.9.0",
4445
"pg-sql2": "5.0.0-rc.4",
45-
"postgraphile": "5.0.0-rc.7"
46+
"postgraphile": "5.0.0-rc.7",
47+
"postgraphile-plugin-connection-filter": "3.0.0-rc.1"
48+
},
49+
"peerDependenciesMeta": {
50+
"postgraphile-plugin-connection-filter": {
51+
"optional": true
52+
}
4653
},
4754
"keywords": [
4855
"postgraphile",

0 commit comments

Comments
 (0)