pgsql-test 2.14.4 → 2.14.6
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 +9 -9
package/README.md
CHANGED
|
@@ -646,9 +646,12 @@ Master the workflow for adding, organizing, and managing database changes with p
|
|
|
646
646
|
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
647
647
|
|
|
648
648
|
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
649
|
-
TypeScript-
|
|
649
|
+
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
650
650
|
|
|
651
|
-
6.
|
|
651
|
+
6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
|
|
652
|
+
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
653
|
+
|
|
654
|
+
7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
652
655
|
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
653
656
|
|
|
654
657
|
## Related LaunchQL Tooling
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgsql-test",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.6",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "pgsql-test offers isolated, role-aware, and rollback-friendly PostgreSQL environments for integration tests — giving developers realistic test coverage without external state pollution",
|
|
6
6
|
"main": "index.js",
|
|
@@ -61,16 +61,16 @@
|
|
|
61
61
|
"@types/pg-copy-streams": "^1.2.5"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@launchql/core": "^2.
|
|
65
|
-
"@launchql/env": "^2.5.
|
|
66
|
-
"@launchql/logger": "^1.1.
|
|
67
|
-
"@launchql/server-utils": "^2.6.
|
|
68
|
-
"@launchql/types": "^2.8.
|
|
64
|
+
"@launchql/core": "^2.17.0",
|
|
65
|
+
"@launchql/env": "^2.5.3",
|
|
66
|
+
"@launchql/logger": "^1.1.8",
|
|
67
|
+
"@launchql/server-utils": "^2.6.4",
|
|
68
|
+
"@launchql/types": "^2.8.3",
|
|
69
69
|
"csv-parse": "^5.5.5",
|
|
70
70
|
"pg": "^8.16.0",
|
|
71
|
-
"pg-cache": "^1.4.
|
|
71
|
+
"pg-cache": "^1.4.4",
|
|
72
72
|
"pg-copy-streams": "^6.0.6",
|
|
73
|
-
"pg-env": "^1.1.
|
|
73
|
+
"pg-env": "^1.1.5"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "4850ef84ce134d1bb43dc9132619a59257bd1157"
|
|
76
76
|
}
|