pgsql-test 2.13.3 → 2.13.5

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +10 -10
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",
3
+ "version": "2.13.5",
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",
@@ -48,7 +48,7 @@
48
48
  "scripts": {
49
49
  "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
50
50
  "clean": "rimraf dist/**",
51
- "prepare": "npm run build",
51
+ "prepack": "npm run build",
52
52
  "build": "npm run clean; tsc -p tsconfig.json; tsc -p tsconfig.esm.json; npm run copy",
53
53
  "build:dev": "npm run clean; tsc -p tsconfig.json --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
54
54
  "lint": "eslint . --fix",
@@ -61,16 +61,16 @@
61
61
  "@types/pg-copy-streams": "^1.2.5"
62
62
  },
63
63
  "dependencies": {
64
- "@launchql/core": "^2.14.3",
65
- "@launchql/env": "^2.4.5",
66
- "@launchql/logger": "^1.1.3",
67
- "@launchql/server-utils": "^2.5.1",
68
- "@launchql/types": "^2.7.0",
64
+ "@launchql/core": "^2.14.5",
65
+ "@launchql/env": "^2.4.7",
66
+ "@launchql/logger": "^1.1.4",
67
+ "@launchql/server-utils": "^2.5.3",
68
+ "@launchql/types": "^2.7.2",
69
69
  "csv-parse": "^5.5.5",
70
70
  "pg": "^8.16.0",
71
- "pg-cache": "^1.3.8",
71
+ "pg-cache": "^1.3.10",
72
72
  "pg-copy-streams": "^6.0.6",
73
- "pg-env": "^1.1.1"
73
+ "pg-env": "^1.1.2"
74
74
  },
75
- "gitHead": "2e8a123c53d33ee10377b0f034392b0dff1e8a88"
75
+ "gitHead": "a32146b0033c550907a03faa374e7101f8f15b02"
76
76
  }