pgsql-test 2.1.1 β 2.1.2
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 +5 -5
package/README.md
CHANGED
|
@@ -521,6 +521,7 @@ const { conn, db, teardown } = await getConnections({
|
|
|
521
521
|
* [@pgsql/types](https://github.com/launchql/pgsql-parser/tree/main/packages/types): **π Type definitions** for PostgreSQL AST nodes in TypeScript.
|
|
522
522
|
* [@pgsql/utils](https://github.com/launchql/pgsql-parser/tree/main/packages/utils): **π οΈ AST utilities** for constructing and transforming PostgreSQL syntax trees.
|
|
523
523
|
* [launchql/pg-ast](https://github.com/launchql/launchql/tree/main/packages/pg-ast): **π Low-level AST tools** and transformations for Postgres query structures.
|
|
524
|
+
* [launchql/pg-proto-parser](https://github.com/launchql/pg-proto-parser): **π¦ Protobuf parser** for parsing PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
|
|
524
525
|
* [launchql/pg-query-context](https://github.com/launchql/launchql/tree/main/packages/pg-query-context): **π Session context injection** to add session-local context (e.g., `SET LOCAL`) into queriesβideal for setting `role`, `jwt.claims`, and other session settings.
|
|
525
526
|
|
|
526
527
|
### π API & Dev Tools
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgsql-test",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
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",
|
|
@@ -59,13 +59,13 @@
|
|
|
59
59
|
"@types/pg-copy-streams": "^1.2.5"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@launchql/migrate": "^2.1.
|
|
63
|
-
"@launchql/server-utils": "^2.1.
|
|
64
|
-
"@launchql/types": "^2.1.
|
|
62
|
+
"@launchql/migrate": "^2.1.2",
|
|
63
|
+
"@launchql/server-utils": "^2.1.2",
|
|
64
|
+
"@launchql/types": "^2.1.2",
|
|
65
65
|
"chalk": "^4.1.0",
|
|
66
66
|
"deepmerge": "^4.3.1",
|
|
67
67
|
"pg": "^8.16.0",
|
|
68
68
|
"pg-copy-streams": "^6.0.6"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "213912ee7e39ca3d755029b8cd5e3b548324c13f"
|
|
71
71
|
}
|