pg-cache 1.4.2 → 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 +5 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -155,9 +155,12 @@ Master the workflow for adding, organizing, and managing database changes with p
155
155
  Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
156
156
 
157
157
  5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
158
- TypeScript-native testing for Supabase with modern workflows.
158
+ Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
159
159
 
160
- 6. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
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)
161
164
  Common issues and solutions for pgpm, PostgreSQL, and testing.
162
165
 
163
166
  ## Related LaunchQL Tooling
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-cache",
3
- "version": "1.4.2",
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.6",
34
- "@launchql/types": "^2.8.1",
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.3"
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": "25b59a1403d95d86be14bd36c94e5af1689df1c3"
51
+ "gitHead": "4850ef84ce134d1bb43dc9132619a59257bd1157"
52
52
  }