graphile-cache 1.3.8 → 1.3.9

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 +3 -3
package/README.md CHANGED
@@ -214,6 +214,7 @@ This design ensures:
214
214
 
215
215
  ### 🧰 CLI & Codegen
216
216
 
217
+ * [pgpm](https://github.com/launchql/launchql/tree/main/packages/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
217
218
  * [@launchql/cli](https://github.com/launchql/launchql/tree/main/packages/cli): **🖥️ Command-line toolkit** for managing LaunchQL projects—supports database scaffolding, migrations, seeding, code generation, and automation.
218
219
  * [launchql/launchql-gen](https://github.com/launchql/launchql/tree/main/packages/launchql-gen): **✨ Auto-generated GraphQL** mutations and queries dynamically built from introspected schema data.
219
220
  * [@launchql/query-builder](https://github.com/launchql/launchql/tree/main/packages/query-builder): **🏗️ SQL constructor** providing a robust TypeScript-based query builder for dynamic generation of `SELECT`, `INSERT`, `UPDATE`, `DELETE`, and stored procedure calls—supports advanced SQL features like `JOIN`, `GROUP BY`, and schema-qualified queries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphile-cache",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "PostGraphile LRU cache with automatic pool cleanup integration",
6
6
  "main": "index.js",
@@ -33,7 +33,7 @@
33
33
  "@launchql/logger": "^1.1.3",
34
34
  "lru-cache": "^11.1.0",
35
35
  "pg": "^8.16.0",
36
- "pg-cache": "^1.3.8",
36
+ "pg-cache": "^1.3.9",
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": "73effdbd81ab1e3482a825d39c1371ccbd9e49aa"
53
+ "gitHead": "e12fd536094cb6536ae3569a1ab3496b729dd843"
54
54
  }