Daily updates from Odoo
Thursday, June 18, 2026
2 changes · saas-19.1
Code cleanup and technical improvements
This update enhances the Odoo system by making a key component, `fragment_to_query_string`, more accessible to all modules. Previously, it was limited to the auth_oauth module, but now it's been updated to be more reliable and compliant with industry standards, improving overall system stability and testability. This change ensures consistent behavior across the Odoo platform.
Original PR description
## [MOV] odoo,auth_oauth: fragment_to_query_string The aim of this commit is to allow module unrelated to auth_oauth to import fragment_to_query_string. task-id: 6071808 ## [REF] odoo: JUC compliant fragment_to_query_string The aim of this commit is to make `fragment_to_query_string` JUC compliant by: - documenting the behavior - clarifying the code - reducing possible side effect - testing the behavior - add a route to be able to test it manually task-id: 6071808 Forward-Port-Of: odoo/odoo#270834
This update ensures that the system continues to accurately use a recently moved function related to handling URLs. The change is a technical refactoring to maintain consistency within the Odoo codebase. It doesn't impact users directly.
Original PR description
The aim of this commit is to keep referencing fragment_to_query_string correctly as it is moved into `http.py`. task-id: 6071808 Forward-Port-Of: odoo/enterprise#121019