graphile-cache 3.12.1 → 3.13.1

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 +15 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -227,6 +227,21 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
227
227
  * [@pgsql/types](https://www.npmjs.com/package/@pgsql/types): **📝 Type definitions** for PostgreSQL AST nodes in TypeScript.
228
228
  * [@pgsql/utils](https://www.npmjs.com/package/@pgsql/utils): **🛠️ AST utilities** for constructing and transforming PostgreSQL syntax trees.
229
229
 
230
+ ### 📚 Documentation & Skills
231
+
232
+ * [constructive-skills](https://github.com/constructive-io/constructive-skills): **📖 Platform documentation and AI agent skills** — feature catalog, blueprint reference, SDK guides (i18n, billing, limits, events, uploads, security, entities, search, AI), and deployment guides.
233
+
234
+ Install skills for AI coding agents:
235
+
236
+ ```bash
237
+ # All platform skills (security, blueprints, codegen, billing, etc.)
238
+ npx skills add constructive-io/constructive-skills
239
+
240
+ # Individual repo skills (pgpm, testing, CLI, search, etc.)
241
+ npx skills add https://github.com/constructive-io/constructive --skill pgpm
242
+ npx skills add https://github.com/constructive-io/constructive --skill constructive-testing
243
+ ```
244
+
230
245
  ## Credits
231
246
 
232
247
  **🛠 Built by the [Constructive](https://constructive.io) team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on [GitHub](https://github.com/constructive-io).**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphile-cache",
3
- "version": "3.12.1",
3
+ "version": "3.13.1",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "PostGraphile v5 LRU cache with automatic pool cleanup integration",
6
6
  "main": "index.js",
@@ -29,12 +29,12 @@
29
29
  "test:watch": "jest --watch"
30
30
  },
31
31
  "dependencies": {
32
- "@pgpmjs/logger": "^2.11.1",
32
+ "@pgpmjs/logger": "^2.12.0",
33
33
  "express": "^5.2.1",
34
34
  "grafserv": "1.0.0",
35
- "graphile-realtime-subscriptions": "^0.7.2",
35
+ "graphile-realtime-subscriptions": "^0.8.1",
36
36
  "lru-cache": "^11.2.7",
37
- "pg-cache": "^3.11.1",
37
+ "pg-cache": "^3.12.0",
38
38
  "postgraphile": "5.0.3"
39
39
  },
40
40
  "devDependencies": {
@@ -52,5 +52,5 @@
52
52
  "constructive",
53
53
  "v5"
54
54
  ],
55
- "gitHead": "423992019655cc1e780149ce3f7e6e8c9b1c6e80"
55
+ "gitHead": "16c2ae1c30850db1d71c021346c9d34361361d8e"
56
56
  }