Changelog¶
Odoo Online version 16.3¶
odoo.models.Model._read_group
has a new signature with #110737
Odoo Online version 16.2¶
Refactor the implementation of searching and reading methods to be able to combine both in a minimal number of SQL queries. We introduce two new methods
odoo.models.Model.search_fetch
andodoo.models.Model.fetch
that take advantage of the combination. More details can be found on the pull request #112126.
Odoo version 16.0¶
Odoo Online version 15.4¶
New API for flushing to the database and invalidating the cache with #87527. New methods have been added to
odoo.models.Model
andodoo.api.Environment
, and are less confusing about what is actually done in each case. See the section SQL Execution.
Odoo Online version 15.2¶
Specific index types on fields: With #83274 and #83015, developers can now define what type of indexes can be used on fields by PostgreSQL. See the index property of
odoo.fields.Field
.