Tuesday, March 4, 2025
3 changes · master
Enhancements to existing features
Spreadsheet revision history now keeps the original author when a spreadsheet is copied from version history. This prevents copied spreadsheets from incorrectly showing the person who made the copy as the author of past revisions, improving auditability and trust in version records.
Original PR description
Before this commit, the `spreadsheet.revision` model relied on `create_uid` to track the author of a revision. However, when copying a spreadsheet through the version history, the revisions were duplicated, and `create_uid` was overridden with the user initiating the copy, leading to a loss of the original author information. To address this, an `author` field is added to `spreadsheet.revision` to store the original author's reference, ensuring it remains intact even when the spreadsheet is duplicated. task-[4510201](https://www.odoo.com/odoo/project/2328/tasks/4510201)
Point of Sale administrators can now enable the new Tyro payment integration directly from the settings screen. This makes it easier to install and activate Tyro support without extra technical steps.
Original PR description
A new `pos_tyro` module was added in #79432. This commit adds a checkbox in the PoS settings to install this new module.
The Studio app’s automated tests for key editing and approval areas were moved to a newer testing framework. This helps maintain product quality and makes future updates to Studio safer and easier for the development team.