graphile-cache 1.3.3 → 1.3.5

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 +6 -6
package/README.md CHANGED
@@ -184,6 +184,7 @@ This design ensures:
184
184
  ### 🧪 Testing
185
185
 
186
186
  * [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.
187
+ * [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.
187
188
  * [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.
188
189
  * [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.
189
190
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphile-cache",
3
- "version": "1.3.3",
3
+ "version": "1.3.5",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "PostGraphile LRU cache with automatic pool cleanup integration",
6
6
  "main": "index.js",
@@ -23,17 +23,17 @@
23
23
  "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
24
24
  "clean": "rimraf dist/**",
25
25
  "prepare": "npm run build",
26
- "build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
27
- "build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
26
+ "build": "npm run clean; tsc -p tsconfig.json; tsc -p tsconfig.esm.json; npm run copy",
27
+ "build:dev": "npm run clean; tsc -p tsconfig.json --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
28
28
  "lint": "eslint . --fix",
29
29
  "test": "jest",
30
30
  "test:watch": "jest --watch"
31
31
  },
32
32
  "dependencies": {
33
- "@launchql/logger": "^1.1.1",
33
+ "@launchql/logger": "^1.1.2",
34
34
  "lru-cache": "^11.1.0",
35
35
  "pg": "^8.16.0",
36
- "pg-cache": "^1.3.3",
36
+ "pg-cache": "^1.3.5",
37
37
  "postgraphile": "^4.14.1"
38
38
  },
39
39
  "devDependencies": {
@@ -50,5 +50,5 @@
50
50
  "postgresql",
51
51
  "launchql"
52
52
  ],
53
- "gitHead": "0b26f726ac2ca19886af7553a06e95ce826d515b"
53
+ "gitHead": "03ef7e72674753bcb7d826d60cc8a78818ca6f6d"
54
54
  }