-
-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3460 from ForgeFlow/15.0-imp-analysis
[15.0][UPD] apriori + analysis + coverage
- Loading branch information
Showing
132 changed files
with
4,922 additions
and
105 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
openupgrade_scripts/scripts/account_edi/15.0.1.0/noupdate_changes.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<odoo> | ||
<record id="ir_cron_edi_network" model="ir.cron"> | ||
<field name="code">model._cron_process_documents_web_services(job_count=20)</field> | ||
<field name="interval_type">days</field> | ||
</record> | ||
</odoo> |
4 changes: 4 additions & 0 deletions
4
openupgrade_scripts/scripts/account_edi_ubl_cii/15.0.1.0/upgrade_analysis.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
---Models in module 'account_edi_ubl_cii'--- | ||
new model account.edi.xml.ubl_nl [abstract] | ||
---Fields in module 'account_edi_ubl_cii'--- | ||
---XML records in module 'account_edi_ubl_cii'--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
openupgrade_scripts/scripts/account_test/15.0.1.0/upgrade_analysis.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
---Models in module 'account_test'--- | ||
---Fields in module 'account_test'--- | ||
---XML records in module 'account_test'--- | ||
---nothing has changed in this module-- |
8 changes: 8 additions & 0 deletions
8
openupgrade_scripts/scripts/auth_totp_mail_enforce/15.0.1.0/upgrade_analysis.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
---Models in module 'auth_totp_mail_enforce'--- | ||
new model auth.totp.rate.limit.log [transient] | ||
---Fields in module 'auth_totp_mail_enforce'--- | ||
---XML records in module 'auth_totp_mail_enforce'--- | ||
NEW ir.model.access: auth_totp_mail_enforce.access_auth_totp_rate_limit_log | ||
NEW ir.ui.view: auth_totp_mail_enforce.auth_totp_mail_form | ||
NEW ir.ui.view: auth_totp_mail_enforce.res_config_settings_view_form | ||
NEW mail.template: auth_totp_mail_enforce.mail_template_totp_mail_code (noupdate) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Copyright 2022 ForgeFlow S.L. <https://www.forgeflow.com> | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||
from openupgradelib import openupgrade | ||
|
||
|
||
@openupgrade.migrate() | ||
def migrate(env, version): | ||
# Disappeared constraint | ||
openupgrade.delete_sql_constraint_safely( | ||
env, "bus", "bus_presence", "bus_user_presence_unique" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.