From 17951e1c233eabe984dba28392f6eba13597d9ab Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Sun, 28 Jun 2026 01:32:30 +0000 Subject: [PATCH] fix: replace workspace:^ in peerDependencies with real version ranges graphile-llm had 'graphile-search: workspace:^' in peerDependencies which leaked into the published package on npm, breaking 'npm install -g pgpm' (EUNSUPPORTEDPROTOCOL). Same issue existed in graphile-postgis, graphile-pg-aggregates, and graphile-ltree for graphile-connection-filter. pnpm replaces workspace: protocols in dependencies during publish, but peerDependencies are not always replaced by the lerna/makage publish pipeline. --- graphile/graphile-llm/package.json | 2 +- graphile/graphile-ltree/package.json | 2 +- graphile/graphile-pg-aggregates/package.json | 2 +- graphile/graphile-postgis/package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/graphile/graphile-llm/package.json b/graphile/graphile-llm/package.json index 6c3b254b9..4d84d9c6d 100644 --- a/graphile/graphile-llm/package.json +++ b/graphile/graphile-llm/package.json @@ -40,7 +40,7 @@ "graphile-build": "5.0.2", "graphile-build-pg": "5.0.2", "graphile-config": "1.0.1", - "graphile-search": "workspace:^", + "graphile-search": "^1.18.0", "graphile-utils": "5.0.0", "graphql": "16.13.0", "pg-sql2": "5.0.1", diff --git a/graphile/graphile-ltree/package.json b/graphile/graphile-ltree/package.json index d2c670beb..3100c7f52 100644 --- a/graphile/graphile-ltree/package.json +++ b/graphile/graphile-ltree/package.json @@ -34,7 +34,7 @@ "graphile-build": "5.0.2", "graphile-build-pg": "5.0.2", "graphile-config": "1.0.1", - "graphile-connection-filter": "workspace:^", + "graphile-connection-filter": "^1.13.0", "graphql": "16.13.0", "pg-sql2": "5.0.1", "postgraphile": "5.0.3" diff --git a/graphile/graphile-pg-aggregates/package.json b/graphile/graphile-pg-aggregates/package.json index 4635445f2..b8a4eddcc 100644 --- a/graphile/graphile-pg-aggregates/package.json +++ b/graphile/graphile-pg-aggregates/package.json @@ -52,7 +52,7 @@ "graphile-build": "5.0.2", "graphile-build-pg": "5.0.2", "graphile-config": "1.0.1", - "graphile-connection-filter": "workspace:^", + "graphile-connection-filter": "^1.13.0", "graphql": "16.13.0", "pg-sql2": "5.0.1", "postgraphile": "5.0.3" diff --git a/graphile/graphile-postgis/package.json b/graphile/graphile-postgis/package.json index ede0b292f..b6fcbe364 100644 --- a/graphile/graphile-postgis/package.json +++ b/graphile/graphile-postgis/package.json @@ -46,7 +46,7 @@ "graphile-build": "5.0.2", "graphile-build-pg": "5.0.2", "graphile-config": "1.0.1", - "graphile-connection-filter": "workspace:^", + "graphile-connection-filter": "^1.13.0", "graphql": "16.13.0", "pg-sql2": "5.0.1", "postgraphile": "5.0.3"