diff --git a/attachment_azure/__manifest__.py b/attachment_azure/__manifest__.py index c69834b..ae524d7 100644 --- a/attachment_azure/__manifest__.py +++ b/attachment_azure/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Attachments on Azure storage", "summary": "Store assets and attachments on a Azure compatible object storage", - "version": "17.0.1.0.0", + "version": "18.0.1.0.0", "author": "Camptocamp, " "Open Source Integrators, " "Serpent Consulting Services, " @@ -16,7 +16,7 @@ "python": ["azure-storage-blob", "azure-identity"], }, "website": "https://github.com/camptocamp/odoo-cloud-platform", - "installable": False, + "installable": True, "development_status": "Beta", "maintainers": ["max3903"], } diff --git a/base_attachment_object_storage/__init__.py b/base_attachment_object_storage/__init__.py index 6a5f25a..1e8071d 100644 --- a/base_attachment_object_storage/__init__.py +++ b/base_attachment_object_storage/__init__.py @@ -2,7 +2,7 @@ from . import models from odoo.http import Stream -old_from_attachment = Stream.from_attachment +old_from_attachment = Stream.as_attachment @classmethod @@ -23,4 +23,4 @@ def from_attachment(cls, attachment): return old_from_attachment(attachment) -Stream.from_attachment = from_attachment +Stream.as_attachment = from_attachment diff --git a/base_attachment_object_storage/__manifest__.py b/base_attachment_object_storage/__manifest__.py index e8ee76c..f7475f4 100644 --- a/base_attachment_object_storage/__manifest__.py +++ b/base_attachment_object_storage/__manifest__.py @@ -5,13 +5,13 @@ { "name": "Base Attachment Object Store", "summary": "Base module for the implementation of external object store.", - "version": "17.0.1.0.0", + "version": "18.0.1.0.0", "author": "Camptocamp,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Knowledge Management", "depends": ["base"], "website": "https://github.com/camptocamp/odoo-cloud-platform", "data": ["data/res_config_settings_data.xml"], - "installable": False, + "installable": True, "auto_install": True, } diff --git a/base_fileurl_field/__manifest__.py b/base_fileurl_field/__manifest__.py index 51ea36f..3cc8485 100644 --- a/base_fileurl_field/__manifest__.py +++ b/base_fileurl_field/__manifest__.py @@ -3,7 +3,7 @@ { "name": "Base FileURL Field", "summary": "Implementation of FileURL type fields", - "version": "17.0.1.0.0", + "version": "18.0.1.0.0", "category": "Technical Settings", "author": "Camptocamp, Odoo Community Association (OCA)", "website": "https://github.com/camptocamp/odoo-cloud-platform", diff --git a/cloud_platform/__manifest__.py b/cloud_platform/__manifest__.py index 89352d2..7de7e16 100644 --- a/cloud_platform/__manifest__.py +++ b/cloud_platform/__manifest__.py @@ -5,7 +5,7 @@ { "name": "Cloud Platform", "summary": "Addons required for the Camptocamp Cloud Platform", - "version": "17.0.2.0.0", + "version": "18.0.2.0.0", "author": "Camptocamp,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Extra Tools", @@ -17,5 +17,5 @@ ], "website": "https://github.com/camptocamp/odoo-cloud-platform", "data": [], - "installable": False, + "installable": True, } diff --git a/cloud_platform_azure/__manifest__.py b/cloud_platform_azure/__manifest__.py index 4c9b2ba..87518c7 100644 --- a/cloud_platform_azure/__manifest__.py +++ b/cloud_platform_azure/__manifest__.py @@ -5,7 +5,7 @@ { "name": "Cloud Platform Azure", "summary": "Addons required for the Camptocamp Cloud Platform on Azure", - "version": "17.0.1.0.0", + "version": "18.0.1.0.0", "author": "Camptocamp,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Extra Tools", @@ -20,5 +20,5 @@ ], "website": "https://github.com/camptocamp/odoo-cloud-platform", "data": [], - "installable": False, + "installable": True, } diff --git a/logging_json/__manifest__.py b/logging_json/__manifest__.py index 62395e3..44fbba5 100644 --- a/logging_json/__manifest__.py +++ b/logging_json/__manifest__.py @@ -3,7 +3,7 @@ { "name": "JSON Logging", - "version": "17.0.1.0.0", + "version": "18.0.1.0.0", "author": "Camptocamp,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Extra Tools", @@ -15,5 +15,5 @@ }, "website": "https://github.com/camptocamp/odoo-cloud-platform", "data": [], - "installable": False, + "installable": True, } diff --git a/monitoring_log_requests/__manifest__.py b/monitoring_log_requests/__manifest__.py index 5b4b937..8071143 100644 --- a/monitoring_log_requests/__manifest__.py +++ b/monitoring_log_requests/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Monitoring: Requests Logging", - "version": "17.0.1.0.0", + "version": "18.0.1.0.0", "author": "Camptocamp,Numigi,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "category", diff --git a/monitoring_prometheus/__manifest__.py b/monitoring_prometheus/__manifest__.py index 48f2b2f..1dcb013 100644 --- a/monitoring_prometheus/__manifest__.py +++ b/monitoring_prometheus/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Monitoring: Prometheus Metrics", - "version": "17.0.1.0.0", + "version": "18.0.1.0.0", "author": "Camptocamp,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "category", @@ -18,5 +18,5 @@ "external_dependencies": { "python": ["prometheus_client"], }, - "installable": False, + "installable": True, } diff --git a/monitoring_statsd/__manifest__.py b/monitoring_statsd/__manifest__.py index f7b498f..bf48acf 100644 --- a/monitoring_statsd/__manifest__.py +++ b/monitoring_statsd/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Monitoring: Statsd Metrics", - "version": "17.0.1.0.0", + "version": "18.0.1.0.0", "author": "Camptocamp,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "category", diff --git a/monitoring_status/__manifest__.py b/monitoring_status/__manifest__.py index 9f7dcb0..d85c5fd 100644 --- a/monitoring_status/__manifest__.py +++ b/monitoring_status/__manifest__.py @@ -4,12 +4,12 @@ { "name": "Monitoring: Status", - "version": "17.0.1.0.0", + "version": "18.0.1.0.0", "author": "Camptocamp,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "category", "depends": ["base", "web"], "website": "https://github.com/camptocamp/odoo-cloud-platform", "data": [], - "installable": False, + "installable": True, } diff --git a/monitoring_status/controllers/main.py b/monitoring_status/controllers/main.py index 21b6893..7da3e6c 100644 --- a/monitoring_status/controllers/main.py +++ b/monitoring_status/controllers/main.py @@ -8,7 +8,7 @@ import werkzeug from odoo import http -from odoo.addons.web.controllers.main import ensure_db +from odoo.addons.web.controllers.utils import ensure_db class HealthCheckFilter(logging.Filter): diff --git a/session_redis/__manifest__.py b/session_redis/__manifest__.py index a0deae6..7dcc50b 100644 --- a/session_redis/__manifest__.py +++ b/session_redis/__manifest__.py @@ -15,5 +15,5 @@ }, "website": "https://github.com/camptocamp/odoo-cloud-platform", "data": [], - "installable": False, + "installable": True, } diff --git a/test_base_fileurl_field/__manifest__.py b/test_base_fileurl_field/__manifest__.py index 4c885b0..b76174a 100644 --- a/test_base_fileurl_field/__manifest__.py +++ b/test_base_fileurl_field/__manifest__.py @@ -3,7 +3,7 @@ { "name": "test base fileurl fields", "summary": """A module to verify fileurl field.""", - "version": "17.0.1.0.0", + "version": "18.0.1.0.0", "category": "Tests", "author": "Camptocamp,Odoo Community Association (OCA)", "website": "https://github.com/camptocamp/odoo-cloud-platform",