Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ jobs:
env: {}
- package: graphile/graphile-pgvector-plugin
env: {}
- package: graphile/postgraphile-plugin-pgvector
env: {}
- package: graphql/server-test
env: {}
- package: graphql/env
Expand Down
2 changes: 1 addition & 1 deletion GRAPHILE.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ All Graphile RC dependencies are pinned to **exact versions** (no `^` or `~` pre
- **graphile-cache** -- LRU cache with PostGraphile v5 integration
- **graphile-test** -- PostGraphile v5 testing utilities
- **graphile-authz** -- Dynamic authorization plugin for PostGraphile v5
- **postgraphile-plugin-pgvector** -- pgvector similarity search plugin for PostGraphile v5
- **graphile-pgvector-plugin** -- pgvector codec + auto-discovered vector search plugin for PostGraphile v5

### `graphql/` packages

Expand Down
9 changes: 8 additions & 1 deletion graphile/graphile-pgvector-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,19 @@
"pgsql-test": "workspace:^"
},
"peerDependencies": {
"@dataplan/pg": "1.0.0-rc.5",
"graphile-build": "5.0.0-rc.4",
"graphile-build-pg": "5.0.0-rc.5",
"graphile-config": "1.0.0-rc.5",
"graphql": "^16.9.0",
"pg-sql2": "5.0.0-rc.4",
"postgraphile": "5.0.0-rc.7"
"postgraphile": "5.0.0-rc.7",
"postgraphile-plugin-connection-filter": "3.0.0-rc.1"
},
"peerDependenciesMeta": {
"postgraphile-plugin-connection-filter": {
"optional": true
}
},
"keywords": [
"postgraphile",
Expand Down
Loading