introspectron 2.13.5 → 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 +4 -4
package/README.md
CHANGED
|
@@ -76,9 +76,12 @@ Master the workflow for adding, organizing, and managing database changes with p
|
|
|
76
76
|
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
77
77
|
|
|
78
78
|
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
79
|
-
TypeScript-
|
|
79
|
+
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
80
80
|
|
|
81
|
-
6.
|
|
81
|
+
6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
|
|
82
|
+
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
83
|
+
|
|
84
|
+
7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
82
85
|
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
83
86
|
|
|
84
87
|
## Related LaunchQL Tooling
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "introspectron",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.7",
|
|
4
4
|
"description": "introspect your Postgres database and generate an SDK",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"main": "index.js",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@jest/test-sequencer": "^29.7.0",
|
|
34
34
|
"@types/pg": "^8.15.2",
|
|
35
|
-
"launchql-test": "^2.8.
|
|
36
|
-
"pgsql-test": "^2.14.
|
|
35
|
+
"launchql-test": "^2.8.4",
|
|
36
|
+
"pgsql-test": "^2.14.6"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"graphql": "15.10.1",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"graphile",
|
|
49
49
|
"launchql"
|
|
50
50
|
],
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "4850ef84ce134d1bb43dc9132619a59257bd1157"
|
|
52
52
|
}
|