Tuesday, September 29, 2020
2 changes · master
Resolved issues and error corrections
This fixes a crash that could occur when website email channel alias information was requested without the necessary access rights. The change helps keep the website experience stable by handling restricted access gracefully instead of showing an error.
Original PR description
Related to https://github.com/odoo/odoo/pull/43858 Same fix for stable version (no retrocompatibility controller) (guardedCatch should be not ported after 13.1 with this patch) -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Twitter stream setup now uses a stronger validation rule to prevent incomplete stream configurations. Existing incorrectly configured records are handled through migration, reducing future setup errors without changing day-to-day user workflows.
Original PR description
Purpose ======= On #12551 , we fixed a bug by adding a warning message in the create of the stream type. This can not be implemented with a constraint in stable because badly-configured streams (stream of type "twitter_follow" without "twitter_followed_account_id" e.g. might exist in the database). So, we do it in the right way on master with a migration script to fix the badly-configured records. Task-2302570 Migration - odoo/upgrade/pull/1706