pgsql-test 2.13.3 → 2.13.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 +1 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -664,6 +664,7 @@ const { conn, db, teardown } = await getConnections({
|
|
|
664
664
|
|
|
665
665
|
### 🧰 CLI & Codegen
|
|
666
666
|
|
|
667
|
+
* [pgpm](https://github.com/launchql/launchql/tree/main/packages/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
|
|
667
668
|
* [@launchql/cli](https://github.com/launchql/launchql/tree/main/packages/cli): **🖥️ Command-line toolkit** for managing LaunchQL projects—supports database scaffolding, migrations, seeding, code generation, and automation.
|
|
668
669
|
* [launchql/launchql-gen](https://github.com/launchql/launchql/tree/main/packages/launchql-gen): **✨ Auto-generated GraphQL** mutations and queries dynamically built from introspected schema data.
|
|
669
670
|
* [@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.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgsql-test",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.4",
|
|
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.14.
|
|
65
|
-
"@launchql/env": "^2.4.
|
|
64
|
+
"@launchql/core": "^2.14.4",
|
|
65
|
+
"@launchql/env": "^2.4.6",
|
|
66
66
|
"@launchql/logger": "^1.1.3",
|
|
67
|
-
"@launchql/server-utils": "^2.5.
|
|
68
|
-
"@launchql/types": "^2.7.
|
|
67
|
+
"@launchql/server-utils": "^2.5.2",
|
|
68
|
+
"@launchql/types": "^2.7.1",
|
|
69
69
|
"csv-parse": "^5.5.5",
|
|
70
70
|
"pg": "^8.16.0",
|
|
71
|
-
"pg-cache": "^1.3.
|
|
71
|
+
"pg-cache": "^1.3.9",
|
|
72
72
|
"pg-copy-streams": "^6.0.6",
|
|
73
73
|
"pg-env": "^1.1.1"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "e12fd536094cb6536ae3569a1ab3496b729dd843"
|
|
76
76
|
}
|