-[BUG] Error messages thrown by the db in languages other than english do not crash the app anymore (mysql, mariadb and postgres only) [#3567](https://github.com/sequelize/sequelize/pull/3567)
-[BUG] Error messages thrown by the db in languages other than english do not crash the app anymore (mysql, mariadb and postgres only) [#3567](https://github.com/sequelize/sequelize/pull/3567)
-[FEATURE] All querys can be logged individually by inserting `logging: fn` in the query option.
-[FEATURE] All querys can be logged individually by inserting `logging: fn` in the query option.
-[FEATURE] Partial index support for Postgres with `index.where`
-[FEATURE] Partial index support for Postgres with `index.where`
-[REFACTOR]`.changed()` now works proactively by setting a flag on `set` instead of matching reactively. Not that objects and arrays will not be checked for equality on set and will always result in a change if they are `set`.
-[DEPRECATED] The query-chainer is deprecated and will be removed in version 2.2. Please use promises instead.
-[DEPRECATED] The query-chainer is deprecated and will be removed in version 2.2. Please use promises instead.
* If set is called with an object, it will loop over the object, and call set recursively for each key, value pair. If you set raw to true, the underlying dataValues will either be
* If set is called with an object, it will loop over the object, and call set recursively for each key, value pair. If you set raw to true, the underlying dataValues will either be
* set directly to the object passed, or used to extend dataValues, if dataValues already contain values.
* set directly to the object passed, or used to extend dataValues, if dataValues already contain values.
*
*
* When set is called, the previous value of the field is stored, so that you can later see which fields changed (see `changed`).
* When set is called, the previous value of the field is stored and sets a changed flag(see `changed`).
*
*
* Set can also be used to build instances for associations, if you have values for those.
* Set can also be used to build instances for associations, if you have values for those.
* TODO(mick): should probably write something here about how includes in set works - perhaps also even some tests?
* When using set with associations you need to make sure the property key matches the alias of the association
* while also making sure that the proper include options have been set (from .build() or .find())
*
* If called with a dot.seperated key on a JSON/JSONB attribute it will set the value nested and flag the entire object as changed.
*
*
* @see {Model#find} for more information about includes
* @see {Model#find} for more information about includes