Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docsource/modules180-190.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Module coverage 18.0 -> 19.0
+---------------------------------------------------+----------------------+-------------------------------------------------+
| auth_password_policy_signup | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| auth_signup | | |
| auth_signup |Done | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| |new| auth_timeout | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down Expand Up @@ -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. |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down Expand Up @@ -822,7 +822,7 @@ Module coverage 18.0 -> 19.0
+---------------------------------------------------+----------------------+-------------------------------------------------+
| point_of_sale | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| portal | | |
| portal |Done | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| portal_rating | |No DB layout changes. |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down
15 changes: 15 additions & 0 deletions openupgrade_scripts/scripts/auth_signup/19.0.1.0/post-migration.py
Original file line number Diff line number Diff line change
@@ -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"],
)
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
11 changes: 11 additions & 0 deletions openupgrade_scripts/scripts/portal/19.0.1.0/post-migration.py
Original file line number Diff line number Diff line change
@@ -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"]
)
Original file line number Diff line number Diff line change
@@ -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