odoo-addon-openupgrade-scripts 17.0.1.0.1.205__py3-none-any.whl → 17.0.1.0.1.209__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/openupgrade_scripts/scripts/survey/17.0.3.6/post-migration.py +19 -0
- odoo/addons/openupgrade_scripts/scripts/survey/17.0.3.6/upgrade_analysis_work.txt +31 -0
- odoo/addons/openupgrade_scripts/scripts/website/17.0.1.0/post-migration.py +16 -0
- odoo/addons/openupgrade_scripts/scripts/website/17.0.1.0/pre-migration.py +133 -0
- odoo/addons/openupgrade_scripts/scripts/website/17.0.1.0/upgrade_analysis_work.txt +374 -0
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.205.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.209.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.205.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.209.dist-info}/RECORD +9 -4
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.205.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.209.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.205.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.209.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,19 @@
|
|
1
|
+
# Copyright 2025 ForgeFlow S.L. (https://www.forgeflow.com)
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
|
7
|
+
def convert_triggering_answer_id_m2o_to_m2m(env):
|
8
|
+
openupgrade.m2o_to_x2m(
|
9
|
+
env.cr,
|
10
|
+
env["survey.question"],
|
11
|
+
"survey_question",
|
12
|
+
"triggering_answer_ids",
|
13
|
+
"triggering_answer_id",
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
@openupgrade.migrate()
|
18
|
+
def migrate(env, version):
|
19
|
+
convert_triggering_answer_id_m2o_to_m2m(env)
|
@@ -0,0 +1,31 @@
|
|
1
|
+
---Models in module 'survey'---
|
2
|
+
---Fields in module 'survey'---
|
3
|
+
survey / survey.question / is_conditional (boolean) : DEL
|
4
|
+
survey / survey.question / triggering_answer_id (many2one): DEL relation: survey.question.answer
|
5
|
+
survey / survey.question / triggering_answer_ids (many2many): NEW relation: survey.question.answer
|
6
|
+
# DONE: post-migration: transform many2one to many2many
|
7
|
+
|
8
|
+
survey / survey.question / triggering_question_id (many2one): DEL relation: survey.question
|
9
|
+
# NOTHING TO DO: there is a m2m non-stored computed instead
|
10
|
+
|
11
|
+
survey / survey.question.answer / _order : _order is now 'question_id, sequence, id' ('sequence, id')
|
12
|
+
survey / survey.survey / activity_user_id (many2one) : not related anymore
|
13
|
+
survey / survey.survey / activity_user_id (many2one) : now a function
|
14
|
+
survey / survey.survey / message_main_attachment_id (many2one): DEL relation: ir.attachment
|
15
|
+
survey / survey.survey / rating_ids (one2many) : NEW relation: rating.rating
|
16
|
+
survey / survey.survey / scoring_type (selection) : selection_keys is now '['no_scoring', 'scoring_with_answers', 'scoring_with_answers_after_page', 'scoring_without_answers']' ('['no_scoring', 'scoring_with_answers', 'scoring_without_answers']')
|
17
|
+
survey / survey.survey / survey_type (selection) : NEW required, selection_keys: ['assessment', 'custom', 'live_session', 'survey'], hasdefault: default
|
18
|
+
survey / survey.user_input / activity_user_id (many2one) : not related anymore
|
19
|
+
survey / survey.user_input / activity_user_id (many2one) : now a function
|
20
|
+
survey / survey.user_input / message_main_attachment_id (many2one): DEL relation: ir.attachment
|
21
|
+
survey / survey.user_input / rating_ids (one2many) : NEW relation: rating.rating
|
22
|
+
survey / survey.user_input / survey_first_submitted (boolean): NEW
|
23
|
+
# NOTHING TO DO
|
24
|
+
|
25
|
+
---XML records in module 'survey'---
|
26
|
+
NEW ir.ui.view: survey.certification_report_view_general
|
27
|
+
NEW ir.ui.view: survey.survey_access_error
|
28
|
+
NEW ir.ui.view: survey.survey_survey_view_activity
|
29
|
+
NEW mail.message.subtype: survey.mt_survey_survey_user_input_completed (noupdate)
|
30
|
+
NEW mail.message.subtype: survey.mt_survey_user_input_completed (noupdate)
|
31
|
+
# NOTHING TO DO
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Copyright 2024 Viindoo Technology Joint Stock Company (Viindoo)
|
2
|
+
# Copyright 2025 ForgeFlow S.L. (https://www.forgeflow.com)
|
3
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
4
|
+
|
5
|
+
from openupgradelib import openupgrade
|
6
|
+
|
7
|
+
|
8
|
+
@openupgrade.migrate()
|
9
|
+
def migrate(env, version):
|
10
|
+
openupgrade.load_data(env, "website", "17.0.1.0/noupdate_changes.xml")
|
11
|
+
openupgrade.delete_record_translations(
|
12
|
+
env.cr,
|
13
|
+
"website",
|
14
|
+
["contactus_page", "homepage_page"],
|
15
|
+
["website_meta_description"],
|
16
|
+
)
|
@@ -0,0 +1,133 @@
|
|
1
|
+
# Copyright 2025 ForgeFlow S.L. (https://www.forgeflow.com)
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
|
7
|
+
def assure_website_page_url_is_filled(env):
|
8
|
+
openupgrade.logged_query(
|
9
|
+
env.cr,
|
10
|
+
"""
|
11
|
+
UPDATE website_page
|
12
|
+
SET url = ''
|
13
|
+
WHERE url IS NULL
|
14
|
+
""",
|
15
|
+
)
|
16
|
+
|
17
|
+
|
18
|
+
@openupgrade.migrate()
|
19
|
+
def migrate(env, version):
|
20
|
+
assure_website_page_url_is_filled(env)
|
21
|
+
openupgrade.set_xml_ids_noupdate_value(
|
22
|
+
env,
|
23
|
+
"website",
|
24
|
+
[
|
25
|
+
"business_conference",
|
26
|
+
"header_image_1_default_image",
|
27
|
+
"library_image_01",
|
28
|
+
"library_image_02",
|
29
|
+
"library_image_03",
|
30
|
+
"library_image_04",
|
31
|
+
"library_image_05",
|
32
|
+
"library_image_06",
|
33
|
+
"library_image_07",
|
34
|
+
"library_image_08",
|
35
|
+
"library_image_09",
|
36
|
+
"library_image_10",
|
37
|
+
"library_image_11",
|
38
|
+
"library_image_12",
|
39
|
+
"library_image_13",
|
40
|
+
"library_image_14",
|
41
|
+
"library_image_15",
|
42
|
+
"library_image_16",
|
43
|
+
"library_image_17",
|
44
|
+
"library_image_18",
|
45
|
+
"s_background_image_01",
|
46
|
+
"s_background_image_02",
|
47
|
+
"s_background_image_03",
|
48
|
+
"s_background_image_04",
|
49
|
+
"s_background_image_05",
|
50
|
+
"s_background_image_06",
|
51
|
+
"s_background_image_07",
|
52
|
+
"s_background_image_08",
|
53
|
+
"s_background_image_09",
|
54
|
+
"s_banner_default_image",
|
55
|
+
"s_blockquote_cover_default_image",
|
56
|
+
"s_blockquote_default_image",
|
57
|
+
"s_carousel_default_image_1",
|
58
|
+
"s_carousel_default_image_2",
|
59
|
+
"s_carousel_default_image_3",
|
60
|
+
"s_company_team_image_1",
|
61
|
+
"s_company_team_image_2",
|
62
|
+
"s_company_team_image_3",
|
63
|
+
"s_company_team_image_4",
|
64
|
+
"s_cover_default_image",
|
65
|
+
"s_image_text_default_image",
|
66
|
+
"s_masonry_block_default_image_1",
|
67
|
+
"s_masonry_block_default_image_2",
|
68
|
+
"s_media_list_default_image_1",
|
69
|
+
"s_media_list_default_image_2",
|
70
|
+
"s_media_list_default_image_3",
|
71
|
+
"s_mega_menu_cards_default_image_1",
|
72
|
+
"s_mega_menu_cards_default_image_2",
|
73
|
+
"s_mega_menu_cards_default_image_3",
|
74
|
+
"s_mega_menu_cards_default_image_4",
|
75
|
+
"s_mega_menu_cards_default_image_5",
|
76
|
+
"s_mega_menu_cards_default_image_6",
|
77
|
+
"s_mega_menu_cards_default_image_7",
|
78
|
+
"s_mega_menu_cards_default_image_8",
|
79
|
+
"s_mega_menu_images_subtitles_default_image_1",
|
80
|
+
"s_mega_menu_images_subtitles_default_image_2",
|
81
|
+
"s_mega_menu_images_subtitles_default_image_3",
|
82
|
+
"s_mega_menu_images_subtitles_default_image_4",
|
83
|
+
"s_mega_menu_images_subtitles_default_image_5",
|
84
|
+
"s_mega_menu_images_subtitles_default_image_6",
|
85
|
+
"s_mega_menu_images_subtitles_default_image_7",
|
86
|
+
"s_mega_menu_menu_image_menu_default_image",
|
87
|
+
"s_mega_menu_menus_logos_default_image",
|
88
|
+
"s_mega_menu_menus_logos_default_logo_1",
|
89
|
+
"s_mega_menu_menus_logos_default_logo_2",
|
90
|
+
"s_mega_menu_menus_logos_default_logo_3",
|
91
|
+
"s_mega_menu_menus_logos_default_logo_4",
|
92
|
+
"s_mega_menu_menus_logos_default_logo_5",
|
93
|
+
"s_mega_menu_menus_logos_default_logo_6",
|
94
|
+
"s_mega_menu_thumbnails_default_image_1",
|
95
|
+
"s_mega_menu_thumbnails_default_image_10",
|
96
|
+
"s_mega_menu_thumbnails_default_image_11",
|
97
|
+
"s_mega_menu_thumbnails_default_image_2",
|
98
|
+
"s_mega_menu_thumbnails_default_image_3",
|
99
|
+
"s_mega_menu_thumbnails_default_image_4",
|
100
|
+
"s_mega_menu_thumbnails_default_image_5",
|
101
|
+
"s_mega_menu_thumbnails_default_image_6",
|
102
|
+
"s_mega_menu_thumbnails_default_image_7",
|
103
|
+
"s_mega_menu_thumbnails_default_image_8",
|
104
|
+
"s_mega_menu_thumbnails_default_image_9",
|
105
|
+
"s_parallax_default_image",
|
106
|
+
"s_picture_default_image",
|
107
|
+
"s_popup_default_image",
|
108
|
+
"s_product_catalog_default_image",
|
109
|
+
"s_product_list_default_image_1",
|
110
|
+
"s_product_list_default_image_2",
|
111
|
+
"s_product_list_default_image_3",
|
112
|
+
"s_product_list_default_image_4",
|
113
|
+
"s_product_list_default_image_5",
|
114
|
+
"s_product_list_default_image_6",
|
115
|
+
"s_quotes_carousel_demo_image_0",
|
116
|
+
"s_quotes_carousel_demo_image_1",
|
117
|
+
"s_quotes_carousel_demo_image_2",
|
118
|
+
"s_quotes_carousel_demo_image_3",
|
119
|
+
"s_quotes_carousel_demo_image_4",
|
120
|
+
"s_quotes_carousel_demo_image_5",
|
121
|
+
"s_reference_default_image_6",
|
122
|
+
"s_reference_demo_image_1",
|
123
|
+
"s_reference_demo_image_2",
|
124
|
+
"s_reference_demo_image_3",
|
125
|
+
"s_reference_demo_image_4",
|
126
|
+
"s_reference_demo_image_5",
|
127
|
+
"s_text_image_default_image",
|
128
|
+
"s_three_columns_default_image_1",
|
129
|
+
"s_three_columns_default_image_2",
|
130
|
+
"s_three_columns_default_image_3",
|
131
|
+
],
|
132
|
+
False,
|
133
|
+
)
|
@@ -0,0 +1,374 @@
|
|
1
|
+
---Models in module 'website'---
|
2
|
+
new model website.controller.page
|
3
|
+
# NOTHING TO DO
|
4
|
+
|
5
|
+
---Fields in module 'website'---
|
6
|
+
website / ir.ui.view / controller_page_ids (one2many): NEW relation: website.controller.page
|
7
|
+
website / website / social_tiktok (char) : NEW hasdefault: default
|
8
|
+
# NOTHING TO DO
|
9
|
+
|
10
|
+
website / website.controller.page / _inherits : NEW _inherits: {'ir.ui.view': 'view_id'}
|
11
|
+
website / website.controller.page / default_layout (selection) : NEW selection_keys: ['grid', 'list'], hasdefault: default
|
12
|
+
website / website.controller.page / is_published (boolean) : NEW hasdefault: default
|
13
|
+
website / website.controller.page / menu_ids (one2many) : NEW relation: website.menu
|
14
|
+
website / website.controller.page / name_slugified (char) : NEW isfunction: function, stored
|
15
|
+
website / website.controller.page / page_name (char) : NEW required
|
16
|
+
website / website.controller.page / page_type (selection) : NEW selection_keys: ['listing', 'single'], hasdefault: default
|
17
|
+
website / website.controller.page / record_domain (char) : NEW
|
18
|
+
website / website.controller.page / view_id (many2one) : NEW relation: ir.ui.view, required
|
19
|
+
website / website.controller.page / website_id (many2one) : NEW relation: website, isrelated: related, stored
|
20
|
+
# NOTHING TO DO: new model
|
21
|
+
|
22
|
+
website / website.menu / controller_page_id (many2one) : NEW relation: website.controller.page
|
23
|
+
website / website.page / header_text_color (char) : NEW
|
24
|
+
# NOTHING TO DO
|
25
|
+
|
26
|
+
website / website.page / url (char) : now required
|
27
|
+
# DONE: pre-migration: assure is filled
|
28
|
+
|
29
|
+
---XML records in module 'website'---
|
30
|
+
NEW ir.actions.act_window: website.action_website_controller_pages_list
|
31
|
+
DEL ir.actions.act_window: website.action_show_viewhierarchy
|
32
|
+
NEW ir.actions.client: website.action_website_view_hierarchy
|
33
|
+
NEW ir.asset: website.s_instagram_page_000_js
|
34
|
+
NEW ir.asset: website.s_instagram_page_000_scss
|
35
|
+
NEW ir.asset: website.s_text_cover_000_scss
|
36
|
+
# NOTHING TO DO
|
37
|
+
|
38
|
+
ir.attachment: website.business_conference (noupdate switched)
|
39
|
+
ir.attachment: website.header_image_1_default_image (noupdate switched)
|
40
|
+
ir.attachment: website.library_image_01 (noupdate switched)
|
41
|
+
ir.attachment: website.library_image_02 (noupdate switched)
|
42
|
+
ir.attachment: website.library_image_03 (noupdate switched)
|
43
|
+
ir.attachment: website.library_image_04 (noupdate switched)
|
44
|
+
ir.attachment: website.library_image_05 (noupdate switched)
|
45
|
+
ir.attachment: website.library_image_06 (noupdate switched)
|
46
|
+
ir.attachment: website.library_image_07 (noupdate switched)
|
47
|
+
ir.attachment: website.library_image_08 (noupdate switched)
|
48
|
+
ir.attachment: website.library_image_09 (noupdate switched)
|
49
|
+
ir.attachment: website.library_image_10 (noupdate switched)
|
50
|
+
ir.attachment: website.library_image_11 (noupdate switched)
|
51
|
+
ir.attachment: website.library_image_12 (noupdate switched)
|
52
|
+
ir.attachment: website.library_image_13 (noupdate switched)
|
53
|
+
ir.attachment: website.library_image_14 (noupdate switched)
|
54
|
+
ir.attachment: website.library_image_15 (noupdate switched)
|
55
|
+
ir.attachment: website.library_image_16 (noupdate switched)
|
56
|
+
ir.attachment: website.library_image_17 (noupdate switched)
|
57
|
+
ir.attachment: website.library_image_18 (noupdate switched)
|
58
|
+
ir.attachment: website.s_background_image_01 (noupdate switched)
|
59
|
+
ir.attachment: website.s_background_image_02 (noupdate switched)
|
60
|
+
ir.attachment: website.s_background_image_03 (noupdate switched)
|
61
|
+
ir.attachment: website.s_background_image_04 (noupdate switched)
|
62
|
+
ir.attachment: website.s_background_image_05 (noupdate switched)
|
63
|
+
ir.attachment: website.s_background_image_06 (noupdate switched)
|
64
|
+
ir.attachment: website.s_background_image_07 (noupdate switched)
|
65
|
+
ir.attachment: website.s_background_image_08 (noupdate switched)
|
66
|
+
ir.attachment: website.s_background_image_09 (noupdate switched)
|
67
|
+
ir.attachment: website.s_banner_default_image (noupdate switched)
|
68
|
+
ir.attachment: website.s_blockquote_cover_default_image (noupdate switched)
|
69
|
+
ir.attachment: website.s_blockquote_default_image (noupdate switched)
|
70
|
+
ir.attachment: website.s_carousel_default_image_1 (noupdate switched)
|
71
|
+
ir.attachment: website.s_carousel_default_image_2 (noupdate switched)
|
72
|
+
ir.attachment: website.s_carousel_default_image_3 (noupdate switched)
|
73
|
+
ir.attachment: website.s_company_team_image_1 (noupdate switched)
|
74
|
+
ir.attachment: website.s_company_team_image_2 (noupdate switched)
|
75
|
+
ir.attachment: website.s_company_team_image_3 (noupdate switched)
|
76
|
+
ir.attachment: website.s_company_team_image_4 (noupdate switched)
|
77
|
+
ir.attachment: website.s_cover_default_image (noupdate switched)
|
78
|
+
ir.attachment: website.s_image_text_default_image (noupdate switched)
|
79
|
+
ir.attachment: website.s_masonry_block_default_image_1 (noupdate switched)
|
80
|
+
ir.attachment: website.s_masonry_block_default_image_2 (noupdate switched)
|
81
|
+
ir.attachment: website.s_media_list_default_image_1 (noupdate switched)
|
82
|
+
ir.attachment: website.s_media_list_default_image_2 (noupdate switched)
|
83
|
+
ir.attachment: website.s_media_list_default_image_3 (noupdate switched)
|
84
|
+
ir.attachment: website.s_mega_menu_cards_default_image_1 (noupdate switched)
|
85
|
+
ir.attachment: website.s_mega_menu_cards_default_image_2 (noupdate switched)
|
86
|
+
ir.attachment: website.s_mega_menu_cards_default_image_3 (noupdate switched)
|
87
|
+
ir.attachment: website.s_mega_menu_cards_default_image_4 (noupdate switched)
|
88
|
+
ir.attachment: website.s_mega_menu_cards_default_image_5 (noupdate switched)
|
89
|
+
ir.attachment: website.s_mega_menu_cards_default_image_6 (noupdate switched)
|
90
|
+
ir.attachment: website.s_mega_menu_cards_default_image_7 (noupdate switched)
|
91
|
+
ir.attachment: website.s_mega_menu_cards_default_image_8 (noupdate switched)
|
92
|
+
ir.attachment: website.s_mega_menu_images_subtitles_default_image_1 (noupdate switched)
|
93
|
+
ir.attachment: website.s_mega_menu_images_subtitles_default_image_2 (noupdate switched)
|
94
|
+
ir.attachment: website.s_mega_menu_images_subtitles_default_image_3 (noupdate switched)
|
95
|
+
ir.attachment: website.s_mega_menu_images_subtitles_default_image_4 (noupdate switched)
|
96
|
+
ir.attachment: website.s_mega_menu_images_subtitles_default_image_5 (noupdate switched)
|
97
|
+
ir.attachment: website.s_mega_menu_images_subtitles_default_image_6 (noupdate switched)
|
98
|
+
ir.attachment: website.s_mega_menu_images_subtitles_default_image_7 (noupdate switched)
|
99
|
+
ir.attachment: website.s_mega_menu_menu_image_menu_default_image (noupdate switched)
|
100
|
+
ir.attachment: website.s_mega_menu_menus_logos_default_image (noupdate switched)
|
101
|
+
ir.attachment: website.s_mega_menu_menus_logos_default_logo_1 (noupdate switched)
|
102
|
+
ir.attachment: website.s_mega_menu_menus_logos_default_logo_2 (noupdate switched)
|
103
|
+
ir.attachment: website.s_mega_menu_menus_logos_default_logo_3 (noupdate switched)
|
104
|
+
ir.attachment: website.s_mega_menu_menus_logos_default_logo_4 (noupdate switched)
|
105
|
+
ir.attachment: website.s_mega_menu_menus_logos_default_logo_5 (noupdate switched)
|
106
|
+
ir.attachment: website.s_mega_menu_menus_logos_default_logo_6 (noupdate switched)
|
107
|
+
ir.attachment: website.s_mega_menu_thumbnails_default_image_1 (noupdate switched)
|
108
|
+
ir.attachment: website.s_mega_menu_thumbnails_default_image_10 (noupdate switched)
|
109
|
+
ir.attachment: website.s_mega_menu_thumbnails_default_image_11 (noupdate switched)
|
110
|
+
ir.attachment: website.s_mega_menu_thumbnails_default_image_2 (noupdate switched)
|
111
|
+
ir.attachment: website.s_mega_menu_thumbnails_default_image_3 (noupdate switched)
|
112
|
+
ir.attachment: website.s_mega_menu_thumbnails_default_image_4 (noupdate switched)
|
113
|
+
ir.attachment: website.s_mega_menu_thumbnails_default_image_5 (noupdate switched)
|
114
|
+
ir.attachment: website.s_mega_menu_thumbnails_default_image_6 (noupdate switched)
|
115
|
+
ir.attachment: website.s_mega_menu_thumbnails_default_image_7 (noupdate switched)
|
116
|
+
ir.attachment: website.s_mega_menu_thumbnails_default_image_8 (noupdate switched)
|
117
|
+
ir.attachment: website.s_mega_menu_thumbnails_default_image_9 (noupdate switched)
|
118
|
+
ir.attachment: website.s_parallax_default_image (noupdate switched)
|
119
|
+
ir.attachment: website.s_picture_default_image (noupdate switched)
|
120
|
+
ir.attachment: website.s_popup_default_image (noupdate switched)
|
121
|
+
ir.attachment: website.s_product_catalog_default_image (noupdate switched)
|
122
|
+
ir.attachment: website.s_product_list_default_image_1 (noupdate switched)
|
123
|
+
ir.attachment: website.s_product_list_default_image_2 (noupdate switched)
|
124
|
+
ir.attachment: website.s_product_list_default_image_3 (noupdate switched)
|
125
|
+
ir.attachment: website.s_product_list_default_image_4 (noupdate switched)
|
126
|
+
ir.attachment: website.s_product_list_default_image_5 (noupdate switched)
|
127
|
+
ir.attachment: website.s_product_list_default_image_6 (noupdate switched)
|
128
|
+
ir.attachment: website.s_quotes_carousel_demo_image_0 (noupdate switched)
|
129
|
+
ir.attachment: website.s_quotes_carousel_demo_image_1 (noupdate switched)
|
130
|
+
ir.attachment: website.s_quotes_carousel_demo_image_2 (noupdate switched)
|
131
|
+
ir.attachment: website.s_quotes_carousel_demo_image_3 (noupdate switched)
|
132
|
+
ir.attachment: website.s_quotes_carousel_demo_image_4 (noupdate switched)
|
133
|
+
ir.attachment: website.s_quotes_carousel_demo_image_5 (noupdate switched)
|
134
|
+
ir.attachment: website.s_reference_default_image_6 (noupdate switched)
|
135
|
+
ir.attachment: website.s_reference_demo_image_1 (noupdate switched)
|
136
|
+
ir.attachment: website.s_reference_demo_image_2 (noupdate switched)
|
137
|
+
ir.attachment: website.s_reference_demo_image_3 (noupdate switched)
|
138
|
+
ir.attachment: website.s_reference_demo_image_4 (noupdate switched)
|
139
|
+
ir.attachment: website.s_reference_demo_image_5 (noupdate switched)
|
140
|
+
ir.attachment: website.s_text_image_default_image (noupdate switched)
|
141
|
+
ir.attachment: website.s_three_columns_default_image_1 (noupdate switched)
|
142
|
+
ir.attachment: website.s_three_columns_default_image_2 (noupdate switched)
|
143
|
+
ir.attachment: website.s_three_columns_default_image_3 (noupdate switched)
|
144
|
+
# DONE: pre-migration: switched noupdate
|
145
|
+
|
146
|
+
NEW ir.attachment: website.library_image_team
|
147
|
+
NEW ir.attachment: website.s_banner_default_image_2
|
148
|
+
NEW ir.attachment: website.s_banner_default_image_3
|
149
|
+
NEW ir.attachment: website.s_text_cover_default_image
|
150
|
+
NEW ir.model.access: website.access_seo_public_employee
|
151
|
+
NEW ir.model.access: website.access_seo_public_portal
|
152
|
+
NEW ir.model.access: website.access_seo_public_public
|
153
|
+
NEW ir.model.access: website.access_website_controller_page_designer
|
154
|
+
NEW ir.model.access: website.access_website_controller_page_public
|
155
|
+
NEW ir.model.access: website.access_website_menu_employee
|
156
|
+
NEW ir.model.access: website.access_website_menu_portal
|
157
|
+
NEW ir.model.access: website.access_website_menu_public
|
158
|
+
NEW ir.model.access: website.access_website_public_employee
|
159
|
+
NEW ir.model.access: website.access_website_public_portal
|
160
|
+
NEW ir.model.access: website.access_website_public_public
|
161
|
+
DEL ir.model.access: website.access_seo_public
|
162
|
+
DEL ir.model.access: website.access_website_menu
|
163
|
+
DEL ir.model.access: website.access_website_page
|
164
|
+
DEL ir.model.access: website.access_website_public
|
165
|
+
NEW ir.rule: website.website_page_controller_rule_public
|
166
|
+
NEW ir.ui.menu: website.menu_website_controller_pages_list
|
167
|
+
# NOTHING TO DO
|
168
|
+
|
169
|
+
NEW ir.ui.view: website.column_count_option
|
170
|
+
NEW ir.ui.view: website.footer_language_selector_code
|
171
|
+
NEW ir.ui.view: website.grid_layout_options
|
172
|
+
NEW ir.ui.view: website.header_call_to_action_large
|
173
|
+
NEW ir.ui.view: website.header_call_to_action_sidebar
|
174
|
+
NEW ir.ui.view: website.header_call_to_action_stretched
|
175
|
+
NEW ir.ui.view: website.header_language_selector_code
|
176
|
+
NEW ir.ui.view: website.header_search_box
|
177
|
+
NEW ir.ui.view: website.header_search_box_input
|
178
|
+
NEW ir.ui.view: website.header_social_links
|
179
|
+
NEW ir.ui.view: website.header_text_element
|
180
|
+
NEW ir.ui.view: website.new_page_template_about_full_1_s_text_block_h1
|
181
|
+
NEW ir.ui.view: website.new_page_template_about_full_1_s_text_block_h2
|
182
|
+
NEW ir.ui.view: website.new_page_template_about_full_s_image_text
|
183
|
+
NEW ir.ui.view: website.new_page_template_about_full_s_numbers
|
184
|
+
NEW ir.ui.view: website.new_page_template_about_full_s_text_image
|
185
|
+
NEW ir.ui.view: website.new_page_template_about_map_s_text_block_2nd
|
186
|
+
NEW ir.ui.view: website.new_page_template_about_map_s_text_block_h1
|
187
|
+
NEW ir.ui.view: website.new_page_template_about_map_s_text_block_h2
|
188
|
+
NEW ir.ui.view: website.new_page_template_about_mini_s_text_block_h2
|
189
|
+
NEW ir.ui.view: website.new_page_template_about_personal_s_image_text
|
190
|
+
NEW ir.ui.view: website.new_page_template_about_personal_s_numbers
|
191
|
+
NEW ir.ui.view: website.new_page_template_about_personal_s_text_block_h2
|
192
|
+
NEW ir.ui.view: website.new_page_template_about_s_banner
|
193
|
+
NEW ir.ui.view: website.new_page_template_about_s_company_team
|
194
|
+
NEW ir.ui.view: website.new_page_template_about_s_cover
|
195
|
+
NEW ir.ui.view: website.new_page_template_about_s_features
|
196
|
+
NEW ir.ui.view: website.new_page_template_about_s_image_text
|
197
|
+
NEW ir.ui.view: website.new_page_template_about_s_numbers
|
198
|
+
NEW ir.ui.view: website.new_page_template_about_s_picture
|
199
|
+
NEW ir.ui.view: website.new_page_template_about_s_text_block_2nd
|
200
|
+
NEW ir.ui.view: website.new_page_template_about_s_text_block_h1
|
201
|
+
NEW ir.ui.view: website.new_page_template_about_s_text_block_h2
|
202
|
+
NEW ir.ui.view: website.new_page_template_about_s_text_cover
|
203
|
+
NEW ir.ui.view: website.new_page_template_about_s_text_image
|
204
|
+
NEW ir.ui.view: website.new_page_template_about_s_three_columns
|
205
|
+
NEW ir.ui.view: website.new_page_template_about_timeline_s_text_block_h2
|
206
|
+
NEW ir.ui.view: website.new_page_template_basic_2_s_text_block_h1
|
207
|
+
NEW ir.ui.view: website.new_page_template_basic_s_picture
|
208
|
+
NEW ir.ui.view: website.new_page_template_basic_s_quotes_carousel
|
209
|
+
NEW ir.ui.view: website.new_page_template_basic_s_text_block_h1
|
210
|
+
NEW ir.ui.view: website.new_page_template_basic_s_text_cover
|
211
|
+
NEW ir.ui.view: website.new_page_template_gallery_s_banner
|
212
|
+
NEW ir.ui.view: website.new_page_template_gallery_s_image_text_2nd
|
213
|
+
NEW ir.ui.view: website.new_page_template_gallery_s_text_block_2nd
|
214
|
+
NEW ir.ui.view: website.new_page_template_gallery_s_text_block_h2
|
215
|
+
NEW ir.ui.view: website.new_page_template_groups
|
216
|
+
NEW ir.ui.view: website.new_page_template_landing_0_s_cover
|
217
|
+
NEW ir.ui.view: website.new_page_template_landing_1_s_banner
|
218
|
+
NEW ir.ui.view: website.new_page_template_landing_2_s_call_to_action
|
219
|
+
NEW ir.ui.view: website.new_page_template_landing_2_s_cover
|
220
|
+
NEW ir.ui.view: website.new_page_template_landing_2_s_text_block_h2
|
221
|
+
NEW ir.ui.view: website.new_page_template_landing_2_s_three_columns
|
222
|
+
NEW ir.ui.view: website.new_page_template_landing_3_s_call_to_action
|
223
|
+
NEW ir.ui.view: website.new_page_template_landing_3_s_text_block_h2
|
224
|
+
NEW ir.ui.view: website.new_page_template_landing_3_s_three_columns
|
225
|
+
NEW ir.ui.view: website.new_page_template_landing_4_s_cover
|
226
|
+
NEW ir.ui.view: website.new_page_template_landing_4_s_text_block_h2
|
227
|
+
NEW ir.ui.view: website.new_page_template_landing_5_s_banner
|
228
|
+
NEW ir.ui.view: website.new_page_template_landing_s_banner
|
229
|
+
NEW ir.ui.view: website.new_page_template_landing_s_call_to_action
|
230
|
+
NEW ir.ui.view: website.new_page_template_landing_s_color_blocks_2
|
231
|
+
NEW ir.ui.view: website.new_page_template_landing_s_cover
|
232
|
+
NEW ir.ui.view: website.new_page_template_landing_s_features
|
233
|
+
NEW ir.ui.view: website.new_page_template_landing_s_showcase
|
234
|
+
NEW ir.ui.view: website.new_page_template_landing_s_text_block_h2
|
235
|
+
NEW ir.ui.view: website.new_page_template_landing_s_text_cover
|
236
|
+
NEW ir.ui.view: website.new_page_template_landing_s_text_image
|
237
|
+
NEW ir.ui.view: website.new_page_template_landing_s_three_columns
|
238
|
+
NEW ir.ui.view: website.new_page_template_pricing_5_s_text_block_h1
|
239
|
+
NEW ir.ui.view: website.new_page_template_pricing_s_image_text_2nd
|
240
|
+
NEW ir.ui.view: website.new_page_template_pricing_s_text_block_2nd
|
241
|
+
NEW ir.ui.view: website.new_page_template_pricing_s_text_block_h1
|
242
|
+
NEW ir.ui.view: website.new_page_template_pricing_s_text_block_h2
|
243
|
+
NEW ir.ui.view: website.new_page_template_s_banner
|
244
|
+
NEW ir.ui.view: website.new_page_template_s_call_to_action
|
245
|
+
NEW ir.ui.view: website.new_page_template_s_carousel
|
246
|
+
NEW ir.ui.view: website.new_page_template_s_color_blocks_2
|
247
|
+
NEW ir.ui.view: website.new_page_template_s_company_team
|
248
|
+
NEW ir.ui.view: website.new_page_template_s_cover
|
249
|
+
NEW ir.ui.view: website.new_page_template_s_features
|
250
|
+
NEW ir.ui.view: website.new_page_template_s_image_gallery
|
251
|
+
NEW ir.ui.view: website.new_page_template_s_image_text
|
252
|
+
NEW ir.ui.view: website.new_page_template_s_image_text_2nd
|
253
|
+
NEW ir.ui.view: website.new_page_template_s_images_wall
|
254
|
+
NEW ir.ui.view: website.new_page_template_s_map
|
255
|
+
NEW ir.ui.view: website.new_page_template_s_media_list
|
256
|
+
NEW ir.ui.view: website.new_page_template_s_numbers
|
257
|
+
NEW ir.ui.view: website.new_page_template_s_parallax
|
258
|
+
NEW ir.ui.view: website.new_page_template_s_picture
|
259
|
+
NEW ir.ui.view: website.new_page_template_s_quotes_carousel
|
260
|
+
NEW ir.ui.view: website.new_page_template_s_references
|
261
|
+
NEW ir.ui.view: website.new_page_template_s_showcase
|
262
|
+
NEW ir.ui.view: website.new_page_template_s_text_block_2nd
|
263
|
+
NEW ir.ui.view: website.new_page_template_s_text_block_h1
|
264
|
+
NEW ir.ui.view: website.new_page_template_s_text_block_h2
|
265
|
+
NEW ir.ui.view: website.new_page_template_s_text_cover
|
266
|
+
NEW ir.ui.view: website.new_page_template_s_text_image
|
267
|
+
NEW ir.ui.view: website.new_page_template_s_three_columns
|
268
|
+
NEW ir.ui.view: website.new_page_template_s_website_form
|
269
|
+
NEW ir.ui.view: website.new_page_template_services_0_s_three_columns
|
270
|
+
NEW ir.ui.view: website.new_page_template_services_3_s_text_block_h1
|
271
|
+
NEW ir.ui.view: website.new_page_template_services_s_image_text
|
272
|
+
NEW ir.ui.view: website.new_page_template_services_s_image_text_2nd
|
273
|
+
NEW ir.ui.view: website.new_page_template_services_s_parallax
|
274
|
+
NEW ir.ui.view: website.new_page_template_services_s_text_block_2nd
|
275
|
+
NEW ir.ui.view: website.new_page_template_services_s_text_block_h1
|
276
|
+
NEW ir.ui.view: website.new_page_template_services_s_text_block_h2
|
277
|
+
NEW ir.ui.view: website.new_page_template_services_s_text_cover
|
278
|
+
NEW ir.ui.view: website.new_page_template_services_s_text_image
|
279
|
+
NEW ir.ui.view: website.new_page_template_services_s_three_columns
|
280
|
+
NEW ir.ui.view: website.new_page_template_team_0_s_three_columns
|
281
|
+
NEW ir.ui.view: website.new_page_template_team_2_s_text_block_h1
|
282
|
+
NEW ir.ui.view: website.new_page_template_team_s_image_gallery
|
283
|
+
NEW ir.ui.view: website.new_page_template_team_s_image_text
|
284
|
+
NEW ir.ui.view: website.new_page_template_team_s_image_text_2nd
|
285
|
+
NEW ir.ui.view: website.new_page_template_team_s_images_wall
|
286
|
+
NEW ir.ui.view: website.new_page_template_team_s_media_list
|
287
|
+
NEW ir.ui.view: website.new_page_template_team_s_picture
|
288
|
+
NEW ir.ui.view: website.new_page_template_team_s_text_block_h1
|
289
|
+
NEW ir.ui.view: website.new_page_template_team_s_text_image
|
290
|
+
NEW ir.ui.view: website.new_page_template_team_s_three_columns
|
291
|
+
NEW ir.ui.view: website.placeholder_header_search_box
|
292
|
+
NEW ir.ui.view: website.placeholder_header_social_links
|
293
|
+
NEW ir.ui.view: website.placeholder_header_text_element
|
294
|
+
NEW ir.ui.view: website.s_button
|
295
|
+
NEW ir.ui.view: website.s_call_to_action_about
|
296
|
+
NEW ir.ui.view: website.s_call_to_action_digital
|
297
|
+
NEW ir.ui.view: website.s_call_to_action_menu
|
298
|
+
NEW ir.ui.view: website.s_image
|
299
|
+
NEW ir.ui.view: website.s_image_text_2nd
|
300
|
+
NEW ir.ui.view: website.s_instagram_page
|
301
|
+
NEW ir.ui.view: website.s_instagram_page_options
|
302
|
+
NEW ir.ui.view: website.s_picture_only
|
303
|
+
NEW ir.ui.view: website.s_text_block_2nd
|
304
|
+
NEW ir.ui.view: website.s_text_block_h1
|
305
|
+
NEW ir.ui.view: website.s_text_block_h2
|
306
|
+
NEW ir.ui.view: website.s_text_block_h2_contact
|
307
|
+
NEW ir.ui.view: website.s_text_cover
|
308
|
+
NEW ir.ui.view: website.s_three_columns_2nd
|
309
|
+
NEW ir.ui.view: website.s_three_columns_menu
|
310
|
+
NEW ir.ui.view: website.s_video
|
311
|
+
NEW ir.ui.view: website.s_website_controller_page_listing_layout
|
312
|
+
NEW ir.ui.view: website.shared_blocks
|
313
|
+
NEW ir.ui.view: website.snippet_options_header_box
|
314
|
+
NEW ir.ui.view: website.step_wizard
|
315
|
+
NEW ir.ui.view: website.template_header_boxed_align_center
|
316
|
+
NEW ir.ui.view: website.template_header_boxed_align_right
|
317
|
+
NEW ir.ui.view: website.template_header_hamburger_mobile_align_center
|
318
|
+
NEW ir.ui.view: website.template_header_hamburger_mobile_align_right
|
319
|
+
NEW ir.ui.view: website.template_header_mobile
|
320
|
+
NEW ir.ui.view: website.template_header_mobile_align_center
|
321
|
+
NEW ir.ui.view: website.template_header_mobile_align_right
|
322
|
+
NEW ir.ui.view: website.template_header_sales_four
|
323
|
+
NEW ir.ui.view: website.template_header_sales_four_align_center
|
324
|
+
NEW ir.ui.view: website.template_header_sales_four_align_right
|
325
|
+
NEW ir.ui.view: website.template_header_sales_one
|
326
|
+
NEW ir.ui.view: website.template_header_sales_one_align_center
|
327
|
+
NEW ir.ui.view: website.template_header_sales_one_align_right
|
328
|
+
NEW ir.ui.view: website.template_header_sales_three
|
329
|
+
NEW ir.ui.view: website.template_header_sales_two
|
330
|
+
NEW ir.ui.view: website.template_header_sales_two_align_center
|
331
|
+
NEW ir.ui.view: website.template_header_sales_two_align_right
|
332
|
+
NEW ir.ui.view: website.template_header_search
|
333
|
+
NEW ir.ui.view: website.template_header_search_align_center
|
334
|
+
NEW ir.ui.view: website.template_header_search_align_right
|
335
|
+
NEW ir.ui.view: website.template_header_sidebar_align_center
|
336
|
+
NEW ir.ui.view: website.template_header_sidebar_align_right
|
337
|
+
NEW ir.ui.view: website.template_header_stretch
|
338
|
+
NEW ir.ui.view: website.template_header_stretch_align_center
|
339
|
+
NEW ir.ui.view: website.template_header_stretch_align_right
|
340
|
+
NEW ir.ui.view: website.website_controller_pages_form_view
|
341
|
+
NEW ir.ui.view: website.website_controller_pages_tree_view
|
342
|
+
DEL ir.ui.view: website.language_selector_add_language
|
343
|
+
DEL ir.ui.view: website.option_header_no_mobile_hamburger
|
344
|
+
DEL ir.ui.view: website.option_header_off_canvas
|
345
|
+
DEL ir.ui.view: website.option_header_off_canvas_logo_show
|
346
|
+
DEL ir.ui.view: website.option_header_off_canvas_template_header_hamburger
|
347
|
+
DEL ir.ui.view: website.option_header_off_canvas_template_header_hamburger_full
|
348
|
+
DEL ir.ui.view: website.option_header_off_canvas_template_header_sidebar
|
349
|
+
DEL ir.ui.view: website.report_viewhierarchy_children
|
350
|
+
DEL ir.ui.view: website.template_header_boxed_oe_structure_header_boxed_1
|
351
|
+
DEL ir.ui.view: website.template_header_centered_logo
|
352
|
+
DEL ir.ui.view: website.template_header_contact
|
353
|
+
DEL ir.ui.view: website.template_header_contact_oe_structure_header_contact_1
|
354
|
+
DEL ir.ui.view: website.template_header_hamburger_align_center
|
355
|
+
DEL ir.ui.view: website.template_header_hamburger_full
|
356
|
+
DEL ir.ui.view: website.template_header_hamburger_full_oe_structure_header_hamburger_full_1
|
357
|
+
DEL ir.ui.view: website.template_header_hamburger_oe_structure_header_hamburger_2
|
358
|
+
DEL ir.ui.view: website.template_header_hamburger_oe_structure_header_hamburger_3
|
359
|
+
DEL ir.ui.view: website.template_header_image
|
360
|
+
DEL ir.ui.view: website.template_header_image_oe_structure_header_image_1
|
361
|
+
DEL ir.ui.view: website.template_header_magazine
|
362
|
+
DEL ir.ui.view: website.template_header_magazine_oe_structure_header_magazine_1
|
363
|
+
DEL ir.ui.view: website.template_header_sidebar_oe_structure_header_sidebar_1
|
364
|
+
DEL ir.ui.view: website.template_header_slogan
|
365
|
+
DEL ir.ui.view: website.template_header_slogan_align_center
|
366
|
+
DEL ir.ui.view: website.template_header_slogan_align_right
|
367
|
+
DEL ir.ui.view: website.template_header_slogan_oe_structure_header_slogan_1
|
368
|
+
DEL ir.ui.view: website.template_header_slogan_oe_structure_header_slogan_3
|
369
|
+
DEL ir.ui.view: website.template_header_vertical_oe_structure_header_vertical_1
|
370
|
+
DEL ir.ui.view: website.template_header_vertical_oe_structure_header_vertical_2
|
371
|
+
DEL ir.ui.view: website.template_header_vertical_oe_structure_header_vertical_3
|
372
|
+
DEL ir.ui.view: website.view_view_qweb
|
373
|
+
NEW res.groups: website.website_page_controller_expose
|
374
|
+
# NOTHING TO DO
|
@@ -596,7 +596,9 @@ odoo/addons/openupgrade_scripts/scripts/stock_landed_costs_company/17.0.1.0/upgr
|
|
596
596
|
odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/17.0.1.0/upgrade_analysis.txt,sha256=D5ga0lVXgepoip2hpy8IkAyPIUx9JK7S6rgegxP_Hq0,696
|
597
597
|
odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/17.0.1.0/upgrade_analysis_work.txt,sha256=9OoxM5xzb2WoQx3_SFxSyYc7meCIx9putCwdm5JwWM8,872
|
598
598
|
odoo/addons/openupgrade_scripts/scripts/stock_sms/17.0.1.0/upgrade_analysis.txt,sha256=WmtD-QRPZnTjNKvErYIFRz_n-t4C2ttxPz_9eYkTOrw,150
|
599
|
+
odoo/addons/openupgrade_scripts/scripts/survey/17.0.3.6/post-migration.py,sha256=x4_KZi4GJrupuPqoxjIRmL06jMJMIx6dOfdki8fpHD0,496
|
599
600
|
odoo/addons/openupgrade_scripts/scripts/survey/17.0.3.6/upgrade_analysis.txt,sha256=4pKxvlMav-PO7Hd44Bp1rW-EavfQpql6aNw_ugn6fwk,2379
|
601
|
+
odoo/addons/openupgrade_scripts/scripts/survey/17.0.3.6/upgrade_analysis_work.txt,sha256=PleuDYEjD980eqPA2SvX8GDC5Nqzsya1wKkrfT4HVxQ,2417
|
600
602
|
odoo/addons/openupgrade_scripts/scripts/transifex/17.0.1.0/upgrade_analysis.txt,sha256=9js2BMOhvgwKRc7amc1kIms0LLC9u6-SmqbXAl4MlUk,150
|
601
603
|
odoo/addons/openupgrade_scripts/scripts/uom/17.0.1.0/upgrade_analysis.txt,sha256=QNpF0ZKtfvAQ5CYA-S7iCVvfMBnNQZXwNhgtA6am5JM,132
|
602
604
|
odoo/addons/openupgrade_scripts/scripts/utm/17.0.1.1/upgrade_analysis.txt,sha256=_OOLVSiucvspEHo_3R5b5ikUC1Fbrsf8Xek6KUgUs5c,230
|
@@ -611,7 +613,10 @@ odoo/addons/openupgrade_scripts/scripts/web_hierarchy/17.0.1.0/upgrade_analysis_
|
|
611
613
|
odoo/addons/openupgrade_scripts/scripts/web_tour/17.0.0.1/upgrade_analysis.txt,sha256=s140_WtORGtzpb8A4VHm0LTT8XbotPX7DvT_9-6GWto,147
|
612
614
|
odoo/addons/openupgrade_scripts/scripts/web_tour/17.0.0.1/upgrade_analysis_work.txt,sha256=NOBievntBLSAFC9ukXfy8JG2j2updWkORSmMJwsPJdw,189
|
613
615
|
odoo/addons/openupgrade_scripts/scripts/website/17.0.1.0/noupdate_changes.xml,sha256=qZdjILumk1gNqxC3qQrZ9ltbTYjjrHl458VwtAEWlLc,362
|
616
|
+
odoo/addons/openupgrade_scripts/scripts/website/17.0.1.0/post-migration.py,sha256=E4TUbjn1Z7-LTxxymnp0LHOrDTK7OalQGqVVPLxFkB0,530
|
617
|
+
odoo/addons/openupgrade_scripts/scripts/website/17.0.1.0/pre-migration.py,sha256=G1nzlkP_njLYfwAnSk8k-4PY8aKudSrq2adzxjDV9Lw,5262
|
614
618
|
odoo/addons/openupgrade_scripts/scripts/website/17.0.1.0/upgrade_analysis.txt,sha256=f1VN1XwAxqYpqk9j_zDA5Fpo0UsduG3hsuOJIRfMhq8,23040
|
619
|
+
odoo/addons/openupgrade_scripts/scripts/website/17.0.1.0/upgrade_analysis_work.txt,sha256=XbZnVSDR6kH3G4VWsGV98RgcODYiG3VEKp2mXfO5U6Q,23252
|
615
620
|
odoo/addons/openupgrade_scripts/scripts/website_blog/17.0.1.1/upgrade_analysis.txt,sha256=ddg1heDlJbZKOl9DXIq2LBJlXIluxdvkPzXUYTA-n8Y,1377
|
616
621
|
odoo/addons/openupgrade_scripts/scripts/website_cf_turnstile/17.0.1.0/upgrade_analysis.txt,sha256=tW5rUHn4MR1VgqwW0qUYkcVXv5adb6qck43TN8q8EB0,210
|
617
622
|
odoo/addons/openupgrade_scripts/scripts/website_crm/17.0.2.1/upgrade_analysis.txt,sha256=y6ZeGUo8Je1ompJpIV8Yn_mMeHTD4TtOGTAnwAArIHo,156
|
@@ -664,7 +669,7 @@ odoo/addons/openupgrade_scripts/scripts/website_twitter/17.0.1.0/upgrade_analysi
|
|
664
669
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
665
670
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
666
671
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=iV41-zYBM4uvZPuunpcr7bQeRgBaojVsKo_gkeyJyA4,12639
|
667
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
668
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
669
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
670
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
672
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.209.dist-info/METADATA,sha256=MpFCjeDgd5FCxLHvc3DXoJFU_xEEgvv2AOVbJAxDZtQ,3786
|
673
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.209.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
|
674
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.209.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
675
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.209.dist-info/RECORD,,
|
File without changes
|