[IMP] orm: update changelog

closes odoo/documentation#6465

X-original-commit: f1960a250c
Signed-off-by: Rémy Voet (ryv) <ryv@odoo.com>
This commit is contained in:
Rémy Voet (ryv) 2022-02-22 11:08:06 +01:00
parent 10f936247a
commit d105f614af
2 changed files with 16 additions and 3 deletions

View File

@ -117,9 +117,6 @@ Fields
.. autoclass:: Field() .. autoclass:: Field()
.. .. autoattribute:: Field._slots
:annotation:
.. _reference/fields/basic: .. _reference/fields/basic:
Basic Fields Basic Fields

View File

@ -34,6 +34,8 @@ Odoo version 16.0
and `#101115 <https://github.com/odoo/odoo/pull/101115>`_. and `#101115 <https://github.com/odoo/odoo/pull/101115>`_.
Code translations are no longer stored into the database. Code translations are no longer stored into the database.
They become static and are extracted from the PO files when needed. They become static and are extracted from the PO files when needed.
- :meth:`~odoo.models.Model.search_count` takes the :attr:`limit` argument into account with `#95589 <https://github.com/odoo/odoo/pull/95589>`_.
It limits the number of records to count, improving performance when a partial result is acceptable.
Odoo Online version 15.4 Odoo Online version 15.4
======================== ========================
@ -44,6 +46,17 @@ Odoo Online version 15.4
and are less confusing about what is actually done in each case. and are less confusing about what is actually done in each case.
See the section :ref:`SQL Execution <reference/orm/sql>`. See the section :ref:`SQL Execution <reference/orm/sql>`.
Odoo Online version 15.3
========================
- The argument `args` is renamed to `domain` for :meth:`~odoo.models.Model.search`, :meth:`~odoo.models.Model.search_count`
and :meth:`~odoo.models.Model._search`. `#83687 <https://github.com/odoo/odoo/pull/83687>`_
- :meth:`~odoo.models.Model.filtered_domain` conserves the order of the current recordset. `#83687 <https://github.com/odoo/odoo/pull/83687>`_
- :meth:`~odoo.models.Model.browse` does not accept :class:`str` as `ids`. `#83687 <https://github.com/odoo/odoo/pull/83687>`_
- The methods :meth:`~odoo.models.Model.fields_get_keys` and :meth:`~odoo.models.Model.get_xml_id` on :class:`~odoo.models.Model` are deprecated. `#83687 <https://github.com/odoo/odoo/pull/83687>`_
- The method :meth:`~odoo.models.Model._mapped_cache` is removed. `#83687 <https://github.com/odoo/odoo/pull/83687>`_
- Remove the :attr:`limit` attribute of :class:`~odoo.fields.One2many` and :class:`~odoo.fields.Many2many`. `#83687 <https://github.com/odoo/odoo/pull/83687>`_
Odoo Online version 15.2 Odoo Online version 15.2
======================== ========================
@ -51,3 +64,6 @@ Odoo Online version 15.2
`#83015 <https://github.com/odoo/odoo/pull/83015>`_, developers can now define what type of `#83015 <https://github.com/odoo/odoo/pull/83015>`_, developers can now define what type of
indexes can be used on fields by PostgreSQL. See the :ref:`index property <reference/fields>` of indexes can be used on fields by PostgreSQL. See the :ref:`index property <reference/fields>` of
`odoo.fields.Field`. `odoo.fields.Field`.
- The :attr:`_sequence` attribute of :class:`~odoo.models.Model` is removed. Odoo lets PostgreSQL use the default sequence of the primary key. `#82727 <https://github.com/odoo/odoo/pull/82727>`_
- The method :meth:`~odoo.models.Model._write` does not raise an error for non-existing records. `#82727 <https://github.com/odoo/odoo/pull/82727>`_
- The :attr:`column_format` and :attr:`deprecated` attributes of :class:`~odoo.fields.Field` are removed. `#82727 <https://github.com/odoo/odoo/pull/82727>`_