pg-codegen 2.11.9 → 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 +5 -5
package/README.md CHANGED
@@ -102,6 +102,7 @@ export class Users implements Users {
102
102
  ### 🧪 Testing
103
103
 
104
104
  * [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.
105
+ * [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.
105
106
  * [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.
106
107
  * [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.
107
108
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-codegen",
3
- "version": "2.11.9",
3
+ "version": "2.11.11",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "PostgreSQL Codegen",
6
6
  "main": "index.js",
@@ -41,13 +41,13 @@
41
41
  "dependencies": {
42
42
  "@babel/generator": "^7.26.3",
43
43
  "@babel/types": "^7.26.3",
44
- "@launchql/server-utils": "^2.4.2",
45
- "@launchql/types": "^2.6.1",
44
+ "@launchql/server-utils": "^2.4.3",
45
+ "@launchql/types": "^2.6.2",
46
46
  "pg": "^8.16.0",
47
- "pgsql-test": "^2.11.8"
47
+ "pgsql-test": "^2.11.10"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@types/pg": "^8.15.2"
51
51
  },
52
- "gitHead": "1323cb5f03aefde0f6e3b070ec90082fb04dbbd4"
52
+ "gitHead": "870ab4d6b6b501ac6bdda660d44a0581e2145ad4"
53
53
  }