mirror of
https://github.com/camptocamp/odoo-cloud-platform.git
synced 2026-06-23 18:04:34 +00:00
Merge pull request #264 from camptocamp/15.0-modules_migration
15.0 Modules migration
This commit is contained in:
+1
-1
@@ -20,7 +20,7 @@ env:
|
|||||||
- TESTS="1" ODOO_REPO="odoo/odoo"
|
- TESTS="1" ODOO_REPO="odoo/odoo"
|
||||||
- TESTS="1" ODOO_REPO="OCA/OCB"
|
- TESTS="1" ODOO_REPO="OCA/OCB"
|
||||||
global:
|
global:
|
||||||
- VERSION="14.0" LINT_CHECK="0" TESTS="0"
|
- VERSION="15.0" LINT_CHECK="0" TESTS="0"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
|
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Attachments on Azure storage",
|
"name": "Attachments on Azure storage",
|
||||||
"summary": "Store assets and attachments on a Azure compatible object storage",
|
"summary": "Store assets and attachments on a Azure compatible object storage",
|
||||||
"version": "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
"author": "Camptocamp, "
|
"author": "Camptocamp, "
|
||||||
"Open Source Integrators, "
|
"Open Source Integrators, "
|
||||||
"Serpent Consulting Services, "
|
"Serpent Consulting Services, "
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
# Copyright 2016-2019 Camptocamp SA
|
# Copyright 2016-2021 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
|
|
||||||
|
|
||||||
{'name': 'Attachments on S3 storage',
|
{"name": "Attachments on S3 storage",
|
||||||
'summary': 'Store assets and attachments on a S3 compatible object storage',
|
"summary": "Store assets and attachments on a S3 compatible object storage",
|
||||||
'version': "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
'category': 'Knowledge Management',
|
"category": "Knowledge Management",
|
||||||
'depends': ['base', 'base_attachment_object_storage'],
|
"depends": ["base", "base_attachment_object_storage"],
|
||||||
'external_dependencies': {
|
"external_dependencies": {
|
||||||
'python': ['boto3'],
|
"python": ["boto3"],
|
||||||
},
|
},
|
||||||
'website': 'https://www.camptocamp.com',
|
"website": "https://www.camptocamp.com",
|
||||||
'data': [],
|
"data": [],
|
||||||
'installable': True,
|
"installable": True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +1,21 @@
|
|||||||
# Copyright 2017-2019 Camptocamp SA
|
# Copyright 2017-2021 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
|
|
||||||
|
|
||||||
{'name': 'Attachments on Swift storage',
|
{"name": "Attachments on Swift storage",
|
||||||
'summary': 'Store assets and attachments on a Swift compatible object store',
|
"summary": "Store assets and attachments on a Swift compatible object store",
|
||||||
'version': "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
'category': 'Knowledge Management',
|
"category": "Knowledge Management",
|
||||||
'depends': ['base_attachment_object_storage'],
|
"depends": ["base_attachment_object_storage"],
|
||||||
'external_dependencies': {
|
"external_dependencies": {
|
||||||
'python': ['swiftclient',
|
"python": ["swiftclient",
|
||||||
'keystoneclient',
|
"keystoneclient",
|
||||||
'keystoneauth1',
|
"keystoneauth1",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
'website': 'https://www.camptocamp.com',
|
"website": "https://www.camptocamp.com",
|
||||||
'data': [],
|
"data": [],
|
||||||
'installable': True,
|
"installable": True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
# Copyright 2017-2019 Camptocamp SA
|
# Copyright 2017-2021 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
|
|
||||||
|
|
||||||
{'name': 'Base Attachment Object Store',
|
{"name": "Base Attachment Object Store",
|
||||||
'summary': 'Base module for the implementation of external object store.',
|
"summary": "Base module for the implementation of external object store.",
|
||||||
'version': "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
'category': 'Knowledge Management',
|
"category": "Knowledge Management",
|
||||||
'depends': ['base'],
|
"depends": ["base"],
|
||||||
'website': 'http://www.camptocamp.com',
|
"website": "http://www.camptocamp.com",
|
||||||
'data': ['data/res_config_settings_data.xml'],
|
"data": ["data/res_config_settings_data.xml"],
|
||||||
'installable': True,
|
"installable": True,
|
||||||
'auto_install': True,
|
"auto_install": True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,10 +3,10 @@
|
|||||||
{
|
{
|
||||||
"name": "Base FileURL Field",
|
"name": "Base FileURL Field",
|
||||||
"summary": "Implementation of FileURL type fields",
|
"summary": "Implementation of FileURL type fields",
|
||||||
"version": "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
"category": "Technical Settings",
|
"category": "Technical Settings",
|
||||||
'author': 'Camptocamp, Odoo Community Association (OCA)',
|
"author": "Camptocamp, Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
"depends": [
|
"depends": [
|
||||||
"base_attachment_object_storage",
|
"base_attachment_object_storage",
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
# Copyright 2016-2019 Camptocamp SA
|
# Copyright 2016-2021 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
|
|
||||||
|
|
||||||
{'name': 'Cloud Platform',
|
{"name": "Cloud Platform",
|
||||||
'summary': 'Addons required for the Camptocamp Cloud Platform',
|
"summary": "Addons required for the Camptocamp Cloud Platform",
|
||||||
'version': "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
'category': 'Extra Tools',
|
"category": "Extra Tools",
|
||||||
'depends': [
|
"depends": [
|
||||||
'session_redis',
|
"session_redis",
|
||||||
'monitoring_status',
|
"monitoring_status",
|
||||||
'logging_json',
|
"logging_json",
|
||||||
# 'monitoring_log_requests',
|
# "monitoring_log_requests",
|
||||||
'monitoring_statsd',
|
"monitoring_statsd",
|
||||||
'server_environment', # OCA/server-tools
|
"server_environment", # OCA/server-tools
|
||||||
],
|
],
|
||||||
'website': 'https://www.camptocamp.com',
|
"website": "https://www.camptocamp.com",
|
||||||
'data': [],
|
"data": [],
|
||||||
'installable': True,
|
"installable": True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
# Copyright 2017-2019 Camptocamp SA
|
# Copyright 2017-2021 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
|
|
||||||
|
|
||||||
{'name': 'Cloud Platform Exoscale',
|
{"name": "Cloud Platform Exoscale",
|
||||||
'summary': 'Addons required for the Camptocamp Cloud Platform on Exoscale',
|
"summary": "Addons required for the Camptocamp Cloud Platform on Exoscale",
|
||||||
'version': "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
'category': 'Extra Tools',
|
"category": "Extra Tools",
|
||||||
'depends': [
|
"depends": [
|
||||||
'cloud_platform',
|
"cloud_platform",
|
||||||
'attachment_s3',
|
"attachment_s3",
|
||||||
],
|
],
|
||||||
'website': 'https://www.camptocamp.com',
|
"website": "https://www.camptocamp.com",
|
||||||
'data': [],
|
"data": [],
|
||||||
'installable': True,
|
"installable": True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
# Copyright 2017-2019 Camptocamp SA
|
# Copyright 2017-2021 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
|
|
||||||
|
|
||||||
{'name': 'Cloud Platform OVH',
|
{"name": "Cloud Platform OVH",
|
||||||
'summary': 'Addons required for the Camptocamp Cloud Platform on OVH',
|
"summary": "Addons required for the Camptocamp Cloud Platform on OVH",
|
||||||
'version': "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
'category': 'Extra Tools',
|
"category": "Extra Tools",
|
||||||
'depends': [
|
"depends": [
|
||||||
'cloud_platform',
|
"cloud_platform",
|
||||||
'attachment_swift',
|
"attachment_swift",
|
||||||
],
|
],
|
||||||
'website': 'https://www.camptocamp.com',
|
"website": "https://www.camptocamp.com",
|
||||||
'data': [],
|
"data": [],
|
||||||
'installable': True,
|
"installable": True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
# Copyright 2016-2019 Camptocamp SA
|
# Copyright 2016-2021 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
|
|
||||||
{'name': 'JSON Logging',
|
{"name": "JSON Logging",
|
||||||
'version': "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
'category': 'Extra Tools',
|
"category": "Extra Tools",
|
||||||
'depends': ['base',
|
"depends": ["base",
|
||||||
],
|
],
|
||||||
'external_dependencies': {
|
"external_dependencies": {
|
||||||
'python': ['python-json-logger'],
|
"python": ["python-json-logger"],
|
||||||
},
|
},
|
||||||
'website': 'http://www.camptocamp.com',
|
"website": "http://www.camptocamp.com",
|
||||||
'data': [],
|
"data": [],
|
||||||
'installable': True,
|
"installable": True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
# Copyright 2016-2019 Camptocamp SA
|
# Copyright 2016-2021 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
|
|
||||||
|
|
||||||
{'name': 'Monitoring: Requests Logging',
|
{"name": "Monitoring: Requests Logging",
|
||||||
'version': "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
'author': 'Camptocamp,Numigi,Odoo Community Association (OCA)',
|
"author": "Camptocamp,Numigi,Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
'category': 'category',
|
"category": "category",
|
||||||
'depends': ['base', 'web'],
|
"depends": ["base", "web"],
|
||||||
'website': 'http://www.camptocamp.com',
|
"website": "http://www.camptocamp.com",
|
||||||
'data': [],
|
"data": [],
|
||||||
'installable': True,
|
"installable": True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,20 @@
|
|||||||
# Copyright 2016-2019 Camptocamp SA
|
# Copyright 2016-2021 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
|
|
||||||
|
|
||||||
{'name': 'Monitoring: Statsd Metrics',
|
{"name": "Monitoring: Statsd Metrics",
|
||||||
'version': "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
'category': 'category',
|
"category": "category",
|
||||||
'depends': ['base',
|
"depends": ["base",
|
||||||
'web',
|
"web",
|
||||||
'server_environment',
|
"server_environment",
|
||||||
],
|
],
|
||||||
'website': 'http://www.camptocamp.com',
|
"website": "http://www.camptocamp.com",
|
||||||
'data': [],
|
"data": [],
|
||||||
'external_dependencies': {
|
"external_dependencies": {
|
||||||
'python': ['statsd'],
|
"python": ["statsd"],
|
||||||
},
|
},
|
||||||
'installable': True,
|
"installable": True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
# Copyright 2016-2019 Camptocamp SA
|
# Copyright 2016-2021 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
|
|
||||||
|
|
||||||
{'name': 'Monitoring: Status',
|
{"name": "Monitoring: Status",
|
||||||
'version': "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
'category': 'category',
|
"category": "category",
|
||||||
'depends': ['base', 'web'],
|
"depends": ["base", "web"],
|
||||||
'website': 'http://www.camptocamp.com',
|
"website": "http://www.camptocamp.com",
|
||||||
'data': [],
|
"data": [],
|
||||||
'installable': True,
|
"installable": True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
server-env
|
server-env https://github.com/camptocamp/server-env 15.0-mig-server_environment
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
# Copyright 2016-2019 Camptocamp SA
|
# Copyright 2016-2021 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
|
|
||||||
|
|
||||||
{'name': 'Sessions in Redis',
|
{"name": "Sessions in Redis",
|
||||||
'summary': 'Store web sessions in Redis',
|
"summary": "Store web sessions in Redis",
|
||||||
'version': "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
'category': 'Extra Tools',
|
"category": "Extra Tools",
|
||||||
'depends': ['base'],
|
"depends": ["base"],
|
||||||
'external_dependencies': {
|
"external_dependencies": {
|
||||||
'python': ['redis'],
|
"python": ["redis"],
|
||||||
},
|
},
|
||||||
'website': 'http://www.camptocamp.com',
|
"website": "http://www.camptocamp.com",
|
||||||
'data': [],
|
"data": [],
|
||||||
'installable': True,
|
"installable": True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,19 +1,19 @@
|
|||||||
# Copyright 2019 Camptocamp SA
|
# Copyright 2019 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)
|
||||||
{
|
{
|
||||||
'name': 'test base fileurl fields',
|
"name": "test base fileurl fields",
|
||||||
'summary': """A module to verify fileurl field.""",
|
"summary": """A module to verify fileurl field.""",
|
||||||
'version': '12.0.1.0.0',
|
"version": "12.0.1.0.0",
|
||||||
'category': 'Tests',
|
"category": "Tests",
|
||||||
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'license': 'AGPL-3',
|
"license": "AGPL-3",
|
||||||
'depends': [
|
"depends": [
|
||||||
'base_fileurl_field'
|
"base_fileurl_field"
|
||||||
],
|
],
|
||||||
'data': [
|
"data": [
|
||||||
"views/res_partner.xml",
|
"views/res_partner.xml",
|
||||||
"views/res_users.xml",
|
"views/res_users.xml",
|
||||||
],
|
],
|
||||||
'installable': False,
|
"installable": False,
|
||||||
'auto_install': False,
|
"auto_install": False,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user