From da9918aee0fed44fbc44b9a1b146a78a1b62307a Mon Sep 17 00:00:00 2001 From: vrenaville Date: Fri, 15 Nov 2024 10:36:13 +0100 Subject: [PATCH] feat: add 18.0 sessions_redis migration --- attachment_azure/__manifest__.py | 2 +- base_attachment_object_storage/__manifest__.py | 2 +- cloud_platform/__manifest__.py | 2 +- cloud_platform_azure/__manifest__.py | 2 +- logging_json/__manifest__.py | 2 +- monitoring_prometheus/__manifest__.py | 2 +- monitoring_status/__manifest__.py | 2 +- session_redis/__manifest__.py | 6 +++--- session_redis/http.py | 2 +- session_redis/json_encoding.py | 2 +- session_redis/session.py | 2 +- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/attachment_azure/__manifest__.py b/attachment_azure/__manifest__.py index 589ac47..c69834b 100644 --- a/attachment_azure/__manifest__.py +++ b/attachment_azure/__manifest__.py @@ -16,7 +16,7 @@ "python": ["azure-storage-blob", "azure-identity"], }, "website": "https://github.com/camptocamp/odoo-cloud-platform", - "installable": True, + "installable": False, "development_status": "Beta", "maintainers": ["max3903"], } diff --git a/base_attachment_object_storage/__manifest__.py b/base_attachment_object_storage/__manifest__.py index 8383946..e8ee76c 100644 --- a/base_attachment_object_storage/__manifest__.py +++ b/base_attachment_object_storage/__manifest__.py @@ -12,6 +12,6 @@ "depends": ["base"], "website": "https://github.com/camptocamp/odoo-cloud-platform", "data": ["data/res_config_settings_data.xml"], - "installable": True, + "installable": False, "auto_install": True, } diff --git a/cloud_platform/__manifest__.py b/cloud_platform/__manifest__.py index 1473887..89352d2 100644 --- a/cloud_platform/__manifest__.py +++ b/cloud_platform/__manifest__.py @@ -17,5 +17,5 @@ ], "website": "https://github.com/camptocamp/odoo-cloud-platform", "data": [], - "installable": True, + "installable": False, } diff --git a/cloud_platform_azure/__manifest__.py b/cloud_platform_azure/__manifest__.py index b1af445..4c9b2ba 100644 --- a/cloud_platform_azure/__manifest__.py +++ b/cloud_platform_azure/__manifest__.py @@ -20,5 +20,5 @@ ], "website": "https://github.com/camptocamp/odoo-cloud-platform", "data": [], - "installable": True, + "installable": False, } diff --git a/logging_json/__manifest__.py b/logging_json/__manifest__.py index 6a8cb17..62395e3 100644 --- a/logging_json/__manifest__.py +++ b/logging_json/__manifest__.py @@ -15,5 +15,5 @@ }, "website": "https://github.com/camptocamp/odoo-cloud-platform", "data": [], - "installable": True, + "installable": False, } diff --git a/monitoring_prometheus/__manifest__.py b/monitoring_prometheus/__manifest__.py index 42a4de5..48f2b2f 100644 --- a/monitoring_prometheus/__manifest__.py +++ b/monitoring_prometheus/__manifest__.py @@ -18,5 +18,5 @@ "external_dependencies": { "python": ["prometheus_client"], }, - "installable": True, + "installable": False, } diff --git a/monitoring_status/__manifest__.py b/monitoring_status/__manifest__.py index f827b61..9f7dcb0 100644 --- a/monitoring_status/__manifest__.py +++ b/monitoring_status/__manifest__.py @@ -11,5 +11,5 @@ "depends": ["base", "web"], "website": "https://github.com/camptocamp/odoo-cloud-platform", "data": [], - "installable": True, + "installable": False, } diff --git a/session_redis/__manifest__.py b/session_redis/__manifest__.py index 63da367..a0deae6 100644 --- a/session_redis/__manifest__.py +++ b/session_redis/__manifest__.py @@ -1,11 +1,11 @@ -# Copyright 2016-2021 Camptocamp SA +# Copyright 2016-2024 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) { "name": "Sessions in Redis", "summary": "Store web sessions in Redis", - "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": True, + "installable": False, } diff --git a/session_redis/http.py b/session_redis/http.py index 6459529..f4e86d0 100644 --- a/session_redis/http.py +++ b/session_redis/http.py @@ -1,4 +1,4 @@ -# Copyright 2016-2019 Camptocamp SA +# Copyright 2016-2024 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) import logging diff --git a/session_redis/json_encoding.py b/session_redis/json_encoding.py index a263b74..86992b2 100644 --- a/session_redis/json_encoding.py +++ b/session_redis/json_encoding.py @@ -1,4 +1,4 @@ -# Copyright 2016-2020 Camptocamp SA +# Copyright 2016-2024 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) import json diff --git a/session_redis/session.py b/session_redis/session.py index 1ac842c..ec19b7c 100644 --- a/session_redis/session.py +++ b/session_redis/session.py @@ -1,4 +1,4 @@ -# Copyright 2016-2019 Camptocamp SA +# Copyright 2016-2024 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) import json