@mikro-orm/core 6.6.1-dev.4 → 6.6.1-dev.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.
@@ -1057,7 +1057,7 @@ class MetadataDiscovery {
1057
1057
  return '1';
1058
1058
  }
1059
1059
  inferDefaultValue(meta, prop) {
1060
- if (!meta.class || !this.config.get('discovery').inferDefaultValues) {
1060
+ if (!meta.class) {
1061
1061
  return;
1062
1062
  }
1063
1063
  try {
@@ -1066,7 +1066,7 @@ class MetadataDiscovery {
1066
1066
  const entity1 = new meta.class();
1067
1067
  const entity2 = new meta.class();
1068
1068
  // we compare the two values by reference, this will discard things like `new Date()` or `Date.now()`
1069
- if (prop.default === undefined && entity1[prop.name] != null && entity1[prop.name] === entity2[prop.name] && entity1[prop.name] !== now) {
1069
+ if (this.config.get('discovery').inferDefaultValues && prop.default === undefined && entity1[prop.name] != null && entity1[prop.name] === entity2[prop.name] && entity1[prop.name] !== now) {
1070
1070
  prop.default ??= entity1[prop.name];
1071
1071
  }
1072
1072
  // if the default value is null, infer nullability
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/core",
3
- "version": "6.6.1-dev.4",
3
+ "version": "6.6.1-dev.5",
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.6.1-dev.4",
67
+ "mikro-orm": "6.6.1-dev.5",
68
68
  "reflect-metadata": "0.2.2"
69
69
  }
70
70
  }