uranio 1.1.3 → 1.1.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.
@@ -28,6 +28,6 @@
28
28
  "mongodb": "^7.1.0",
29
29
  "mysql2": "^3.17.5",
30
30
  "pg": "^8.18.0",
31
- "uranio": "1.1.3"
31
+ "uranio": "1.1.4"
32
32
  }
33
33
  }
@@ -94,7 +94,6 @@ export class PostgreSQLClient {
94
94
 
95
95
  // Replace each :paramName with $1, $2, etc.
96
96
  for (const key of sortedKeys) {
97
- const namedParam = `:${key}`;
98
97
  // Replace ALL occurrences of this named parameter with the SAME positional parameter
99
98
  const regex = new RegExp(`:${key}\\b`, 'g');
100
99
  convertedQuery = convertedQuery.replace(regex, `$${paramIndex}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uranio",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Uranio is a type-safe ODM for MongoDB",
5
5
  "main": "dist/index.js",
6
6
  "repository": {