@mikro-orm/oracledb 7.1.0-dev.27 → 7.1.0-dev.29

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/OraclePlatform.js CHANGED
@@ -203,7 +203,7 @@ export class OraclePlatform extends AbstractSqlPlatform {
203
203
  if (b.length === 0) {
204
204
  return raw(`json_equal(${root}, json(?))`, [value]);
205
205
  }
206
- return raw(`json_value(${root}, '$.${b.map(this.quoteJsonKey).join('.')}')`);
206
+ return raw(`json_value(${root}, ${this.quoteValue(`$.${b.map(this.quoteJsonKey).join('.')}`)})`);
207
207
  }
208
208
  processJsonCondition(o, value, path, alias) {
209
209
  if (Utils.isPlainObject(value) && !Object.keys(value).some(k => Utils.isOperator(k))) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/oracledb",
3
- "version": "7.1.0-dev.27",
3
+ "version": "7.1.0-dev.29",
4
4
  "description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, MariaDB, PostgreSQL, SQLite, MSSQL and Oracle databases.",
5
5
  "keywords": [
6
6
  "data-mapper",
@@ -42,15 +42,15 @@
42
42
  "copy": "node ../../scripts/copy.mjs"
43
43
  },
44
44
  "dependencies": {
45
- "@mikro-orm/sql": "7.1.0-dev.27",
46
- "kysely": "0.28.16",
45
+ "@mikro-orm/sql": "7.1.0-dev.29",
46
+ "kysely": "0.28.17",
47
47
  "oracledb": "6.10.0"
48
48
  },
49
49
  "devDependencies": {
50
- "@mikro-orm/core": "^7.0.13"
50
+ "@mikro-orm/core": "^7.0.14"
51
51
  },
52
52
  "peerDependencies": {
53
- "@mikro-orm/core": "7.1.0-dev.27"
53
+ "@mikro-orm/core": "7.1.0-dev.29"
54
54
  },
55
55
  "engines": {
56
56
  "node": ">= 22.17.0"