diff --git a/docsource/modules180-190.rst b/docsource/modules180-190.rst index a0448b5ac97..ae6ac8bfc17 100644 --- a/docsource/modules180-190.rst +++ b/docsource/modules180-190.rst @@ -56,7 +56,7 @@ Module coverage 18.0 -> 19.0 +---------------------------------------------------+----------------------+-------------------------------------------------+ | auth_password_policy_signup | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| auth_signup | | | +| auth_signup |Done | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | |new| auth_timeout | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ @@ -230,7 +230,7 @@ Module coverage 18.0 -> 19.0 +---------------------------------------------------+----------------------+-------------------------------------------------+ | html_editor |Nothing to do | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| http_routing | | | +| http_routing |Nothing to do | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | iap | |No DB layout changes. | +---------------------------------------------------+----------------------+-------------------------------------------------+ @@ -822,7 +822,7 @@ Module coverage 18.0 -> 19.0 +---------------------------------------------------+----------------------+-------------------------------------------------+ | point_of_sale | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| portal | | | +| portal |Done | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | portal_rating | |No DB layout changes. | +---------------------------------------------------+----------------------+-------------------------------------------------+ diff --git a/openupgrade_scripts/scripts/auth_signup/19.0.1.0/post-migration.py b/openupgrade_scripts/scripts/auth_signup/19.0.1.0/post-migration.py new file mode 100644 index 00000000000..1fc02e0bbb2 --- /dev/null +++ b/openupgrade_scripts/scripts/auth_signup/19.0.1.0/post-migration.py @@ -0,0 +1,15 @@ +# Copyright 2026 Hunki Enterprises BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + openupgrade.load_data(env, "auth_signup", "19.0.1.0/noupdate_changes.xml") + openupgrade.delete_record_translations( + env.cr, + "auth_signup", + ["mail_template_user_signup_account_created", "set_password_email"], + ["body_html"], + ) diff --git a/openupgrade_scripts/scripts/auth_signup/19.0.1.0/upgrade_analysis_work.txt b/openupgrade_scripts/scripts/auth_signup/19.0.1.0/upgrade_analysis_work.txt new file mode 100644 index 00000000000..e0dbd570d63 --- /dev/null +++ b/openupgrade_scripts/scripts/auth_signup/19.0.1.0/upgrade_analysis_work.txt @@ -0,0 +1,7 @@ +---Models in module 'auth_signup'--- +---Fields in module 'auth_signup'--- +---XML records in module 'auth_signup'--- +DEL ir.ui.view: auth_signup.alert_login_new_device +NEW mail.template: auth_signup.portal_set_password_email (noupdate) + +# NOTHING TO DO diff --git a/openupgrade_scripts/scripts/http_routing/19.0.1.0/upgrade_analysis_work.txt b/openupgrade_scripts/scripts/http_routing/19.0.1.0/upgrade_analysis_work.txt new file mode 100644 index 00000000000..564e1df31b8 --- /dev/null +++ b/openupgrade_scripts/scripts/http_routing/19.0.1.0/upgrade_analysis_work.txt @@ -0,0 +1,6 @@ +---Models in module 'http_routing'--- +---Fields in module 'http_routing'--- +---XML records in module 'http_routing'--- +NEW ir.ui.view: http_routing.415 +NEW ir.ui.view: http_routing.422 +NEW ir.ui.view: http_routing.4xx diff --git a/openupgrade_scripts/scripts/portal/19.0.1.0/post-migration.py b/openupgrade_scripts/scripts/portal/19.0.1.0/post-migration.py new file mode 100644 index 00000000000..a0df448bc84 --- /dev/null +++ b/openupgrade_scripts/scripts/portal/19.0.1.0/post-migration.py @@ -0,0 +1,11 @@ +# Copyright 2026 Hunki Enterprises BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + openupgrade.delete_records_safely_by_xml_id( + env, ["portal.mail_template_data_portal_welcome"] + ) diff --git a/openupgrade_scripts/scripts/portal/19.0.1.0/upgrade_analysis_work.txt b/openupgrade_scripts/scripts/portal/19.0.1.0/upgrade_analysis_work.txt new file mode 100644 index 00000000000..490fa730f6c --- /dev/null +++ b/openupgrade_scripts/scripts/portal/19.0.1.0/upgrade_analysis_work.txt @@ -0,0 +1,21 @@ +---Models in module 'portal'--- +---Fields in module 'portal'--- +portal / gamification.badge.user / website_message_ids (one2many): NEW relation: mail.message +portal / ir.actions.server / website_message_ids (one2many): NEW relation: mail.message +portal / ir.cron / website_message_ids (one2many): NEW relation: mail.message +portal / maintenance.equipment.category / website_message_ids (one2many): DEL relation: mail.message +portal / maintenance.team / website_message_ids (one2many): NEW relation: mail.message + +# NOTHING TO DO: these fields a new filter on message_ids introduced by portal + +---XML records in module 'portal'--- +NEW ir.ui.view: portal.address_card +NEW ir.ui.view: portal.address_footer +NEW ir.ui.view: portal.address_form_fields +NEW ir.ui.view: portal.address_list +NEW ir.ui.view: portal.address_management +NEW ir.ui.view: portal.my_addresses +DEL ir.ui.view: portal.portal_my_details_fields +DEL mail.template: portal.mail_template_data_portal_welcome (noupdate) + +# DONE: deleted in post-migration