Monday, August 24, 2026
3 changes · saas-19.3
Enhancements to existing features
Mail-related views now load records in smaller batches when a result limit is used, instead of trying to process all matching records at once. This helps users open simple mail and activity views reliably while still respecting security access rules.
Original PR description
When a limit is applied in the search method, fetch the data in small batches like we do in ir.attachment. This allows to search with a limit on views while applying security access. Without this, simple views cannot be opened because the ORM searches for all records before filtering them in memory. Note that this cannot be avoided for group by queries and that if we don't set a limit, we will eventually still fetch everything in smaller batches. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Manual data reloads in Point of Sale now also clear browser local and session storage, not just the main offline database. This helps prevent stale or mismatched data from affecting sales sessions after a reload.
Original PR description
Manual data reloads reset IndexDB but leave local and session storage intact. The goal is to clear them to avoid inconsistent data. task-6456447 Forward-Port-Of: odoo/odoo#283429 Forward-Port-Of: odoo/odoo#281456
Improves the HTML editor so wide tables scroll inside their own area instead of shifting surrounding content. It also makes cursor placement more reliable around tables and blockquotes, helping users continue writing or navigating without layout disruption.
Original PR description
#### Description of the feature this PR addresses: - Resizing a table past the width available to it made the whole editable overflow, the scrollbar appeared on the editable and dragged the…
#### Description of the feature this PR addresses: - Resizing a table past the width available to it made the whole editable overflow, the scrollbar appeared on the editable and dragged the surrounding content sideways. - The no-inline selection handling only knew about the editable root, so any other container that should not hold a collapsed selection needed its own selection logic. - A blockquote could not hold selection placeholders, so an element the cursor cannot be placed on a table wrapper, table of content had no way to be written above, below, or left with the arrow keys. #### After this PR: - An overflowing table gets its own scroll container, added and removed as it is resized, so only the table scrolls. - The element that shouldn't hold direct cursor can now register itself through `is_no_inline_root_predicates` and gets the same selection handling as the editable root. - A `blockquote` is a valid placeholder container, so its blocking elements get a placeholder before and after, like anywhere else. Enterprise PR: https://github.com/odoo/enterprise/pull/128567 task-5123011 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr