pg-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
@@ -175,6 +175,7 @@ This package is designed to be extended. For example, `@launchql/graphile-cache`
175
175
 
176
176
  ### 🧰 CLI & Codegen
177
177
 
178
+ * [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.
178
179
  * [@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.
179
180
  * [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.
180
181
  * [@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": "pg-cache",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "PostgreSQL connection pool LRU cache manager",
6
6
  "main": "index.js",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@launchql/logger": "^1.1.3",
34
- "@launchql/types": "^2.7.0",
34
+ "@launchql/types": "^2.7.1",
35
35
  "lru-cache": "^11.1.0",
36
36
  "pg": "^8.16.0",
37
37
  "pg-env": "^1.1.1"
@@ -48,5 +48,5 @@
48
48
  "connection",
49
49
  "launchql"
50
50
  ],
51
- "gitHead": "73effdbd81ab1e3482a825d39c1371ccbd9e49aa"
51
+ "gitHead": "e12fd536094cb6536ae3569a1ab3496b729dd843"
52
52
  }