Daily updates from Odoo
Friday, May 8, 2026
4 changes
1 change
Features or functions removed from Odoo
This update removes outdated code from the welcome page related to call preview streams. Previously, the welcome page handled stream management, but this has been updated to a more efficient system. This cleanup improves the stability and performance of the Odoo platform.
Original PR description
**Purpose of this PR:** Since odoo#228382, the welcome page no longer manages call preview media streams itself. `CallPreview` now handles both stream cleanup on destroy and the `getUserMedia` race that could happen when leaving the page while permission was still pending. The `isClosed` flag was introduced in odoo#179690 to guard that race in `WelcomePage`, but it became obsolete after the refactor and the assignment was not cleaned up. This commit removes the unused assignment from the welcome page. Forward-Port-Of: odoo/odoo#263216
1 change
Features or functions removed from Odoo
This update removes outdated code from the welcome page related to call preview streams. Previously, the welcome page handled stream management, but this has been updated to a more efficient system. This cleanup improves the stability and performance of the welcome page.
Original PR description
**Purpose of this PR:** Since odoo#228382, the welcome page no longer manages call preview media streams itself. `CallPreview` now handles both stream cleanup on destroy and the `getUserMedia` race that could happen when leaving the page while permission was still pending. The `isClosed` flag was introduced in odoo#179690 to guard that race in `WelcomePage`, but it became obsolete after the refactor and the assignment was not cleaned up. This commit removes the unused assignment from the welcome page. Forward-Port-Of: odoo/odoo#263216
1 change
Features or functions removed from Odoo
This update removes outdated code from the welcome page related to managing call streams. Previously, the welcome page handled stream cleanup, but this functionality was moved to another part of the system. Removing this unused code simplifies the system and improves efficiency.
Original PR description
**Purpose of this PR:** Since odoo#228382, the welcome page no longer manages call preview media streams itself. `CallPreview` now handles both stream cleanup on destroy and the `getUserMedia` race that could happen when leaving the page while permission was still pending. The `isClosed` flag was introduced in odoo#179690 to guard that race in `WelcomePage`, but it became obsolete after the refactor and the assignment was not cleaned up. This commit removes the unused assignment from the welcome page. Forward-Port-Of: odoo/odoo#263216
1 change
Features or functions removed from Odoo
This update removes outdated and unused code from the MRP PLM module, improving the overall codebase. Removing this dead code enhances maintainability and reduces potential complexity. This change is part of a larger upgrade process.
Original PR description
Some action-related methods, fields, widget, and template in 'mrp_plm' were still referenced even though they are no longer used anywhere in the codebase. This commit removes the unused and non-functional code to keep the codebase clean and maintainable. Upgrade PR: https://github.com/odoo/upgrade/pull/10174