pg-codegen 2.13.4 → 2.13.7
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 +5 -2
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -112,9 +112,12 @@ Master the workflow for adding, organizing, and managing database changes with p
|
|
|
112
112
|
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
113
113
|
|
|
114
114
|
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
115
|
-
TypeScript-
|
|
115
|
+
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
116
116
|
|
|
117
|
-
6.
|
|
117
|
+
6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
|
|
118
|
+
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
119
|
+
|
|
120
|
+
7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
118
121
|
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
119
122
|
|
|
120
123
|
## Related LaunchQL Tooling
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pg-codegen",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.7",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostgreSQL Codegen",
|
|
6
6
|
"main": "index.js",
|
|
@@ -41,17 +41,17 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@babel/generator": "^7.26.3",
|
|
43
43
|
"@babel/types": "^7.26.3",
|
|
44
|
-
"@launchql/logger": "^1.1.
|
|
45
|
-
"@launchql/server-utils": "^2.6.
|
|
46
|
-
"@launchql/types": "^2.8.
|
|
44
|
+
"@launchql/logger": "^1.1.9",
|
|
45
|
+
"@launchql/server-utils": "^2.6.5",
|
|
46
|
+
"@launchql/types": "^2.8.4",
|
|
47
47
|
"pg": "^8.16.0",
|
|
48
|
-
"pg-cache": "^1.4.
|
|
49
|
-
"pg-env": "^1.1.
|
|
50
|
-
"pgsql-test": "^2.14.
|
|
48
|
+
"pg-cache": "^1.4.5",
|
|
49
|
+
"pg-env": "^1.1.5",
|
|
50
|
+
"pgsql-test": "^2.14.7"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/babel__generator": "^7.6.8",
|
|
54
54
|
"@types/pg": "^8.15.2"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "4cd832ebee39d7be9375340e8e3283692d15b464"
|
|
57
57
|
}
|