Wednesday, May 20, 2026
2 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 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