pg-cache 1.4.1 → 1.4.4

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 +28 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -140,6 +140,29 @@ Gracefully close all cached pools and wait for disposal.
140
140
  This package is designed to be extended. For example, `@launchql/graphile-cache` uses the cleanup callback system to automatically clean up PostGraphile instances when their associated pools are disposed.
141
141
 
142
142
 
143
+ ## Education and Tutorials
144
+
145
+ 1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
146
+ Get started with modular databases in minutes. Install prerequisites and deploy your first module.
147
+
148
+ 2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
149
+ Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
150
+
151
+ 3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
152
+ Master the workflow for adding, organizing, and managing database changes with pgpm.
153
+
154
+ 4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
155
+ Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
156
+
157
+ 5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
158
+ Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
159
+
160
+ 6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
161
+ Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
162
+
163
+ 7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
164
+ Common issues and solutions for pgpm, PostgreSQL, and testing.
165
+
143
166
  ## Related LaunchQL Tooling
144
167
 
145
168
  ### 🧪 Testing
@@ -181,6 +204,11 @@ This package is designed to be extended. For example, `@launchql/graphile-cache`
181
204
  * [@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.
182
205
  * [@launchql/query](https://github.com/launchql/launchql/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
183
206
 
207
+ ## Credits
208
+
209
+ 🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
210
+
211
+
184
212
  ## Disclaimer
185
213
 
186
214
  AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-cache",
3
- "version": "1.4.1",
3
+ "version": "1.4.4",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "PostgreSQL connection pool LRU cache manager",
6
6
  "main": "index.js",
@@ -30,11 +30,11 @@
30
30
  "test:watch": "jest --watch"
31
31
  },
32
32
  "dependencies": {
33
- "@launchql/logger": "^1.1.5",
34
- "@launchql/types": "^2.8.0",
33
+ "@launchql/logger": "^1.1.8",
34
+ "@launchql/types": "^2.8.3",
35
35
  "lru-cache": "^11.1.0",
36
36
  "pg": "^8.16.0",
37
- "pg-env": "^1.1.2"
37
+ "pg-env": "^1.1.5"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/pg": "^8.15.2"
@@ -48,5 +48,5 @@
48
48
  "connection",
49
49
  "launchql"
50
50
  ],
51
- "gitHead": "2bc45c48444fc9c2cce9f082cf33d533915bb048"
51
+ "gitHead": "4850ef84ce134d1bb43dc9132619a59257bd1157"
52
52
  }