@mikro-orm/core 6.5.10-dev.0 → 6.5.10-dev.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.
@@ -190,12 +190,13 @@ class ScalarReference {
190
190
  */
191
191
  async loadOrFail(options = {}) {
192
192
  const ret = await this.load(options);
193
- if (!ret) {
193
+ if (ret == null) {
194
194
  const wrapped = (0, wrap_1.helper)(this.entity);
195
195
  options.failHandler ??= wrapped.__em.config.get('findOneOrFailHandler');
196
196
  const entityName = this.entity.constructor.name;
197
197
  const where = wrapped.getPrimaryKey();
198
- throw new errors_1.NotFoundError(`${entityName} (${where}) failed to load property '${this.property}'`);
198
+ const whereString = typeof where === 'object' ? (0, node_util_1.inspect)(where) : where;
199
+ throw new errors_1.NotFoundError(`${entityName} (${whereString}) failed to load property '${this.property}'`);
199
200
  }
200
201
  return ret;
201
202
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/core",
3
- "version": "6.5.10-dev.0",
3
+ "version": "6.5.10-dev.2",
4
4
  "description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
@@ -64,7 +64,7 @@
64
64
  "esprima": "4.0.1",
65
65
  "fs-extra": "11.3.2",
66
66
  "globby": "11.1.0",
67
- "mikro-orm": "6.5.10-dev.0",
67
+ "mikro-orm": "6.5.10-dev.2",
68
68
  "reflect-metadata": "0.2.2"
69
69
  }
70
70
  }