diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5b5ed4b..f9b8bab 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -70,7 +70,7 @@ repos: exclude: /README\.rst$|\.pot?$ - id: end-of-file-fixer # exclude autogenerated files - exclude: /README\.rst$|\.pot?$ + exclude: /README\.rst$|\.pot?$|^openupgrade_scripts/script.*.txt - id: debug-statements - id: fix-encoding-pragma args: ["--remove"] diff --git a/openupgrade_framework/odoo_patch/__init__.py b/openupgrade_framework/odoo_patch/__init__.py index 56a70db..1fd6e16 100644 --- a/openupgrade_framework/odoo_patch/__init__.py +++ b/openupgrade_framework/odoo_patch/__init__.py @@ -1,2 +1,3 @@ from . import odoo from . import addons + diff --git a/openupgrade_framework/odoo_patch/odoo/__init__.py b/openupgrade_framework/odoo_patch/odoo/__init__.py index cd0fc2d..f5065ae 100644 --- a/openupgrade_framework/odoo_patch/odoo/__init__.py +++ b/openupgrade_framework/odoo_patch/odoo/__init__.py @@ -1,6 +1,6 @@ from . import modules -from . import tools from . import service +from . import tools # Nothing todo the function, the function check_security didn't changed from . import http diff --git a/openupgrade_framework/odoo_patch/odoo/http.py b/openupgrade_framework/odoo_patch/odoo/http.py index e0858bb..e11c558 100644 --- a/openupgrade_framework/odoo_patch/odoo/http.py +++ b/openupgrade_framework/odoo_patch/odoo/http.py @@ -6,7 +6,7 @@ from odoo.http import SessionExpiredException, request, OpenERPSession if True: - def check_security(self): + def _check_security(self): """ Check the current authentication parameters to know if those are still valid. This method should be called at each request. If the @@ -29,4 +29,4 @@ def check_security(self): raise SessionExpiredException("Session expired") -OpenERPSession.check_security = check_security +OpenERPSession.check_security = _check_security diff --git a/openupgrade_framework/odoo_patch/odoo/models.py b/openupgrade_framework/odoo_patch/odoo/models.py index bdddf83..ee09595 100644 --- a/openupgrade_framework/odoo_patch/odoo/models.py +++ b/openupgrade_framework/odoo_patch/odoo/models.py @@ -9,7 +9,7 @@ if True: - def load(self, fields, data): + def _load(self, fields, data): """ Attempts to load the data matrix, and returns a list of ids (or ``False`` if there was an error and no id could be generated) and a @@ -176,4 +176,4 @@ def flush(*, xml_id=None, model=None): 'nextrow': nextrow, } -BaseModel.load = load +BaseModel.load = _load diff --git a/openupgrade_framework/odoo_patch/odoo/modules/__init__.py b/openupgrade_framework/odoo_patch/odoo/modules/__init__.py index 364925a..90de5b4 100644 --- a/openupgrade_framework/odoo_patch/odoo/modules/__init__.py +++ b/openupgrade_framework/odoo_patch/odoo/modules/__init__.py @@ -3,8 +3,7 @@ from . import graph # A lot of changes in the core functions. -# broken. TO BE FIXED. -# from . import loading +from . import loading # Adapted to V14 from . import migration diff --git a/openupgrade_framework/odoo_patch/odoo/modules/graph.py b/openupgrade_framework/odoo_patch/odoo/modules/graph.py index c04bcd0..b0bedef 100644 --- a/openupgrade_framework/odoo_patch/odoo/modules/graph.py +++ b/openupgrade_framework/odoo_patch/odoo/modules/graph.py @@ -13,7 +13,7 @@ if True: - def update_from_db(self, cr): + def _update_from_db(self, cr): if not len(self): return # update the graph with values from the database (if exist) @@ -43,7 +43,7 @@ def update_from_db(self, cr): setattr(package, k, v) - def add_modules(self, cr, module_list, force=None): + def _add_modules(self, cr, module_list, force=None): if force is None: force = [] packages = [] @@ -104,5 +104,5 @@ def add_modules(self, cr, module_list, force=None): return len(self) - len_graph -Graph.update_from_db = update_from_db -Graph.add_modules = add_modules +Graph.update_from_db = _update_from_db +Graph.add_modules = _add_modules diff --git a/openupgrade_framework/odoo_patch/odoo/modules/loading.py b/openupgrade_framework/odoo_patch/odoo/modules/loading.py index 86c1737..eb25c80 100644 --- a/openupgrade_framework/odoo_patch/odoo/modules/loading.py +++ b/openupgrade_framework/odoo_patch/odoo/modules/loading.py @@ -1,6 +1,7 @@ # flake8: noqa # pylint: skip-file +import itertools import logging import sys import time @@ -9,9 +10,9 @@ import odoo.tools as tools from odoo import api, SUPERUSER_ID from odoo.modules import loading -from odoo.modules.module import adapt_version, load_openerp_module +from odoo.modules.module import adapt_version, load_openerp_module, initialize_sys_path -from odoo.modules.loading import load_data, load_demo +from odoo.modules.loading import load_data, load_demo, _check_module_names from odoo.addons.openupgrade_framework.openupgrade import openupgrade_loading import os @@ -20,7 +21,7 @@ _test_logger = logging.getLogger('odoo.tests') -def load_module_graph(cr, graph, status=None, perform_checks=True, +def _load_module_graph(cr, graph, status=None, perform_checks=True, skip_modules=None, report=None, models_to_check=None, upg_registry=None): # """Migrates+Updates or Installs all module nodes from ``graph`` @@ -274,7 +275,7 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, return loaded_modules, processed_modules -def load_marked_modules(cr, graph, states, force, progressdict, report, +def _load_marked_modules(cr, graph, states, force, progressdict, report, loaded_modules, perform_checks, models_to_check=None, upg_registry=None): # """Loads modules marked with ``states``, adding them to ``graph`` and @@ -296,7 +297,7 @@ def load_marked_modules(cr, graph, states, force, progressdict, report, _logger.debug('Updating graph with %d more modules', len(module_list)) # # add upg_registry - loaded, processed = load_module_graph( + loaded, processed = _load_module_graph( cr, graph, progressdict, report=report, skip_modules=loaded_modules, perform_checks=perform_checks, models_to_check=models_to_check, upg_registry=upg_registry, @@ -309,7 +310,7 @@ def load_marked_modules(cr, graph, states, force, progressdict, report, return processed_modules -def load_modules(db, force_demo=False, status=None, update_module=False): +def _load_modules(db, force_demo=False, status=None, update_module=False): initialize_sys_path() force = [] @@ -353,7 +354,7 @@ def load_modules(db, force_demo=False, status=None, update_module=False): report = registry._assertion_report # # add upg_registry - loaded_modules, processed_modules = load_module_graph( + loaded_modules, processed_modules = _load_module_graph( cr, graph, status, perform_checks=update_module, report=report, models_to_check=models_to_check, upg_registry=upg_registry) @@ -424,14 +425,14 @@ def load_modules(db, force_demo=False, status=None, update_module=False): previously_processed = len(processed_modules) # # add upg_registry - processed_modules += load_marked_modules(cr, graph, + processed_modules += _load_marked_modules(cr, graph, ['installed', 'to upgrade', 'to remove'], force, status, report, loaded_modules, update_module, models_to_check, upg_registry) # if update_module: # # add upg_registry - processed_modules += load_marked_modules(cr, graph, + processed_modules += _load_marked_modules(cr, graph, ['to install'], force, status, report, loaded_modules, update_module, models_to_check, upg_registry) # @@ -549,7 +550,7 @@ def load_modules(db, force_demo=False, status=None, update_module=False): # STEP 9: save installed/updated modules for post-install tests registry.updated_modules += processed_modules - -loading.load_module_graph = load_module_graph -loading.load_marked_modules = load_marked_modules -loading.load_modules = load_modules +loading.load_module_graph = _load_module_graph +loading.load_marked_modules = _load_marked_modules +loading.load_modules = _load_modules +odoo.modules.load_modules = _load_modules diff --git a/openupgrade_framework/odoo_patch/odoo/modules/migration.py b/openupgrade_framework/odoo_patch/odoo/modules/migration.py index 5887a28..0346c2b 100644 --- a/openupgrade_framework/odoo_patch/odoo/modules/migration.py +++ b/openupgrade_framework/odoo_patch/odoo/modules/migration.py @@ -15,7 +15,7 @@ if True: - def migrate_module(self, pkg, stage): + def _migrate_module(self, pkg, stage): assert stage in ('pre', 'post', 'end') stageformat = { 'pre': '[>%s]', @@ -115,4 +115,4 @@ def _get_migration_files(pkg, version, stage): if mod: del mod -migration.migrate_module = migrate_module +migration.migrate_module = _migrate_module diff --git a/openupgrade_framework/odoo_patch/odoo/modules/registry.py b/openupgrade_framework/odoo_patch/odoo/modules/registry.py index 6e108ab..4c5f50d 100644 --- a/openupgrade_framework/odoo_patch/odoo/modules/registry.py +++ b/openupgrade_framework/odoo_patch/odoo/modules/registry.py @@ -11,7 +11,7 @@ if True: - def init(self, db_name): + def _init(self, db_name): self.models = {} # model name/model instance mapping self._sql_constraints = set() self._init = True @@ -55,4 +55,4 @@ def init(self, db_name): with closing(self.cursor()) as cr: self.has_unaccent = odoo.modules.db.has_unaccent(cr) -registry.init = init +registry.init = _init diff --git a/openupgrade_framework/odoo_patch/odoo/tools/convert.py b/openupgrade_framework/odoo_patch/odoo/tools/convert.py index cb3e9ab..49531bf 100644 --- a/openupgrade_framework/odoo_patch/odoo/tools/convert.py +++ b/openupgrade_framework/odoo_patch/odoo/tools/convert.py @@ -7,7 +7,7 @@ if True: - def _test_xml_id(self, xml_id): + def __test_xml_id(self, xml_id): if '.' in xml_id: module, id = xml_id.split('.', 1) assert '.' not in id, """The ID reference "%s" must contain @@ -20,4 +20,4 @@ def _test_xml_id(self, xml_id): # OpenUpgrade: log entry of XML imports openupgrade_log.log_xml_id(self.env.cr, self.module, xml_id) -xml_import._test_xml_id = _test_xml_id +xml_import._test_xml_id = __test_xml_id diff --git a/openupgrade_framework/odoo_patch/odoo/tools/view_validation.py b/openupgrade_framework/odoo_patch/odoo/tools/view_validation.py index 190d9a1..e6c8243 100644 --- a/openupgrade_framework/odoo_patch/odoo/tools/view_validation.py +++ b/openupgrade_framework/odoo_patch/odoo/tools/view_validation.py @@ -7,7 +7,7 @@ from odoo.tools.view_validation import _validators, _logger -def valid_view(arch, **kwargs): +def _valid_view(arch, **kwargs): for pred in _validators[arch.tag]: # # Do not raise blocking error, because it's normal to @@ -26,4 +26,4 @@ def valid_view(arch, **kwargs): return True -view_validation.valid_view = valid_view +view_validation.valid_view = _valid_view diff --git a/openupgrade_framework/openupgrade/openupgrade_loading.py b/openupgrade_framework/openupgrade/openupgrade_loading.py index 15d0f09..ca3e1d4 100644 --- a/openupgrade_framework/openupgrade/openupgrade_loading.py +++ b/openupgrade_framework/openupgrade/openupgrade_loading.py @@ -10,7 +10,8 @@ from odoo import release from odoo.modules.module import get_module_path -from odoo.tools import config, safe_eval +from odoo.tools.safe_eval import safe_eval +from odoo.tools.config import config # A collection of functions used in # odoo/modules/loading.py diff --git a/openupgrade_framework/openupgrade/openupgrade_log.py b/openupgrade_framework/openupgrade/openupgrade_log.py index 047dcdc..81c8916 100644 --- a/openupgrade_framework/openupgrade/openupgrade_log.py +++ b/openupgrade_framework/openupgrade/openupgrade_log.py @@ -1,9 +1,8 @@ +# coding: utf-8 # Copyright 2011-2015 Therp BV # Copyright 2016 Opener B.V. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -# flake8: noqa: C901 - from openupgradelib.openupgrade_tools import table_exists @@ -37,29 +36,25 @@ def log_xml_id(cr, module, xml_id): :param module: The module that contains the xml_id :param xml_id: the xml_id, with or without 'module.' prefix """ - if not table_exists(cr, "openupgrade_record"): + if not table_exists(cr, 'openupgrade_record'): return - if "." not in xml_id: - xml_id = "{}.{}".format(module, xml_id) + if '.' not in xml_id: + xml_id = '%s.%s' % (module, xml_id) cr.execute( - "SELECT model FROM ir_model_data " "WHERE module = %s AND name = %s", - xml_id.split("."), - ) + "SELECT model FROM ir_model_data " + "WHERE module = %s AND name = %s", + xml_id.split('.')) record = cr.fetchone() if not record: - # legalsylvain: disabled, due to pylint error - # do we have to log ? - # print("Cannot find xml_id %s" % xml_id) + print("Cannot find xml_id %s" % xml_id) return else: cr.execute( "SELECT id FROM openupgrade_record " "WHERE module=%s AND model=%s AND name=%s AND type=%s", - (module, record[0], xml_id, "xmlid"), - ) + (module, record[0], xml_id, 'xmlid')) if not cr.fetchone(): cr.execute( "INSERT INTO openupgrade_record " "(module, model, name, type) values(%s, %s, %s, %s)", - (module, record[0], xml_id, "xmlid"), - ) + (module, record[0], xml_id, 'xmlid')) diff --git a/openupgrade_scripts/scripts/account/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/account/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index 1a92014..0000000 --- a/openupgrade_scripts/scripts/account/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,19 +0,0 @@ ----Models in module 'account'--- -obsolete model account.accrual.accounting.wizard [transient] -obsolete model account.fiscal.year -obsolete model account.reconciliation.widget [abstract] -obsolete model report.account.report_agedpartnerbalance [abstract] -model account.analytic.default (moved from account_analytic_default) -new model account.automatic.entry.wizard [transient] -new model account.group.template -new model account.reconcile.model.line -new model account.reconcile.model.line.template -new model account.reconcile.model.partner.mapping -new model account.resequence.wizard [transient] -new model account.tax.report -new model account.tour.upload.bill [transient] -new model account.tour.upload.bill.email.confirm [transient] -new model report.account.report_invoice [abstract] -new model sequence.mixin [abstract] ----Fields in module 'account'--- ----XML records in module 'account'--- diff --git a/openupgrade_scripts/scripts/account_check_printing/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/account_check_printing/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index a2c2c64..0000000 --- a/openupgrade_scripts/scripts/account_check_printing/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'account_check_printing'--- ----Fields in module 'account_check_printing'--- ----XML records in module 'account_check_printing'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/account_debit_note/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/account_debit_note/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index a63cc36..0000000 --- a/openupgrade_scripts/scripts/account_debit_note/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'account_debit_note'--- ----Fields in module 'account_debit_note'--- ----XML records in module 'account_debit_note'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/account_edi/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/account_edi/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 5595f9d..0000000 --- a/openupgrade_scripts/scripts/account_edi/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,5 +0,0 @@ ----Models in module 'account_edi'--- -new model account.edi.document -new model account.edi.format ----Fields in module 'account_edi'--- ----XML records in module 'account_edi'--- diff --git a/openupgrade_scripts/scripts/account_test/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/account_test/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 6f4d911..0000000 --- a/openupgrade_scripts/scripts/account_test/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'account_test'--- ----Fields in module 'account_test'--- ----XML records in module 'account_test'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/adyen_platforms/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/adyen_platforms/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 5382c65..0000000 --- a/openupgrade_scripts/scripts/adyen_platforms/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,10 +0,0 @@ ----Models in module 'adyen_platforms'--- -new model adyen.account -new model adyen.address.mixin [abstract] -new model adyen.bank.account -new model adyen.id.mixin [abstract] -new model adyen.payout -new model adyen.shareholder -new model adyen.transaction ----Fields in module 'adyen_platforms'--- ----XML records in module 'adyen_platforms'--- diff --git a/openupgrade_scripts/scripts/analytic/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/analytic/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index 00e689a..0000000 --- a/openupgrade_scripts/scripts/analytic/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'analytic'--- ----Fields in module 'analytic'--- ----XML records in module 'analytic'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/auth_ldap/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/auth_ldap/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 4b3f15c..0000000 --- a/openupgrade_scripts/scripts/auth_ldap/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'auth_ldap'--- ----Fields in module 'auth_ldap'--- ----XML records in module 'auth_ldap'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/auth_oauth/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/auth_oauth/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 6eb632d..0000000 --- a/openupgrade_scripts/scripts/auth_oauth/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'auth_oauth'--- ----Fields in module 'auth_oauth'--- ----XML records in module 'auth_oauth'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/auth_totp/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/auth_totp/14.0.1.0/openupgrade_analysis.txt index de2fb48..604521f 100644 --- a/openupgrade_scripts/scripts/auth_totp/14.0.1.0/openupgrade_analysis.txt +++ b/openupgrade_scripts/scripts/auth_totp/14.0.1.0/openupgrade_analysis.txt @@ -1,4 +1,5 @@ ---Models in module 'auth_totp'--- new model auth_totp.wizard [transient] ---Fields in module 'auth_totp'--- +auth_totp / res.users / totp_secret (char) : NEW ---XML records in module 'auth_totp'--- diff --git a/openupgrade_scripts/scripts/barcodes/14.0.2.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/barcodes/14.0.2.0/openupgrade_analysis.txt deleted file mode 100644 index 3922857..0000000 --- a/openupgrade_scripts/scripts/barcodes/14.0.2.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'barcodes'--- ----Fields in module 'barcodes'--- ----XML records in module 'barcodes'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/base/14.0.1.3/openupgrade_analysis.txt b/openupgrade_scripts/scripts/base/14.0.1.3/openupgrade_analysis.txt index 81594c7..8c99f1e 100644 --- a/openupgrade_scripts/scripts/base/14.0.1.3/openupgrade_analysis.txt +++ b/openupgrade_scripts/scripts/base/14.0.1.3/openupgrade_analysis.txt @@ -6,4 +6,99 @@ new model res.users.apikeys.description [transient] new model res.users.apikeys.show [abstract] new model res.users.identitycheck [transient] ---Fields in module 'base'--- +base / ir.model / order (char) : NEW required, req_default: function, hasdefault +base / ir.model.data / date_init (datetime) : DEL +base / ir.model.data / date_update (datetime) : DEL +base / ir.model.data / res_id (integer) : relation is now 'model' ('False') [nothing to do] +base / ir.model.data / res_id (integer) : type is now 'many2one_reference' ('integer') +base / ir.model.fields / copied (boolean) : now a function +base / ir.model.fields / group_expand (boolean) : NEW +base / ir.ui.view / model_ids (one2many) : DEL relation: ir.model.data +base / ir.ui.view / type (selection) : selection_keys is now '['calendar', 'form', 'gantt', 'graph', 'kanban', 'pivot', 'qweb', 'search', 'tree']' ('['calendar', 'diagram', 'form', 'gantt', 'graph', 'kanban', 'pivot', 'qweb', 'search', 'tree']') +base / report.layout / sequence (integer) : NEW hasdefault +base / res.company / account_no (char) : DEL +base / res.country / image (binary) : DEL attachment: True +base / res.country / state_required (boolean) : NEW hasdefault +base / res.country / zip_required (boolean) : NEW hasdefault +base / res.currency.rate / currency_id (many2one) : now required +base / res.lang / flag_image (binary) : NEW attachment: True +base / res.partner / barcode (char) : NEW hasdefault +base / res.partner.bank / active (boolean) : NEW hasdefault +base / res.users / api_key_ids (one2many) : NEW relation: res.users.apikeys ---XML records in module 'base'--- +NEW ir.actions.act_window: base.action_apikeys_admin +NEW ir.actions.act_window: base.action_res_users_keys_description +DEL ir.actions.act_window: base.action_base_document_layout_configurator [renamed to web module] +DEL ir.actions.act_window: base.action_partner_employee_form +DEL ir.actions.act_window: base.action_partner_other_form +DEL ir.actions.act_window: base.company_normal_action_tree +NEW ir.model.access: base.access_base_language_export +NEW ir.model.access: base.access_base_language_import +NEW ir.model.access: base.access_base_language_install +NEW ir.model.access: base.access_base_module_uninstall +NEW ir.model.access: base.access_base_module_update +NEW ir.model.access: base.access_base_module_upgrade +NEW ir.model.access: base.access_base_partner_merge_automatic_wizard +NEW ir.model.access: base.access_base_partner_merge_line +NEW ir.model.access: base.access_base_update_translations +NEW ir.model.access: base.access_change_password_user +NEW ir.model.access: base.access_change_password_wizard +NEW ir.model.access: base.access_ir_demo +NEW ir.model.access: base.access_ir_demo_failure +NEW ir.model.access: base.access_ir_demo_failure_wizard +NEW ir.model.access: base.access_ir_property_group_system +NEW ir.model.access: base.access_res_config +NEW ir.model.access: base.access_res_config_installer +NEW ir.model.access: base.access_res_config_settings +NEW ir.model.access: base.access_res_country_group_system +NEW ir.model.access: base.access_res_users_apikeys_access_employee +NEW ir.model.access: base.access_res_users_apikeys_access_portal +NEW ir.model.access: base.access_res_users_apikeys_description_employee +NEW ir.model.access: base.access_res_users_apikeys_description_portal +NEW ir.model.access: base.access_res_users_apikeys_show_employee +NEW ir.model.access: base.access_res_users_identitycheck_employee +NEW ir.model.access: base.access_res_users_identitycheck_portal +NEW ir.model.access: base.access_reset_view_arch_wizard +NEW ir.model.access: base.access_reset_view_arch_wizard_group_system +NEW ir.model.access: base.access_wizard_ir_model_menu_create +DEL ir.model.access: base.access_ir_actions_act_url_all +DEL ir.model.access: base.access_ir_actions_act_window_all +DEL ir.model.access: base.access_ir_actions_act_window_close_all +DEL ir.model.access: base.access_ir_actions_act_window_view_all +DEL ir.model.access: base.access_ir_actions_all +DEL ir.model.access: base.access_ir_actions_report_all +DEL ir.model.access: base.access_ir_actions_server_all +DEL ir.model.access: base.access_ir_property_group_user_manager +DEL ir.model.access: base.access_ir_server_object_lines_all +NEW ir.module.category: base.module_category_accounting (noupdate) +NEW ir.module.category: base.module_category_accounting_localizations (noupdate) +NEW ir.module.category: base.module_category_accounting_localizations_account_charts (noupdate) +NEW ir.module.category: base.module_category_customizations +NEW ir.module.category: base.module_category_inventory (noupdate) +NEW ir.module.category: base.module_category_productivity (noupdate) +NEW ir.module.category: base.module_category_services (noupdate) +NEW ir.module.category: base.module_category_services_helpdesk +DEL ir.module.category: base.module_category_localization (noupdate) +DEL ir.module.category: base.module_category_localization_account_charts +DEL ir.module.category: base.module_category_operations (noupdate) +DEL ir.module.category: base.module_category_operations_helpdesk +NEW ir.module.module: base.module_planning (noupdate) +DEL ir.module.module: base.module_project_forecast (noupdate) +NEW ir.rule: base.api_key_admin (noupdate) +NEW ir.rule: base.api_key_public (noupdate) +NEW ir.rule: base.api_key_user (noupdate) +NEW ir.rule: base.change_password_rule (noupdate) +NEW ir.rule: base.res_users_identity_check (noupdate) +NEW ir.ui.view: base.form_res_users_key_description +NEW ir.ui.view: base.form_res_users_key_show +NEW ir.ui.view: base.identity_check_wizard +NEW ir.ui.view: base.view_apikeys +NEW ir.ui.view: base.view_model_constraint_search +DEL ir.ui.view: base.layout_preview +DEL ir.ui.view: base.view_base_document_layout +DEL ir.ui.view: base.view_menu +DEL ir.ui.view: base.view_partner_short_form +NEW res.country.group: base.sepa_zone (noupdate) +NEW res.groups: base.group_allow_export +NEW res.lang: base.lang_en_IN +DEL res.lang: base.lang_fil diff --git a/openupgrade_scripts/scripts/base/14.0.1.3/openupgrade_general_log.txt b/openupgrade_scripts/scripts/base/14.0.1.3/openupgrade_general_log.txt index 18dbad9..cc8a955 100644 --- a/openupgrade_scripts/scripts/base/14.0.1.3/openupgrade_general_log.txt +++ b/openupgrade_scripts/scripts/base/14.0.1.3/openupgrade_general_log.txt @@ -1,198 +1,30 @@ ---Models in module 'general'--- -obsolete model account.accrual.accounting.wizard [module account] -obsolete model account.bank.statement.import [module account_bank_statement_import] -obsolete model account.bank.statement.import.journal.creation [module account_bank_statement_import] -obsolete model account.fiscal.year [module account] -obsolete model account.reconciliation.widget [module account] -obsolete model base.gengo.translations [module base_gengo] -obsolete model crm.lead.tag [module crm] -obsolete model crm.partner.binding [module crm] -obsolete model email_template.preview [module mail] -obsolete model event.answer [module website_event_questions] -obsolete model event.confirm [module event] -obsolete model event.question.report [module website_event_questions] -obsolete model fleet.vehicle.cost [module fleet] -obsolete model fleet.vehicle.log.fuel [module fleet] -obsolete model google.calendar [module google_calendar] -obsolete model hr.expense.sheet.register.payment.wizard [module hr_expense] -obsolete model lunch.order.temp [module lunch] -obsolete model mail.address.mixin [module mail] -obsolete model mail.test [module test_mail] -obsolete model mail.test.full [module test_mail] -obsolete model mass.mail.test [module test_mass_mailing] -obsolete model mass.mail.test.bl [module test_mass_mailing] -obsolete model mrp.abstract.workorder [module mrp] -obsolete model mrp.abstract.workorder.line [module mrp] -obsolete model mrp.product.produce [module mrp] -obsolete model mrp.product.produce.line [module mrp] -obsolete model mrp.routing [module mrp] -obsolete model mrp.workorder.line [module mrp] -obsolete model product.price_list [module product] -obsolete model product.style [module website_sale] -obsolete model repair.cancel [module repair] -obsolete model report.account.report_agedpartnerbalance [module account] -obsolete model report.sale_coupon.report_coupon [module sale_coupon] -obsolete model sale.coupon [module sale_coupon] -obsolete model sale.coupon.generate [module sale_coupon] -obsolete model sale.coupon.program [module sale_coupon] -obsolete model sale.coupon.reward [module sale_coupon] -obsolete model sale.coupon.rule [module sale_coupon] -obsolete model stock.change.standard.price [module stock_account] -obsolete model stock.overprocessed.transfer [module stock] -obsolete model stock.picking.responsible [module stock] -obsolete model survey.label [module survey] -obsolete model survey.user_input_line [module survey] -obsolete model test_performance.mail [module test_mail] -new model account.automatic.entry.wizard [module account] -new model account.edi.document [module account_edi] -new model account.edi.format [module account_edi] -new model account.group.template [module account] -new model account.reconcile.model.line [module account] -new model account.reconcile.model.line.template [module account] -new model account.reconcile.model.partner.mapping [module account] -new model account.resequence.wizard [module account] -new model account.tax.report [module account] -new model account.tour.upload.bill [module account] -new model account.tour.upload.bill.email.confirm [module account] -new model adyen.account [module adyen_platforms] -new model adyen.address.mixin [module adyen_platforms] -new model adyen.bank.account [module adyen_platforms] -new model adyen.id.mixin [module adyen_platforms] -new model adyen.payout [module adyen_platforms] -new model adyen.shareholder [module adyen_platforms] -new model adyen.store [module pos_adyen] -new model adyen.terminal [module pos_adyen] -new model adyen.transaction [module adyen_platforms] -new model applicant.get.refuse.reason [module hr_recruitment] new model auth_totp.wizard [module auth_totp] -new model base.automation.link.test [module test_base_automation] -new model base.automation.linked.test [module test_base_automation] -new model calendar.recurrence [module calendar] -new model chat.room [module website_jitsi] -new model chat.room.mixin [module website_jitsi] -new model coupon.coupon [module coupon] -new model coupon.generate.wizard [module coupon] -new model coupon.program [module coupon] -new model coupon.reward [module coupon] -new model coupon.rule [module coupon] -new model crm.recurring.plan [module crm] -new model crm.tag [module sales_team] -new model event.lead.rule [module event_crm] -new model event.meeting.room [module website_event_meet] -new model event.question.answer [module website_event_questions] -new model event.quiz [module website_event_track_quiz] -new model event.quiz.answer [module website_event_track_quiz] -new model event.quiz.question [module website_event_track_quiz] -new model event.stage [module event] -new model event.tag [module event] -new model event.tag.category [module event] -new model event.track.tag.category [module website_event_track] -new model event.track.visitor [module website_event_track] -new model event.type.ticket [module event] -new model expiry.picking.confirmation [module product_expiry] -new model fleet.vehicle.cost.report [module fleet] -new model gamification.karma.tracking [module gamification] -new model google.calendar.account.reset [module google_calendar] -new model google.calendar.sync [module google_calendar] -new model hr.applicant.refuse.reason [module hr_recruitment] -new model hr.payroll.structure.type [module hr_contract] new model ir.qweb.field.image_url [module base] -new model mail.blacklist.remove [module mail] -new model mail.performance.thread [module test_mail] -new model mail.performance.tracking [module test_mail] -new model mail.render.mixin [module mail] -new model mail.template.preview [module mail] -new model mail.test.container [module test_mail] -new model mail.test.ticket [module test_mail] -new model mail.test.track.compute [module test_mail] -new model mailing.performance [module test_mass_mailing] -new model mailing.performance.blacklist [module test_mass_mailing] -new model mailing.test.blacklist [module test_mass_mailing] -new model mailing.test.optout [module test_mass_mailing] -new model mailing.test.simple [module test_mass_mailing] -new model mailing.test.utm [module test_mass_mailing] -new model microsoft.calendar.account.reset [module microsoft_calendar] -new model microsoft.calendar.sync [module microsoft_calendar] -new model microsoft.service [module microsoft_account] -new model mrp.consumption.warning [module mrp] -new model mrp.consumption.warning.line [module mrp] -new model mrp.immediate.production [module mrp] -new model mrp.immediate.production.line [module mrp] -new model mrp.production.backorder [module mrp] -new model mrp.production.backorder.line [module mrp] -new model phone.blacklist.remove [module phone_validation] -new model product.ribbon [module website_sale] -new model project.delete.wizard [module project] -new model project.task.create.sale.order [module sale_timesheet] -new model project.task.create.timesheet [module hr_timesheet] -new model project.task.recurrence [module project] -new model project.task.type.delete.wizard [module project] -new model report.account.report_invoice [module account] -new model report.coupon.report_coupon [module coupon] -new model report.l10n_ch.qr_report_main [module l10n_ch] -new model report.stock.report_product_product_replenishment [module stock] -new model report.stock.report_product_template_replenishment [module stock] new model res.users.apikeys [module base] new model res.users.apikeys.description [module base] new model res.users.apikeys.show [module base] new model res.users.identitycheck [module base] -new model sale.order.cancel [module sale] -new model sequence.mixin [module account] -new model slide.slide.resource [module website_slides] -new model snailmail.confirm [module snailmail] -new model snailmail.confirm.invoice [module snailmail_account] -new model stock.backorder.confirmation.line [module stock] -new model stock.immediate.transfer.line [module stock] -new model stock.orderpoint.snooze [module stock] -new model stock.valuation.layer.revaluation [module stock_account] -new model survey.question.answer [module survey] -new model survey.user_input.line [module survey] -new model vendor.delay.report [module purchase_stock] -new model website.cover_properties.mixin [module website] -new model website.robots [module website] -new model website.sale.extra.field [module website_sale] -new model website.snippet.filter [module website] ---Fields in module 'general'--- -# 0 fields matched, -# Direct match: 0 +# 887 fields matched, +# Direct match: 887 # Found in other module: 0 # Found with different type: 0 # In obsolete models: 0 -# New columns: 0 -# Not matched: 0 +# New columns: 17 +# Not matched: 7 ---XML records in module 'general'--- -ERROR: module not in list of installed modules: ----Models in module 'account_analytic_default'--- -model account.analytic.default (moved to account) ----Fields in module 'account_analytic_default'--- ----XML records in module 'account_analytic_default'--- -ERROR: module not in list of installed modules: ----Models in module 'account_bank_statement_import'--- -obsolete model account.bank.statement.import [transient] -obsolete model account.bank.statement.import.journal.creation [transient] ----Fields in module 'account_bank_statement_import'--- ----XML records in module 'account_bank_statement_import'--- -ERROR: module not in list of installed modules: ----Models in module 'base_gengo'--- -obsolete model base.gengo.translations [transient] ----Fields in module 'base_gengo'--- ----XML records in module 'base_gengo'--- -ERROR: module not in list of installed modules: ----Models in module 'hr_holidays_calendar'--- -model hr.leave.report.calendar (moved to hr_holidays) [sql_view] ----Fields in module 'hr_holidays_calendar'--- ----XML records in module 'hr_holidays_calendar'--- ERROR: could not create migrations directory '/home/sylvain/grap_dev/grap-odoo-env-14.0/src/openupgrade-framework/openupgrade_records/migrations/14.0.1.0.0' ---Models in module 'openupgrade_records'--- ---Fields in module 'openupgrade_records'--- +openupgrade_records / openupgrade.comparison.config / protocol (selection) : DEL required, selection_keys: ['http://'], req_default: function ---XML records in module 'openupgrade_records'--- ----nothing has changed in this module-- +NEW ir.model.access: openupgrade_records.access_openupgrade_analysis_wizard +NEW ir.model.access: openupgrade_records.access_openupgrade_generate_records_wizard +NEW ir.model.access: openupgrade_records.access_openupgrade_install_all_wizard ERROR: module not in list of installed modules: ----Models in module 'website_theme_install'--- -model theme.ir.attachment (moved to website) -model theme.ir.ui.view (moved to website) -model theme.utils (moved to website) [abstract] -model theme.website.menu (moved to website) -model theme.website.page (moved to website) ----Fields in module 'website_theme_install'--- ----XML records in module 'website_theme_install'--- +---Models in module 'web_diagram'--- +---Fields in module 'web_diagram'--- +---XML records in module 'web_diagram'--- +DEL ir.ui.view: web_diagram.assets_backend +DEL ir.ui.view: web_diagram.qunit_suite diff --git a/openupgrade_scripts/scripts/base_address_city/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/base_address_city/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 8a5e066..0000000 --- a/openupgrade_scripts/scripts/base_address_city/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'base_address_city'--- ----Fields in module 'base_address_city'--- ----XML records in module 'base_address_city'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/base_automation/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/base_automation/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index d2492c5..0000000 --- a/openupgrade_scripts/scripts/base_automation/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,5 +0,0 @@ ----Models in module 'base_automation'--- -model base.automation.lead.test (moved to test_base_automation) -model base.automation.line.test (moved to test_base_automation) ----Fields in module 'base_automation'--- ----XML records in module 'base_automation'--- diff --git a/openupgrade_scripts/scripts/base_geolocalize/14.0.2.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/base_geolocalize/14.0.2.1/openupgrade_analysis.txt deleted file mode 100644 index def686d..0000000 --- a/openupgrade_scripts/scripts/base_geolocalize/14.0.2.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'base_geolocalize'--- ----Fields in module 'base_geolocalize'--- ----XML records in module 'base_geolocalize'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/base_import/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/base_import/14.0.1.0/openupgrade_analysis.txt index 2b29baf..c638ee7 100644 --- a/openupgrade_scripts/scripts/base_import/14.0.1.0/openupgrade_analysis.txt +++ b/openupgrade_scripts/scripts/base_import/14.0.1.0/openupgrade_analysis.txt @@ -1,4 +1,22 @@ ---Models in module 'base_import'--- ---Fields in module 'base_import'--- ---XML records in module 'base_import'--- ----nothing has changed in this module-- +DEL ir.model.access: base_import.access_base_import_mapping +DEL ir.model.access: base_import.access_base_import_tests_models_char +DEL ir.model.access: base_import.access_base_import_tests_models_char_noreadonly +DEL ir.model.access: base_import.access_base_import_tests_models_char_readonly +DEL ir.model.access: base_import.access_base_import_tests_models_char_required +DEL ir.model.access: base_import.access_base_import_tests_models_char_states +DEL ir.model.access: base_import.access_base_import_tests_models_char_stillreadonly +DEL ir.model.access: base_import.access_base_import_tests_models_complex +DEL ir.model.access: base_import.access_base_import_tests_models_float +DEL ir.model.access: base_import.access_base_import_tests_models_m2o +DEL ir.model.access: base_import.access_base_import_tests_models_m2o_related +DEL ir.model.access: base_import.access_base_import_tests_models_m2o_required +DEL ir.model.access: base_import.access_base_import_tests_models_m2o_required_related +DEL ir.model.access: base_import.access_base_import_tests_models_o2m +DEL ir.model.access: base_import.access_base_import_tests_models_o2m_child +DEL ir.model.access: base_import.access_base_import_tests_models_preview +DEL ir.ui.view: base_import.assets_backend +DEL ir.ui.view: base_import.qunit_mobile_suite +DEL ir.ui.view: base_import.qunit_suite diff --git a/openupgrade_scripts/scripts/base_import_module/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/base_import_module/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index d6614e9..0000000 --- a/openupgrade_scripts/scripts/base_import_module/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'base_import_module'--- ----Fields in module 'base_import_module'--- ----XML records in module 'base_import_module'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/base_sparse_field/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/base_sparse_field/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 0d1aafe..0000000 --- a/openupgrade_scripts/scripts/base_sparse_field/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'base_sparse_field'--- ----Fields in module 'base_sparse_field'--- ----XML records in module 'base_sparse_field'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/board/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/board/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 3d28a65..0000000 --- a/openupgrade_scripts/scripts/board/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'board'--- ----Fields in module 'board'--- ----XML records in module 'board'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/bus/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/bus/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 075f703..0000000 --- a/openupgrade_scripts/scripts/bus/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'bus'--- ----Fields in module 'bus'--- ----XML records in module 'bus'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/calendar/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/calendar/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 02d6035..0000000 --- a/openupgrade_scripts/scripts/calendar/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'calendar'--- -new model calendar.recurrence ----Fields in module 'calendar'--- ----XML records in module 'calendar'--- diff --git a/openupgrade_scripts/scripts/coupon/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/coupon/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index d850e3c..0000000 --- a/openupgrade_scripts/scripts/coupon/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,9 +0,0 @@ ----Models in module 'coupon'--- -new model coupon.coupon -new model coupon.generate.wizard [transient] -new model coupon.program -new model coupon.reward -new model coupon.rule -new model report.coupon.report_coupon [abstract] ----Fields in module 'coupon'--- ----XML records in module 'coupon'--- diff --git a/openupgrade_scripts/scripts/crm/14.0.1.2/openupgrade_analysis.txt b/openupgrade_scripts/scripts/crm/14.0.1.2/openupgrade_analysis.txt deleted file mode 100644 index d04a59e..0000000 --- a/openupgrade_scripts/scripts/crm/14.0.1.2/openupgrade_analysis.txt +++ /dev/null @@ -1,6 +0,0 @@ ----Models in module 'crm'--- -obsolete model crm.lead.tag -obsolete model crm.partner.binding [transient] -new model crm.recurring.plan ----Fields in module 'crm'--- ----XML records in module 'crm'--- diff --git a/openupgrade_scripts/scripts/crm_iap_lead/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/crm_iap_lead/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index 4402b16..0000000 --- a/openupgrade_scripts/scripts/crm_iap_lead/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'crm_iap_lead'--- ----Fields in module 'crm_iap_lead'--- ----XML records in module 'crm_iap_lead'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/crm_iap_lead_enrich/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/crm_iap_lead_enrich/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index 1e95f9d..0000000 --- a/openupgrade_scripts/scripts/crm_iap_lead_enrich/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'crm_iap_lead_enrich'--- ----Fields in module 'crm_iap_lead_enrich'--- ----XML records in module 'crm_iap_lead_enrich'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/crm_iap_lead_website/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/crm_iap_lead_website/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index af70810..0000000 --- a/openupgrade_scripts/scripts/crm_iap_lead_website/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'crm_iap_lead_website'--- ----Fields in module 'crm_iap_lead_website'--- ----XML records in module 'crm_iap_lead_website'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/delivery/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/delivery/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 661f960..0000000 --- a/openupgrade_scripts/scripts/delivery/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'delivery'--- ----Fields in module 'delivery'--- ----XML records in module 'delivery'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/digest/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/digest/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index 1148c06..0000000 --- a/openupgrade_scripts/scripts/digest/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'digest'--- ----Fields in module 'digest'--- ----XML records in module 'digest'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/event/14.0.1.3/openupgrade_analysis.txt b/openupgrade_scripts/scripts/event/14.0.1.3/openupgrade_analysis.txt deleted file mode 100644 index 1f1d151..0000000 --- a/openupgrade_scripts/scripts/event/14.0.1.3/openupgrade_analysis.txt +++ /dev/null @@ -1,9 +0,0 @@ ----Models in module 'event'--- -obsolete model event.confirm [transient] -model event.event.ticket (moved from event_sale) -new model event.stage -new model event.tag -new model event.tag.category -new model event.type.ticket ----Fields in module 'event'--- ----XML records in module 'event'--- diff --git a/openupgrade_scripts/scripts/event_crm/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/event_crm/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index cdf7fb4..0000000 --- a/openupgrade_scripts/scripts/event_crm/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'event_crm'--- -new model event.lead.rule ----Fields in module 'event_crm'--- ----XML records in module 'event_crm'--- diff --git a/openupgrade_scripts/scripts/event_sale/14.0.1.2/openupgrade_analysis.txt b/openupgrade_scripts/scripts/event_sale/14.0.1.2/openupgrade_analysis.txt deleted file mode 100644 index 73e15a7..0000000 --- a/openupgrade_scripts/scripts/event_sale/14.0.1.2/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'event_sale'--- -model event.event.ticket (moved to event) ----Fields in module 'event_sale'--- ----XML records in module 'event_sale'--- diff --git a/openupgrade_scripts/scripts/fetchmail/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/fetchmail/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index edd6b9e..0000000 --- a/openupgrade_scripts/scripts/fetchmail/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'fetchmail'--- ----Fields in module 'fetchmail'--- ----XML records in module 'fetchmail'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/fleet/14.0.0.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/fleet/14.0.0.1/openupgrade_analysis.txt deleted file mode 100644 index bfabb0d..0000000 --- a/openupgrade_scripts/scripts/fleet/14.0.0.1/openupgrade_analysis.txt +++ /dev/null @@ -1,6 +0,0 @@ ----Models in module 'fleet'--- -obsolete model fleet.vehicle.cost -obsolete model fleet.vehicle.log.fuel -new model fleet.vehicle.cost.report [sql_view] ----Fields in module 'fleet'--- ----XML records in module 'fleet'--- diff --git a/openupgrade_scripts/scripts/gamification/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/gamification/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 9ede264..0000000 --- a/openupgrade_scripts/scripts/gamification/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'gamification'--- -new model gamification.karma.tracking ----Fields in module 'gamification'--- ----XML records in module 'gamification'--- diff --git a/openupgrade_scripts/scripts/google_account/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/google_account/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 28f8d6a..0000000 --- a/openupgrade_scripts/scripts/google_account/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'google_account'--- ----Fields in module 'google_account'--- ----XML records in module 'google_account'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/google_calendar/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/google_calendar/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index f135a46..0000000 --- a/openupgrade_scripts/scripts/google_calendar/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,6 +0,0 @@ ----Models in module 'google_calendar'--- -obsolete model google.calendar [abstract] -new model google.calendar.account.reset [transient] -new model google.calendar.sync [abstract] ----Fields in module 'google_calendar'--- ----XML records in module 'google_calendar'--- diff --git a/openupgrade_scripts/scripts/google_drive/14.0.0.2/openupgrade_analysis.txt b/openupgrade_scripts/scripts/google_drive/14.0.0.2/openupgrade_analysis.txt deleted file mode 100644 index 645eb42..0000000 --- a/openupgrade_scripts/scripts/google_drive/14.0.0.2/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'google_drive'--- ----Fields in module 'google_drive'--- ----XML records in module 'google_drive'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/hr/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/hr/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index 4d07c5b..0000000 --- a/openupgrade_scripts/scripts/hr/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'hr'--- ----Fields in module 'hr'--- ----XML records in module 'hr'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/hr_attendance/14.0.2.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/hr_attendance/14.0.2.0/openupgrade_analysis.txt deleted file mode 100644 index dea73ab..0000000 --- a/openupgrade_scripts/scripts/hr_attendance/14.0.2.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'hr_attendance'--- ----Fields in module 'hr_attendance'--- ----XML records in module 'hr_attendance'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/hr_contract/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/hr_contract/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index ff8850c..0000000 --- a/openupgrade_scripts/scripts/hr_contract/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'hr_contract'--- -new model hr.payroll.structure.type ----Fields in module 'hr_contract'--- ----XML records in module 'hr_contract'--- diff --git a/openupgrade_scripts/scripts/hr_expense/14.0.2.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/hr_expense/14.0.2.0/openupgrade_analysis.txt deleted file mode 100644 index 535c0f5..0000000 --- a/openupgrade_scripts/scripts/hr_expense/14.0.2.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'hr_expense'--- -obsolete model hr.expense.sheet.register.payment.wizard [transient] ----Fields in module 'hr_expense'--- ----XML records in module 'hr_expense'--- diff --git a/openupgrade_scripts/scripts/hr_holidays/14.0.1.5/openupgrade_analysis.txt b/openupgrade_scripts/scripts/hr_holidays/14.0.1.5/openupgrade_analysis.txt deleted file mode 100644 index f101994..0000000 --- a/openupgrade_scripts/scripts/hr_holidays/14.0.1.5/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'hr_holidays'--- -model hr.leave.report.calendar (moved from hr_holidays_calendar) [sql_view] ----Fields in module 'hr_holidays'--- ----XML records in module 'hr_holidays'--- diff --git a/openupgrade_scripts/scripts/hr_recruitment/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/hr_recruitment/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 7b04668..0000000 --- a/openupgrade_scripts/scripts/hr_recruitment/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,5 +0,0 @@ ----Models in module 'hr_recruitment'--- -new model applicant.get.refuse.reason [transient] -new model hr.applicant.refuse.reason ----Fields in module 'hr_recruitment'--- ----XML records in module 'hr_recruitment'--- diff --git a/openupgrade_scripts/scripts/hr_skills/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/hr_skills/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 9a98cf4..0000000 --- a/openupgrade_scripts/scripts/hr_skills/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'hr_skills'--- ----Fields in module 'hr_skills'--- ----XML records in module 'hr_skills'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/hr_timesheet/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/hr_timesheet/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index c220b48..0000000 --- a/openupgrade_scripts/scripts/hr_timesheet/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'hr_timesheet'--- -new model project.task.create.timesheet [transient] ----Fields in module 'hr_timesheet'--- ----XML records in module 'hr_timesheet'--- diff --git a/openupgrade_scripts/scripts/hr_timesheet_attendance/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/hr_timesheet_attendance/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 0f143b6..0000000 --- a/openupgrade_scripts/scripts/hr_timesheet_attendance/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'hr_timesheet_attendance'--- ----Fields in module 'hr_timesheet_attendance'--- ----XML records in module 'hr_timesheet_attendance'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/hr_work_entry/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/hr_work_entry/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 71169cc..0000000 --- a/openupgrade_scripts/scripts/hr_work_entry/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'hr_work_entry'--- ----Fields in module 'hr_work_entry'--- ----XML records in module 'hr_work_entry'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/iap/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/iap/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index c496ae1..0000000 --- a/openupgrade_scripts/scripts/iap/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'iap'--- ----Fields in module 'iap'--- ----XML records in module 'iap'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/im_livechat/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/im_livechat/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index ad50005..0000000 --- a/openupgrade_scripts/scripts/im_livechat/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'im_livechat'--- ----Fields in module 'im_livechat'--- ----XML records in module 'im_livechat'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/l10n_ar/14.0.3.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/l10n_ar/14.0.3.0/openupgrade_analysis.txt deleted file mode 100644 index d9743d3..0000000 --- a/openupgrade_scripts/scripts/l10n_ar/14.0.3.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'l10n_ar'--- ----Fields in module 'l10n_ar'--- ----XML records in module 'l10n_ar'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/l10n_ch/14.0.11.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/l10n_ch/14.0.11.0/openupgrade_analysis.txt deleted file mode 100644 index e24ad27..0000000 --- a/openupgrade_scripts/scripts/l10n_ch/14.0.11.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'l10n_ch'--- -new model report.l10n_ch.qr_report_main [abstract] ----Fields in module 'l10n_ch'--- ----XML records in module 'l10n_ch'--- diff --git a/openupgrade_scripts/scripts/l10n_eu_service/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/l10n_eu_service/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index b1f3250..0000000 --- a/openupgrade_scripts/scripts/l10n_eu_service/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'l10n_eu_service'--- ----Fields in module 'l10n_eu_service'--- ----XML records in module 'l10n_eu_service'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/l10n_fr_fec/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/l10n_fr_fec/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index fa3a899..0000000 --- a/openupgrade_scripts/scripts/l10n_fr_fec/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'l10n_fr_fec'--- ----Fields in module 'l10n_fr_fec'--- ----XML records in module 'l10n_fr_fec'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/l10n_fr_pos_cert/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/l10n_fr_pos_cert/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 3bd11c9..0000000 --- a/openupgrade_scripts/scripts/l10n_fr_pos_cert/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'l10n_fr_pos_cert'--- ----Fields in module 'l10n_fr_pos_cert'--- ----XML records in module 'l10n_fr_pos_cert'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/l10n_id_efaktur/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/l10n_id_efaktur/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 87fda68..0000000 --- a/openupgrade_scripts/scripts/l10n_id_efaktur/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'l10n_id_efaktur'--- ----Fields in module 'l10n_id_efaktur'--- ----XML records in module 'l10n_id_efaktur'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/l10n_in/14.0.2.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/l10n_in/14.0.2.0/openupgrade_analysis.txt deleted file mode 100644 index 4d56504..0000000 --- a/openupgrade_scripts/scripts/l10n_in/14.0.2.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'l10n_in'--- ----Fields in module 'l10n_in'--- ----XML records in module 'l10n_in'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/l10n_it_edi/14.0.0.3/openupgrade_analysis.txt b/openupgrade_scripts/scripts/l10n_it_edi/14.0.0.3/openupgrade_analysis.txt deleted file mode 100644 index 7240b07..0000000 --- a/openupgrade_scripts/scripts/l10n_it_edi/14.0.0.3/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'l10n_it_edi'--- ----Fields in module 'l10n_it_edi'--- ----XML records in module 'l10n_it_edi'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/l10n_latam_base/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/l10n_latam_base/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 7c2afea..0000000 --- a/openupgrade_scripts/scripts/l10n_latam_base/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'l10n_latam_base'--- ----Fields in module 'l10n_latam_base'--- ----XML records in module 'l10n_latam_base'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/l10n_latam_invoice_document/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/l10n_latam_invoice_document/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 12553b7..0000000 --- a/openupgrade_scripts/scripts/l10n_latam_invoice_document/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'l10n_latam_invoice_document'--- ----Fields in module 'l10n_latam_invoice_document'--- ----XML records in module 'l10n_latam_invoice_document'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/l10n_pe/14.0.2.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/l10n_pe/14.0.2.0/openupgrade_analysis.txt deleted file mode 100644 index 306bd21..0000000 --- a/openupgrade_scripts/scripts/l10n_pe/14.0.2.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'l10n_pe'--- ----Fields in module 'l10n_pe'--- ----XML records in module 'l10n_pe'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/link_tracker/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/link_tracker/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index df94f2e..0000000 --- a/openupgrade_scripts/scripts/link_tracker/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'link_tracker'--- ----Fields in module 'link_tracker'--- ----XML records in module 'link_tracker'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/lunch/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/lunch/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 2afdb5a..0000000 --- a/openupgrade_scripts/scripts/lunch/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'lunch'--- -obsolete model lunch.order.temp [transient] ----Fields in module 'lunch'--- ----XML records in module 'lunch'--- diff --git a/openupgrade_scripts/scripts/mail/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/mail/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 92f809a..0000000 --- a/openupgrade_scripts/scripts/mail/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,8 +0,0 @@ ----Models in module 'mail'--- -obsolete model email_template.preview [transient] -obsolete model mail.address.mixin [abstract] -new model mail.blacklist.remove [transient] -new model mail.render.mixin [abstract] -new model mail.template.preview [transient] ----Fields in module 'mail'--- ----XML records in module 'mail'--- diff --git a/openupgrade_scripts/scripts/mail_bot/14.0.1.2/openupgrade_analysis.txt b/openupgrade_scripts/scripts/mail_bot/14.0.1.2/openupgrade_analysis.txt deleted file mode 100644 index d7bab69..0000000 --- a/openupgrade_scripts/scripts/mail_bot/14.0.1.2/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'mail_bot'--- ----Fields in module 'mail_bot'--- ----XML records in module 'mail_bot'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/maintenance/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/maintenance/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 4eb0e79..0000000 --- a/openupgrade_scripts/scripts/maintenance/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'maintenance'--- ----Fields in module 'maintenance'--- ----XML records in module 'maintenance'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/mass_mailing/14.0.2.2/openupgrade_analysis.txt b/openupgrade_scripts/scripts/mass_mailing/14.0.2.2/openupgrade_analysis.txt deleted file mode 100644 index 7958d9d..0000000 --- a/openupgrade_scripts/scripts/mass_mailing/14.0.2.2/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'mass_mailing'--- ----Fields in module 'mass_mailing'--- ----XML records in module 'mass_mailing'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/mass_mailing_sms/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/mass_mailing_sms/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 5110da4..0000000 --- a/openupgrade_scripts/scripts/mass_mailing_sms/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'mass_mailing_sms'--- ----Fields in module 'mass_mailing_sms'--- ----XML records in module 'mass_mailing_sms'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/membership/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/membership/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 50fa30b..0000000 --- a/openupgrade_scripts/scripts/membership/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'membership'--- ----Fields in module 'membership'--- ----XML records in module 'membership'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/microsoft_account/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/microsoft_account/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index dc417dc..0000000 --- a/openupgrade_scripts/scripts/microsoft_account/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'microsoft_account'--- -new model microsoft.service [abstract] ----Fields in module 'microsoft_account'--- ----XML records in module 'microsoft_account'--- diff --git a/openupgrade_scripts/scripts/microsoft_calendar/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/microsoft_calendar/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 5924b23..0000000 --- a/openupgrade_scripts/scripts/microsoft_calendar/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,5 +0,0 @@ ----Models in module 'microsoft_calendar'--- -new model microsoft.calendar.account.reset [transient] -new model microsoft.calendar.sync [abstract] ----Fields in module 'microsoft_calendar'--- ----XML records in module 'microsoft_calendar'--- diff --git a/openupgrade_scripts/scripts/mrp/14.0.2.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/mrp/14.0.2.0/openupgrade_analysis.txt deleted file mode 100644 index fe0c7cd..0000000 --- a/openupgrade_scripts/scripts/mrp/14.0.2.0/openupgrade_analysis.txt +++ /dev/null @@ -1,15 +0,0 @@ ----Models in module 'mrp'--- -obsolete model mrp.abstract.workorder [abstract] -obsolete model mrp.abstract.workorder.line [abstract] -obsolete model mrp.product.produce [transient] -obsolete model mrp.product.produce.line [transient] -obsolete model mrp.routing -obsolete model mrp.workorder.line -new model mrp.consumption.warning [transient] -new model mrp.consumption.warning.line [transient] -new model mrp.immediate.production [transient] -new model mrp.immediate.production.line [transient] -new model mrp.production.backorder [transient] -new model mrp.production.backorder.line [transient] ----Fields in module 'mrp'--- ----XML records in module 'mrp'--- diff --git a/openupgrade_scripts/scripts/note/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/note/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index f2b54da..0000000 --- a/openupgrade_scripts/scripts/note/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'note'--- ----Fields in module 'note'--- ----XML records in module 'note'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/pad/14.0.2.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/pad/14.0.2.0/openupgrade_analysis.txt deleted file mode 100644 index eca5dab..0000000 --- a/openupgrade_scripts/scripts/pad/14.0.2.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'pad'--- ----Fields in module 'pad'--- ----XML records in module 'pad'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/partner_autocomplete/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/partner_autocomplete/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 400f840..0000000 --- a/openupgrade_scripts/scripts/partner_autocomplete/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'partner_autocomplete'--- ----Fields in module 'partner_autocomplete'--- ----XML records in module 'partner_autocomplete'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/payment/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/payment/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index f85c34d..0000000 --- a/openupgrade_scripts/scripts/payment/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'payment'--- ----Fields in module 'payment'--- ----XML records in module 'payment'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/phone_validation/14.0.2.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/phone_validation/14.0.2.0/openupgrade_analysis.txt deleted file mode 100644 index aaf6a7c..0000000 --- a/openupgrade_scripts/scripts/phone_validation/14.0.2.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'phone_validation'--- -new model phone.blacklist.remove [transient] ----Fields in module 'phone_validation'--- ----XML records in module 'phone_validation'--- diff --git a/openupgrade_scripts/scripts/point_of_sale/14.0.1.0.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/point_of_sale/14.0.1.0.1/openupgrade_analysis.txt deleted file mode 100644 index f619e6e..0000000 --- a/openupgrade_scripts/scripts/point_of_sale/14.0.1.0.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'point_of_sale'--- ----Fields in module 'point_of_sale'--- ----XML records in module 'point_of_sale'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/portal/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/portal/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 8efa644..0000000 --- a/openupgrade_scripts/scripts/portal/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'portal'--- ----Fields in module 'portal'--- ----XML records in module 'portal'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/pos_adyen/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/pos_adyen/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 6f5d9e9..0000000 --- a/openupgrade_scripts/scripts/pos_adyen/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,5 +0,0 @@ ----Models in module 'pos_adyen'--- -new model adyen.store -new model adyen.terminal ----Fields in module 'pos_adyen'--- ----XML records in module 'pos_adyen'--- diff --git a/openupgrade_scripts/scripts/pos_cache/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/pos_cache/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 6cff9e0..0000000 --- a/openupgrade_scripts/scripts/pos_cache/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'pos_cache'--- ----Fields in module 'pos_cache'--- ----XML records in module 'pos_cache'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/pos_mercury/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/pos_mercury/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index c3ea38c..0000000 --- a/openupgrade_scripts/scripts/pos_mercury/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'pos_mercury'--- ----Fields in module 'pos_mercury'--- ----XML records in module 'pos_mercury'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/pos_restaurant/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/pos_restaurant/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 0af5a64..0000000 --- a/openupgrade_scripts/scripts/pos_restaurant/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'pos_restaurant'--- ----Fields in module 'pos_restaurant'--- ----XML records in module 'pos_restaurant'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/product/14.0.1.2/openupgrade_analysis.txt b/openupgrade_scripts/scripts/product/14.0.1.2/openupgrade_analysis.txt deleted file mode 100644 index 6402623..0000000 --- a/openupgrade_scripts/scripts/product/14.0.1.2/openupgrade_analysis.txt +++ /dev/null @@ -1,5 +0,0 @@ ----Models in module 'product'--- -obsolete model product.price_list [transient] -model product.attribute.custom.value (moved from sale) ----Fields in module 'product'--- ----XML records in module 'product'--- diff --git a/openupgrade_scripts/scripts/product_expiry/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/product_expiry/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 6088f74..0000000 --- a/openupgrade_scripts/scripts/product_expiry/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'product_expiry'--- -new model expiry.picking.confirmation [transient] ----Fields in module 'product_expiry'--- ----XML records in module 'product_expiry'--- diff --git a/openupgrade_scripts/scripts/product_margin/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/product_margin/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 90ae219..0000000 --- a/openupgrade_scripts/scripts/product_margin/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'product_margin'--- ----Fields in module 'product_margin'--- ----XML records in module 'product_margin'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/project/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/project/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index 100fb3e..0000000 --- a/openupgrade_scripts/scripts/project/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,6 +0,0 @@ ----Models in module 'project'--- -new model project.delete.wizard [transient] -new model project.task.recurrence -new model project.task.type.delete.wizard [transient] ----Fields in module 'project'--- ----XML records in module 'project'--- diff --git a/openupgrade_scripts/scripts/purchase/14.0.1.2/openupgrade_analysis.txt b/openupgrade_scripts/scripts/purchase/14.0.1.2/openupgrade_analysis.txt deleted file mode 100644 index c5bcf39..0000000 --- a/openupgrade_scripts/scripts/purchase/14.0.1.2/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'purchase'--- ----Fields in module 'purchase'--- ----XML records in module 'purchase'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/purchase_requisition/14.0.0.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/purchase_requisition/14.0.0.1/openupgrade_analysis.txt deleted file mode 100644 index 56dce38..0000000 --- a/openupgrade_scripts/scripts/purchase_requisition/14.0.0.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'purchase_requisition'--- ----Fields in module 'purchase_requisition'--- ----XML records in module 'purchase_requisition'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/purchase_stock/14.0.1.2/openupgrade_analysis.txt b/openupgrade_scripts/scripts/purchase_stock/14.0.1.2/openupgrade_analysis.txt deleted file mode 100644 index dcbfcc3..0000000 --- a/openupgrade_scripts/scripts/purchase_stock/14.0.1.2/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'purchase_stock'--- -new model vendor.delay.report [sql_view] ----Fields in module 'purchase_stock'--- ----XML records in module 'purchase_stock'--- diff --git a/openupgrade_scripts/scripts/rating/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/rating/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 4996da2..0000000 --- a/openupgrade_scripts/scripts/rating/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'rating'--- ----Fields in module 'rating'--- ----XML records in module 'rating'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/repair/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/repair/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 4cc8fb0..0000000 --- a/openupgrade_scripts/scripts/repair/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'repair'--- -obsolete model repair.cancel [transient] ----Fields in module 'repair'--- ----XML records in module 'repair'--- diff --git a/openupgrade_scripts/scripts/resource/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/resource/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index aaccd36..0000000 --- a/openupgrade_scripts/scripts/resource/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'resource'--- ----Fields in module 'resource'--- ----XML records in module 'resource'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/sale/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/sale/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index 9145717..0000000 --- a/openupgrade_scripts/scripts/sale/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,5 +0,0 @@ ----Models in module 'sale'--- -model product.attribute.custom.value (moved to product) -new model sale.order.cancel [transient] ----Fields in module 'sale'--- ----XML records in module 'sale'--- diff --git a/openupgrade_scripts/scripts/sale_coupon/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/sale_coupon/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 2c72bc9..0000000 --- a/openupgrade_scripts/scripts/sale_coupon/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,9 +0,0 @@ ----Models in module 'sale_coupon'--- -obsolete model report.sale_coupon.report_coupon [abstract] -obsolete model sale.coupon -obsolete model sale.coupon.generate [transient] -obsolete model sale.coupon.program -obsolete model sale.coupon.reward -obsolete model sale.coupon.rule ----Fields in module 'sale_coupon'--- ----XML records in module 'sale_coupon'--- diff --git a/openupgrade_scripts/scripts/sale_crm/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/sale_crm/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 7c7ac0c..0000000 --- a/openupgrade_scripts/scripts/sale_crm/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'sale_crm'--- ----Fields in module 'sale_crm'--- ----XML records in module 'sale_crm'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/sale_management/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/sale_management/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index f84a0d0..0000000 --- a/openupgrade_scripts/scripts/sale_management/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'sale_management'--- ----Fields in module 'sale_management'--- ----XML records in module 'sale_management'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/sale_product_configurator/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/sale_product_configurator/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index fc43d02..0000000 --- a/openupgrade_scripts/scripts/sale_product_configurator/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'sale_product_configurator'--- ----Fields in module 'sale_product_configurator'--- ----XML records in module 'sale_product_configurator'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/sale_timesheet/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/sale_timesheet/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 559baca..0000000 --- a/openupgrade_scripts/scripts/sale_timesheet/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'sale_timesheet'--- -new model project.task.create.sale.order [transient] ----Fields in module 'sale_timesheet'--- ----XML records in module 'sale_timesheet'--- diff --git a/openupgrade_scripts/scripts/sales_team/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/sales_team/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 424174e..0000000 --- a/openupgrade_scripts/scripts/sales_team/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'sales_team'--- -new model crm.tag ----Fields in module 'sales_team'--- ----XML records in module 'sales_team'--- diff --git a/openupgrade_scripts/scripts/sms/14.0.2.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/sms/14.0.2.1/openupgrade_analysis.txt deleted file mode 100644 index 9c44fe6..0000000 --- a/openupgrade_scripts/scripts/sms/14.0.2.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'sms'--- ----Fields in module 'sms'--- ----XML records in module 'sms'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/snailmail/14.0.0.3/openupgrade_analysis.txt b/openupgrade_scripts/scripts/snailmail/14.0.0.3/openupgrade_analysis.txt deleted file mode 100644 index 6d0d729..0000000 --- a/openupgrade_scripts/scripts/snailmail/14.0.0.3/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'snailmail'--- -new model snailmail.confirm [abstract] ----Fields in module 'snailmail'--- ----XML records in module 'snailmail'--- diff --git a/openupgrade_scripts/scripts/snailmail_account/14.0.0.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/snailmail_account/14.0.0.1/openupgrade_analysis.txt deleted file mode 100644 index ec99270..0000000 --- a/openupgrade_scripts/scripts/snailmail_account/14.0.0.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'snailmail_account'--- -new model snailmail.confirm.invoice [transient] ----Fields in module 'snailmail_account'--- ----XML records in module 'snailmail_account'--- diff --git a/openupgrade_scripts/scripts/stock/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/stock/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index 068eac7..0000000 --- a/openupgrade_scripts/scripts/stock/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,10 +0,0 @@ ----Models in module 'stock'--- -obsolete model stock.overprocessed.transfer [transient] -obsolete model stock.picking.responsible [transient] -new model report.stock.report_product_product_replenishment [abstract] -new model report.stock.report_product_template_replenishment [abstract] -new model stock.backorder.confirmation.line [transient] -new model stock.immediate.transfer.line [transient] -new model stock.orderpoint.snooze [transient] ----Fields in module 'stock'--- ----XML records in module 'stock'--- diff --git a/openupgrade_scripts/scripts/stock_account/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/stock_account/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index 7595f54..0000000 --- a/openupgrade_scripts/scripts/stock_account/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,5 +0,0 @@ ----Models in module 'stock_account'--- -obsolete model stock.change.standard.price [transient] -new model stock.valuation.layer.revaluation [transient] ----Fields in module 'stock_account'--- ----XML records in module 'stock_account'--- diff --git a/openupgrade_scripts/scripts/stock_landed_costs/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/stock_landed_costs/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index cfe25bf..0000000 --- a/openupgrade_scripts/scripts/stock_landed_costs/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'stock_landed_costs'--- ----Fields in module 'stock_landed_costs'--- ----XML records in module 'stock_landed_costs'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/stock_picking_batch/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/stock_picking_batch/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 9a18a0e..0000000 --- a/openupgrade_scripts/scripts/stock_picking_batch/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'stock_picking_batch'--- ----Fields in module 'stock_picking_batch'--- ----XML records in module 'stock_picking_batch'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/stock_sms/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/stock_sms/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 7efd725..0000000 --- a/openupgrade_scripts/scripts/stock_sms/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'stock_sms'--- ----Fields in module 'stock_sms'--- ----XML records in module 'stock_sms'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/survey/14.0.3.2/openupgrade_analysis.txt b/openupgrade_scripts/scripts/survey/14.0.3.2/openupgrade_analysis.txt deleted file mode 100644 index c66e202..0000000 --- a/openupgrade_scripts/scripts/survey/14.0.3.2/openupgrade_analysis.txt +++ /dev/null @@ -1,7 +0,0 @@ ----Models in module 'survey'--- -obsolete model survey.label -obsolete model survey.user_input_line -new model survey.question.answer -new model survey.user_input.line ----Fields in module 'survey'--- ----XML records in module 'survey'--- diff --git a/openupgrade_scripts/scripts/test_base_automation/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/test_base_automation/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 2988050..0000000 --- a/openupgrade_scripts/scripts/test_base_automation/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,7 +0,0 @@ ----Models in module 'test_base_automation'--- -model base.automation.lead.test (moved from base_automation) -model base.automation.line.test (moved from base_automation) -new model base.automation.link.test -new model base.automation.linked.test ----Fields in module 'test_base_automation'--- ----XML records in module 'test_base_automation'--- diff --git a/openupgrade_scripts/scripts/test_mail/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/test_mail/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 0237fcd..0000000 --- a/openupgrade_scripts/scripts/test_mail/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,11 +0,0 @@ ----Models in module 'test_mail'--- -obsolete model mail.test -obsolete model mail.test.full -obsolete model test_performance.mail -new model mail.performance.thread -new model mail.performance.tracking -new model mail.test.container -new model mail.test.ticket -new model mail.test.track.compute ----Fields in module 'test_mail'--- ----XML records in module 'test_mail'--- diff --git a/openupgrade_scripts/scripts/test_mail_full/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/test_mail_full/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 39b3796..0000000 --- a/openupgrade_scripts/scripts/test_mail_full/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'test_mail_full'--- ----Fields in module 'test_mail_full'--- ----XML records in module 'test_mail_full'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/test_mass_mailing/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/test_mass_mailing/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 467cf99..0000000 --- a/openupgrade_scripts/scripts/test_mass_mailing/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,11 +0,0 @@ ----Models in module 'test_mass_mailing'--- -obsolete model mass.mail.test -obsolete model mass.mail.test.bl -new model mailing.performance -new model mailing.performance.blacklist -new model mailing.test.blacklist -new model mailing.test.optout -new model mailing.test.simple -new model mailing.test.utm ----Fields in module 'test_mass_mailing'--- ----XML records in module 'test_mass_mailing'--- diff --git a/openupgrade_scripts/scripts/test_performance/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/test_performance/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 2d85c9d..0000000 --- a/openupgrade_scripts/scripts/test_performance/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'test_performance'--- ----Fields in module 'test_performance'--- ----XML records in module 'test_performance'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/uom/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/uom/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 2171aaf..0000000 --- a/openupgrade_scripts/scripts/uom/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'uom'--- ----Fields in module 'uom'--- ----XML records in module 'uom'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/utm/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/utm/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 5eee28f..0000000 --- a/openupgrade_scripts/scripts/utm/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'utm'--- ----Fields in module 'utm'--- ----XML records in module 'utm'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/web/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/web/14.0.1.0/openupgrade_analysis.txt index 5b21c85..fef7248 100644 --- a/openupgrade_scripts/scripts/web/14.0.1.0/openupgrade_analysis.txt +++ b/openupgrade_scripts/scripts/web/14.0.1.0/openupgrade_analysis.txt @@ -2,3 +2,14 @@ model base.document.layout (moved from base) [transient] ---Fields in module 'web'--- ---XML records in module 'web'--- +NEW ir.actions.act_window: web.action_base_document_layout_configurator [renamed from base module] +NEW ir.model.access: web.access_base_document_layout +NEW ir.ui.view: web.assets_backend_prod_only +NEW ir.ui.view: web.html_preview_container +NEW ir.ui.view: web.qunit_mobile_suite_tests +NEW ir.ui.view: web.qunit_suite_tests +NEW ir.ui.view: web.report_invoice_wizard_preview +NEW ir.ui.view: web.report_preview_layout +NEW ir.ui.view: web.tests_assets +NEW ir.ui.view: web.view_base_document_layout +DEL ir.ui.view: web.js_tests_assets diff --git a/openupgrade_scripts/scripts/web_editor/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/web_editor/14.0.1.0/openupgrade_analysis.txt index 11bf461..6166623 100644 --- a/openupgrade_scripts/scripts/web_editor/14.0.1.0/openupgrade_analysis.txt +++ b/openupgrade_scripts/scripts/web_editor/14.0.1.0/openupgrade_analysis.txt @@ -1,4 +1,23 @@ ---Models in module 'web_editor'--- ---Fields in module 'web_editor'--- +web_editor / ir.attachment / original_id (many2one) : NEW relation: ir.attachment ---XML records in module 'web_editor'--- ----nothing has changed in this module-- +DEL ir.model.access: web_editor.access_web_editor_converter_test +DEL ir.model.access: web_editor.access_web_editor_converter_test_sub +DEL ir.ui.view: web_editor._assets_backend_helpers +DEL ir.ui.view: web_editor._assets_frontend_helpers +DEL ir.ui.view: web_editor._assets_frontend_minimal_js +DEL ir.ui.view: web_editor._assets_primary_variables +DEL ir.ui.view: web_editor._assets_secondary_variables +DEL ir.ui.view: web_editor.assets_backend +DEL ir.ui.view: web_editor.assets_common +DEL ir.ui.view: web_editor.assets_frontend +DEL ir.ui.view: web_editor.assets_wysiwyg +DEL ir.ui.view: web_editor.colorpicker +DEL ir.ui.view: web_editor.compiled_assets_wysiwyg +DEL ir.ui.view: web_editor.qunit_suite +DEL ir.ui.view: web_editor.s_hr +DEL ir.ui.view: web_editor.snippet_options +DEL ir.ui.view: web_editor.snippets +DEL ir.ui.view: web_editor.summernote +DEL ir.ui.view: web_editor.wysiwyg_iframe_editor_assets diff --git a/openupgrade_scripts/scripts/web_tour/14.0.0.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/web_tour/14.0.0.1/openupgrade_analysis.txt index 8593baf..c3d0772 100644 --- a/openupgrade_scripts/scripts/web_tour/14.0.0.1/openupgrade_analysis.txt +++ b/openupgrade_scripts/scripts/web_tour/14.0.0.1/openupgrade_analysis.txt @@ -1,4 +1,14 @@ ---Models in module 'web_tour'--- ---Fields in module 'web_tour'--- ---XML records in module 'web_tour'--- ----nothing has changed in this module-- +DEL ir.actions.act_window: web_tour.edit_tour_action +DEL ir.model.access: web_tour.access_web_tour_tour +DEL ir.model.access: web_tour.access_web_tour_tour_admin +DEL ir.rule: web_tour.own_tours +DEL ir.ui.menu: web_tour.menu_tour_action +DEL ir.ui.view: web_tour.assets_backend +DEL ir.ui.view: web_tour.assets_common +DEL ir.ui.view: web_tour.assets_common_disable_tour (noupdate) +DEL ir.ui.view: web_tour.assets_frontend +DEL ir.ui.view: web_tour.edit_tour_list +DEL ir.ui.view: web_tour.edit_tour_search diff --git a/openupgrade_scripts/scripts/website/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 1bf034a..0000000 --- a/openupgrade_scripts/scripts/website/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,11 +0,0 @@ ----Models in module 'website'--- -model theme.ir.attachment (moved from website_theme_install) -model theme.ir.ui.view (moved from website_theme_install) -model theme.utils (moved from website_theme_install) [abstract] -model theme.website.menu (moved from website_theme_install) -model theme.website.page (moved from website_theme_install) -new model website.cover_properties.mixin [abstract] -new model website.robots [transient] -new model website.snippet.filter ----Fields in module 'website'--- ----XML records in module 'website'--- diff --git a/openupgrade_scripts/scripts/website_blog/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_blog/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index aaf6696..0000000 --- a/openupgrade_scripts/scripts/website_blog/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'website_blog'--- ----Fields in module 'website_blog'--- ----XML records in module 'website_blog'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/website_crm_partner_assign/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_crm_partner_assign/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 43d36d8..0000000 --- a/openupgrade_scripts/scripts/website_crm_partner_assign/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'website_crm_partner_assign'--- ----Fields in module 'website_crm_partner_assign'--- ----XML records in module 'website_crm_partner_assign'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/website_customer/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_customer/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index feb5cff..0000000 --- a/openupgrade_scripts/scripts/website_customer/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'website_customer'--- ----Fields in module 'website_customer'--- ----XML records in module 'website_customer'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/website_event/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_event/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index d7f6fb3..0000000 --- a/openupgrade_scripts/scripts/website_event/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'website_event'--- -model website.event.menu (moved from website_event_track) ----Fields in module 'website_event'--- ----XML records in module 'website_event'--- diff --git a/openupgrade_scripts/scripts/website_event_meet/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_event_meet/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 002e674..0000000 --- a/openupgrade_scripts/scripts/website_event_meet/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'website_event_meet'--- -new model event.meeting.room ----Fields in module 'website_event_meet'--- ----XML records in module 'website_event_meet'--- diff --git a/openupgrade_scripts/scripts/website_event_questions/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_event_questions/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index 93d5948..0000000 --- a/openupgrade_scripts/scripts/website_event_questions/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,6 +0,0 @@ ----Models in module 'website_event_questions'--- -obsolete model event.answer -obsolete model event.question.report [sql_view] -new model event.question.answer ----Fields in module 'website_event_questions'--- ----XML records in module 'website_event_questions'--- diff --git a/openupgrade_scripts/scripts/website_event_track/14.0.1.1/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_event_track/14.0.1.1/openupgrade_analysis.txt deleted file mode 100644 index 0d47476..0000000 --- a/openupgrade_scripts/scripts/website_event_track/14.0.1.1/openupgrade_analysis.txt +++ /dev/null @@ -1,6 +0,0 @@ ----Models in module 'website_event_track'--- -model website.event.menu (moved to website_event) -new model event.track.tag.category -new model event.track.visitor ----Fields in module 'website_event_track'--- ----XML records in module 'website_event_track'--- diff --git a/openupgrade_scripts/scripts/website_event_track_quiz/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_event_track_quiz/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 08a3b51..0000000 --- a/openupgrade_scripts/scripts/website_event_track_quiz/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,6 +0,0 @@ ----Models in module 'website_event_track_quiz'--- -new model event.quiz -new model event.quiz.answer -new model event.quiz.question ----Fields in module 'website_event_track_quiz'--- ----XML records in module 'website_event_track_quiz'--- diff --git a/openupgrade_scripts/scripts/website_forum/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_forum/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index d3e6d7d..0000000 --- a/openupgrade_scripts/scripts/website_forum/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'website_forum'--- ----Fields in module 'website_forum'--- ----XML records in module 'website_forum'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/website_jitsi/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_jitsi/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 33e7bb8..0000000 --- a/openupgrade_scripts/scripts/website_jitsi/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,5 +0,0 @@ ----Models in module 'website_jitsi'--- -new model chat.room -new model chat.room.mixin [abstract] ----Fields in module 'website_jitsi'--- ----XML records in module 'website_jitsi'--- diff --git a/openupgrade_scripts/scripts/website_mass_mailing/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_mass_mailing/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 56b182b..0000000 --- a/openupgrade_scripts/scripts/website_mass_mailing/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'website_mass_mailing'--- ----Fields in module 'website_mass_mailing'--- ----XML records in module 'website_mass_mailing'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/website_sale/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_sale/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 7a92d2f..0000000 --- a/openupgrade_scripts/scripts/website_sale/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,6 +0,0 @@ ----Models in module 'website_sale'--- -obsolete model product.style -new model product.ribbon -new model website.sale.extra.field ----Fields in module 'website_sale'--- ----XML records in module 'website_sale'--- diff --git a/openupgrade_scripts/scripts/website_sale_comparison/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_sale_comparison/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index c92efb0..0000000 --- a/openupgrade_scripts/scripts/website_sale_comparison/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'website_sale_comparison'--- ----Fields in module 'website_sale_comparison'--- ----XML records in module 'website_sale_comparison'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/website_sale_wishlist/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_sale_wishlist/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 41eaec9..0000000 --- a/openupgrade_scripts/scripts/website_sale_wishlist/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'website_sale_wishlist'--- ----Fields in module 'website_sale_wishlist'--- ----XML records in module 'website_sale_wishlist'--- ----nothing has changed in this module-- diff --git a/openupgrade_scripts/scripts/website_slides/14.0.2.2/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_slides/14.0.2.2/openupgrade_analysis.txt deleted file mode 100644 index 813ae50..0000000 --- a/openupgrade_scripts/scripts/website_slides/14.0.2.2/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'website_slides'--- -new model slide.slide.resource ----Fields in module 'website_slides'--- ----XML records in module 'website_slides'--- diff --git a/openupgrade_scripts/scripts/website_twitter/14.0.1.0/openupgrade_analysis.txt b/openupgrade_scripts/scripts/website_twitter/14.0.1.0/openupgrade_analysis.txt deleted file mode 100644 index 4a08bbe..0000000 --- a/openupgrade_scripts/scripts/website_twitter/14.0.1.0/openupgrade_analysis.txt +++ /dev/null @@ -1,4 +0,0 @@ ----Models in module 'website_twitter'--- ----Fields in module 'website_twitter'--- ----XML records in module 'website_twitter'--- ----nothing has changed in this module--