From ec8af01676f45b39d7426638abc6a7cb5115d9a9 Mon Sep 17 00:00:00 2001 From: Odoo Migration Factory Date: Mon, 15 Jun 2026 12:09:21 +0200 Subject: [PATCH] [MIG] cloud_platform: enable on 19.0 --- .pre-commit-config.yaml | 2 -- cloud_platform/__manifest__.py | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6af0440..46fbd86 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,11 +2,9 @@ exclude: | (?x) # NOT INSTALLABLE ADDONS ^base_fileurl_field/| - ^cloud_platform/| ^monitoring_log_requests/| ^monitoring_prometheus/| ^monitoring_statsd/| - ^monitoring_status/| ^test_base_fileurl_field/| # END NOT INSTALLABLE ADDONS # Files and folders generated by bots, to avoid loops diff --git a/cloud_platform/__manifest__.py b/cloud_platform/__manifest__.py index 6088dac..0fd019b 100644 --- a/cloud_platform/__manifest__.py +++ b/cloud_platform/__manifest__.py @@ -5,11 +5,11 @@ { "name": "Cloud Platform", "summary": "Addons required for the Camptocamp Cloud Platform", - "version": "18.0.1.0.0", + "version": "19.0.1.0.0", "author": "Camptocamp,Odoo Community Association (OCA)", "license": "AGPL-3", "category": "Extra Tools", "depends": ["session_redis", "monitoring_status", "logging_json"], "website": "https://github.com/camptocamp/odoo-cloud-platform", - "installable": False, + "installable": True, }