Skip to content
Open
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
8 changes: 4 additions & 4 deletions docsource/modules180-190.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ Module coverage 18.0 -> 19.0
+---------------------------------------------------+----------------------+-------------------------------------------------+
| analytic |Nothing to do | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| |new| api_doc | | |
| |new| api_doc |Nothing to do | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| attachment_indexation |Nothing to do | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| auth_ldap | |No DB layout changes. |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| auth_oauth |Done | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| auth_passkey | | |
| auth_passkey |Done | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| |new| auth_passkey_portal | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down Expand Up @@ -84,7 +84,7 @@ Module coverage 18.0 -> 19.0
+---------------------------------------------------+----------------------+-------------------------------------------------+
| base_import |Nothing to do |No DB layout changes. |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| base_import_module | |No DB layout changes. |
| base_import_module |Nothing to do |No DB layout changes. |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| base_install_request | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down Expand Up @@ -984,7 +984,7 @@ Module coverage 18.0 -> 19.0
+---------------------------------------------------+----------------------+-------------------------------------------------+
| resource_mail |Nothing to do | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| |new| rpc | | |
| |new| rpc |Nothing to do | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| sale |Done | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---Models in module 'api_doc'---
---Fields in module 'api_doc'---
---XML records in module 'api_doc'---
NEW ir.ui.view: api_doc.docclient
NEW res.groups: api_doc.group_allow_doc
# NOTHING TO DO
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright 2026 ForgeFlow S.L. (https://www.forgeflow.com)
# 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_passkey", "19.0.1.1/noupdate_changes.xml")
14 changes: 14 additions & 0 deletions openupgrade_scripts/scripts/auth_passkey/19.0.1.1/pre-migration.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright 2026 ForgeFlow S.L. (https://www.forgeflow.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from openupgradelib import openupgrade

noupdate_xmlids = [
"rule_auth_passkey_key_admin",
"rule_auth_passkey_key_user",
]


@openupgrade.migrate()
def migrate(env, version):
openupgrade.set_xml_ids_noupdate_value(env, "auth_passkey", noupdate_xmlids, True)
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---Models in module 'auth_passkey'---
---Fields in module 'auth_passkey'---
---XML records in module 'auth_passkey'---
NEW ir.model.access: auth_passkey.access_auth_passkey_key_create_portal
NEW ir.model.access: auth_passkey.access_auth_passkey_key_portal
NEW ir.rule: auth_passkey.rule_auth_passkey_key_create_portal (noupdate)
NEW ir.ui.view: auth_passkey.auth_passkey_key_view_kanban
NEW ir.ui.view: auth_passkey.auth_passkey_login_oauth
# NOTHING TO DO

ir.rule: auth_passkey.rule_auth_passkey_key_admin (noupdate) (noupdate switched)
ir.rule: auth_passkey.rule_auth_passkey_key_user (noupdate) (noupdate switched)
# DONE: pre-migration: switched noupdate
Loading