Daily updates from Odoo
Saturday, August 30, 2025
3 changes
Enhancements to existing features
This update changes how request results are matched to the original request, avoiding reliance on an internal insertion order that may not be consistent. This helps prevent incorrect results from being returned and prepares the system for more efficient request batching in the future.
Original PR description
*: cloud_storage,im_livechat Before this commit, results of the insertion of data in the store were used, this could lead to issues later on, since the insertion does not keep the order of the data. To avoid this, we send back in the result of the rpc's the IDs linked to the request. In the future, we could use this to batch requests together and retrieve the result of the request with the given ID. task-4982525
The VoIP softphone now automatically receives focus when opened using the keyboard shortcut. This makes it easier for users to start interacting with the phone immediately and avoids an extra click or lost keyboard input.
Original PR description
This commit ensures the VoIP softphone is automatically focused when opened with keyboard. Previously, the softphone would lose focus when opened with keyboard. Task-4936059
Automated website sales checks for rental and subscription products now look for the updated "Checkout" button label. This keeps internal validation aligned with the current shopping flow and helps avoid false failures after the interface wording changed.
Original PR description
- Updated tour step triggers from `Proceed to Checkout` to `Checkout` in product configurator tours to reflect the recent UI label change. - Prevents tour failures due to mismatched button text. See Also: - Community PR: https://github.com/odoo/odoo/pull/213288 task:4731022