relq 1.0.125 → 1.0.126

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.
@@ -137,7 +137,7 @@ class PgBase extends relq_base_1.RelqBase {
137
137
  return await client.query(sql);
138
138
  }
139
139
  finally {
140
- client.release(this.isEdgeRuntime);
140
+ client.release();
141
141
  }
142
142
  }
143
143
  else if (this.client) {
@@ -100,7 +100,7 @@ export class PgBase extends RelqBase {
100
100
  return await client.query(sql);
101
101
  }
102
102
  finally {
103
- client.release(this.isEdgeRuntime);
103
+ client.release();
104
104
  }
105
105
  }
106
106
  else if (this.client) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "relq",
3
- "version": "1.0.125",
3
+ "version": "1.0.126",
4
4
  "description": "The Fully-Typed PostgreSQL ORM for TypeScript",
5
5
  "author": "Olajide Mathew O. <olajide.mathew@yuniq.solutions>",
6
6
  "license": "MIT",
@@ -78,7 +78,7 @@
78
78
  "node": ">=18.0.0"
79
79
  },
80
80
  "dependencies": {
81
- "@aws-sdk/dsql-signer": "^3.1005.0",
81
+ "@aws-sdk/dsql-signer": "^3.1010.0",
82
82
  "pg": "^8.20.0",
83
83
  "pg-cursor": "^2.19.0"
84
84
  },
@@ -87,9 +87,10 @@
87
87
  "@pgsql/types": "^17.6.2",
88
88
  "citty": "^0.2.1",
89
89
  "jiti": "^2.6.1",
90
- "pgsql-deparser": "^17.18.0",
91
- "pgsql-parser": "^17.9.12",
90
+ "pgsql-deparser": "^17.18.2",
91
+ "pgsql-parser": "^17.9.14",
92
92
  "sql-formatter": "^15.7.2",
93
+ "ts-morph": "^27.0.2",
93
94
  "typescript": "^5.9.3"
94
95
  }
95
96
  }