dobo 2.30.5 → 2.30.6

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.
@@ -65,7 +65,7 @@ async function driverFactory () {
65
65
  item[this.idField.name] = item.id
66
66
  newId = true
67
67
  }
68
- for (const prop of model.properties) {
68
+ for (const prop of model.getNonVirtualProperties()) {
69
69
  if (item[prop.name] === 'null') item[prop.name] = null
70
70
  if (!isSet(item[prop.name]) && !this.support.nullableField) {
71
71
  switch (prop.type) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dobo",
3
- "version": "2.30.5",
3
+ "version": "2.30.6",
4
4
  "description": "DBMS for Bajo Framework",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/wiki/CHANGES.md CHANGED
@@ -4,6 +4,7 @@
4
4
 
5
5
  - [2.30.5] Bug fix in ```model.sanitizeBody()```
6
6
  - [2.30.5] Bug fix in ```model.sanitizeRecord()```
7
+ - [2.30.6] Bug fix in ```driver.sanitizeRecord()```
7
8
 
8
9
  ## 2026-06-16
9
10