upgrade-to-v6.md
1.44 KB
Upgrade to v6
Sequelize v6 is the next major release after v5
Breaking Changes
Support for Node 10 and up
Sequelize v6 will only support Node 10 and up #10821
Model
options.returning
Option returning: true
will no longer return attributes that are not defined in the model. Old behavior can be restored by using returning: ['*']
Model.changed()
This method now tests for equality with _.isEqual
and is now deep aware. Modifying nested value for JSON object won't mark them as changed, because it is still the same object.
const instance = await MyModel.findOne();
instance.myJsonField.a = 1;
console.log(instance.changed()) => false
await instance.save(); // this will not save anything
instance.changed('myJsonField', true);
console.log(instance.changed()) => ['myJsonField']
await instance.save(); // will save