Thursday, June 4, 2026
3 changes · master
Features or functions removed from Odoo
This change removes a recently added asset versioning mechanism for dynamic website snippets because the existing system already supports the needed carousel behavior. Reverting it now avoids creating compatibility expectations before a larger upcoming redesign of dynamic snippets.
Original PR description
*: website_blog, website_sale The code from [1] introduces support for shared asset versioning in dynamic snippets, allowing a snippet to define both its own asset version and the versions of any shared assets it depends on. This logic was originally introduced for [2]. However, after further review, the code can already handle carousel snippet adaptations without requiring asset versioning. Since [3] significantly restructures dynamic snippets, it is preferable to revert this change for now and reintroduce it once [3] is merged. This would allow us to use a better asset dependency system without having to worry about supporting databases that may start relying on this new asset versioning mechanism in stable `19.4`. [1]: https://github.com/odoo/odoo/commit/3e761a7a0b0db78fd6b59807e4b946748b99279b [2]: https://www.odoo.com/odoo/project/760/tasks/5090468 [3]: https://www.odoo.com/odoo/project/760/tasks/5245362 task-6174760
This update removes a previously used JavaScript file related to appointment scheduling. This change was made because the functionality was already available in another part of the system, eliminating a duplicate and simplifying maintenance. This ensures consistent performance and reduces potential code complexity.
Original PR description
Purpose of this PR: Since html_editor/static/src/utils/regex.js has been removed as it contained redundant logic already present in link/utils. community-https://github.com/odoo/odoo/pull/265767 task-6199269
This update removes a redundant 'today' date filter from the 'My Map' menu. As a new date selection filter is being implemented, this default filter is no longer necessary, streamlining the user experience. This change prepares the system for the upcoming date filtering functionality.
Original PR description
In this commit, we remove the default filter on "today" in the "My Map" menu. As we will introduce a date selection filter, this filter does not make sense anymore. task-6273672