graphile-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.
- package/README.md +28 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -179,6 +179,29 @@ This design ensures:
|
|
|
179
179
|
- Automatic cleanup without manual intervention
|
|
180
180
|
- Loose coupling between packages
|
|
181
181
|
|
|
182
|
+
## Education and Tutorials
|
|
183
|
+
|
|
184
|
+
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
185
|
+
Get started with modular databases in minutes. Install prerequisites and deploy your first module.
|
|
186
|
+
|
|
187
|
+
2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
|
|
188
|
+
Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
|
|
189
|
+
|
|
190
|
+
3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
|
|
191
|
+
Master the workflow for adding, organizing, and managing database changes with pgpm.
|
|
192
|
+
|
|
193
|
+
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
|
|
194
|
+
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
195
|
+
|
|
196
|
+
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
197
|
+
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
198
|
+
|
|
199
|
+
6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
|
|
200
|
+
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
201
|
+
|
|
202
|
+
7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
203
|
+
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
204
|
+
|
|
182
205
|
## Related LaunchQL Tooling
|
|
183
206
|
|
|
184
207
|
### 🧪 Testing
|
|
@@ -220,6 +243,11 @@ This design ensures:
|
|
|
220
243
|
* [@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.
|
|
221
244
|
* [@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.
|
|
222
245
|
|
|
246
|
+
## Credits
|
|
247
|
+
|
|
248
|
+
🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
|
|
249
|
+
|
|
250
|
+
|
|
223
251
|
## Disclaimer
|
|
224
252
|
|
|
225
253
|
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": "graphile-cache",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostGraphile LRU cache with automatic pool cleanup integration",
|
|
6
6
|
"main": "index.js",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"test:watch": "jest --watch"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@launchql/logger": "^1.1.
|
|
33
|
+
"@launchql/logger": "^1.1.8",
|
|
34
34
|
"lru-cache": "^11.1.0",
|
|
35
35
|
"pg": "^8.16.0",
|
|
36
|
-
"pg-cache": "^1.4.
|
|
36
|
+
"pg-cache": "^1.4.4",
|
|
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": "
|
|
53
|
+
"gitHead": "4850ef84ce134d1bb43dc9132619a59257bd1157"
|
|
54
54
|
}
|