introspectron 2.11.10 → 2.11.11

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 +4 -4
package/README.md CHANGED
@@ -66,6 +66,7 @@ psql testdb -f ./seed.sql
66
66
  ### 🧪 Testing
67
67
 
68
68
  * [launchql/pgsql-test](https://github.com/launchql/launchql/tree/main/packages/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
69
+ * [launchql/supabase-test](https://github.com/launchql/launchql/tree/main/packages/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
69
70
  * [launchql/graphile-test](https://github.com/launchql/launchql/tree/main/packages/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
70
71
  * [launchql/pg-query-context](https://github.com/launchql/launchql/tree/main/packages/pg-query-context): **🔒 Session context injection** to add session-local context (e.g., `SET LOCAL`) into queries—ideal for setting `role`, `jwt.claims`, and other session settings.
71
72
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "introspectron",
3
- "version": "2.11.10",
3
+ "version": "2.11.11",
4
4
  "description": "introspect your Postgres database and generate an SDK",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "main": "index.js",
@@ -30,8 +30,8 @@
30
30
  "test:watch": "jest --watch"
31
31
  },
32
32
  "devDependencies": {
33
- "graphile-test": "^2.5.3",
34
- "pgsql-test": "^2.11.9"
33
+ "graphile-test": "^2.5.4",
34
+ "pgsql-test": "^2.11.10"
35
35
  },
36
36
  "dependencies": {
37
37
  "graphql-tag": "2.12.6"
@@ -44,5 +44,5 @@
44
44
  "graphile",
45
45
  "launchql"
46
46
  ],
47
- "gitHead": "7aeb70c79619545d937597b64af80962803f6901"
47
+ "gitHead": "870ab4d6b6b501ac6bdda660d44a0581e2145ad4"
48
48
  }