Thursday, December 19, 2024
2 changes · 18.0
Enhancements to existing features
Website routes that only read information now use read-only database resources instead of the main write database. This helps improve performance and scalability for common website traffic without changing what users see or do.
Original PR description
Since [1], the readonly parameter was added to ensure that these endpoints open a cursor on the read-only replica instead of the primary read/write database, enhancing performance and scalability for read-intensive operations. This commit adds 'readonly=True' to routes handling non-modifying requests. task-4357885 [1] https://github.com/odoo/odoo/commit/584a172274caefb23e5d91b609fc893160535416
This update adds and aligns automated checks for combo product selection in rental, subscription, and website rental flows. It helps ensure customers and sales teams get consistent configurator behavior when choosing bundled or optional products.
Original PR description
This change: - Adds tests for the combo configurator, - Aligns the product configurator tests with the combo configurator ones. Community PR: https://github.com/odoo/odoo/pull/186645 task-4320163