Wednesday, May 20, 2026
3 changes · saas-19.3
Enhancements to existing features
This update simplifies how Odoo manages add-on locations. It now supports using wildcard patterns (globbing) in the list of add-on paths, making it easier to manage multiple Odoo repositories. This change reduces the need for manual configuration and streamlines add-on deployment.
Original PR description
Pass all addons_path entries through glob.glob(), which returns [path] for literal paths and expands patterns otherwise. This is useful when managing multiple Odoo repositories under a common root, avoiding the need to list each addons path explicitly. Forward-Port-Of: odoo/odoo#259690
This update ensures the "Save Order" button remains visible in the Point of Sale interface. This allows users to seamlessly continue working on their orders across different devices and within the same session, improving efficiency and reducing frustration.
Original PR description
The "Save Order" button is now always available, allowing users to easily save and resume their orders on different devices within the same session. task-id: 5966678 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#261809 Forward-Port-Of: odoo/odoo#250405
This update enhances the way message previews display links, ensuring they remain concise and consistent even with complex HTML formatting. The changes simplify the preview by converting line breaks and flattening non-link elements, resulting in a cleaner and more predictable viewing experience for recipients.
Original PR description
Message previews should stay compact and predictable even when the original message contains rich HTML. This changes applies a narrow first-step conversion: - convert <br> to non-breaking spaces - insert spacing between adjacent block elements - flatten non-link elements to their text content - preserve links only as anchors displaying their href task-5263284 Forward-Port-Of: odoo/odoo#238080