graphile-schema 2.5.4 → 2.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -130,6 +130,7 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
130
130
  ### 🧪 Testing
131
131
 
132
132
  * [pgsql-test](https://github.com/constructive-io/constructive/tree/main/postgres/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
133
+ * [pglite-test](https://github.com/constructive-io/constructive/tree/main/postgres/pglite-test): **🪶 Drop-in pgsql-test replacement backed by PGlite** — in-process Postgres, no server required, instance-per-suite isolation.
133
134
  * [pgsql-seed](https://github.com/constructive-io/constructive/tree/main/postgres/pgsql-seed): **🌱 PostgreSQL seeding utilities** for CSV, JSON, SQL data loading, and pgpm deployment.
134
135
  * [supabase-test](https://github.com/constructive-io/constructive/tree/main/postgres/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
135
136
  * [graphile-test](https://github.com/constructive-io/constructive/tree/main/graphile/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphile-schema",
3
- "version": "2.5.4",
3
+ "version": "2.6.0",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "Build GraphQL SDL from PostgreSQL databases using PostGraphile v5",
6
6
  "main": "index.js",
@@ -32,10 +32,10 @@
32
32
  "deepmerge": "^4.3.1",
33
33
  "graphile-build": "5.0.2",
34
34
  "graphile-config": "1.0.1",
35
- "graphile-settings": "^6.5.4",
35
+ "graphile-settings": "^6.6.0",
36
36
  "graphql": "16.13.0",
37
- "pg-cache": "^3.19.0",
38
- "pg-env": "^1.22.0"
37
+ "pg-cache": "^3.20.0",
38
+ "pg-env": "^1.23.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "makage": "^0.3.0",
@@ -50,5 +50,5 @@
50
50
  "introspection",
51
51
  "constructive"
52
52
  ],
53
- "gitHead": "31f7cd3d3cc28cf069056eae5b2a0d4198d154a1"
53
+ "gitHead": "bb3269d48cdf2bc8f361bdd79b4833c921c13ec3"
54
54
  }