@mikro-orm/sql 7.1.6-dev.10 → 7.1.6-dev.11
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/AbstractSqlDriver.js +5 -0
- package/package.json +2 -2
package/AbstractSqlDriver.js
CHANGED
|
@@ -494,6 +494,11 @@ export class AbstractSqlDriver extends DatabaseDriver {
|
|
|
494
494
|
if (prop.fieldNames.every(name => typeof root[`${relationAlias}__${name}`] === 'undefined')) {
|
|
495
495
|
return;
|
|
496
496
|
}
|
|
497
|
+
// inline embeddables are mapped via their flattened child props; mapping the embedded root prop
|
|
498
|
+
// here would leak a raw column value into the snapshot and produce a phantom changeset
|
|
499
|
+
if (prop.kind === ReferenceKind.EMBEDDED && !prop.object && !meta.embeddable) {
|
|
500
|
+
return;
|
|
501
|
+
}
|
|
497
502
|
if (prop.polymorphic && prop.kind !== ReferenceKind.EMBEDDED) {
|
|
498
503
|
const discriminatorAlias = `${relationAlias}__${prop.fieldNames[0]}`;
|
|
499
504
|
const discriminatorValue = root[discriminatorAlias];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/sql",
|
|
3
|
-
"version": "7.1.6-dev.
|
|
3
|
+
"version": "7.1.6-dev.11",
|
|
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
|
"keywords": [
|
|
6
6
|
"data-mapper",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@mikro-orm/core": "^7.1.5"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@mikro-orm/core": "7.1.6-dev.
|
|
56
|
+
"@mikro-orm/core": "7.1.6-dev.11"
|
|
57
57
|
},
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">= 22.17.0"
|