From 46f4fdb5f358be3614e0283e1d56083cf86d6bce Mon Sep 17 00:00:00 2001 From: okozachenko Date: Thu, 2 Feb 2023 01:50:22 +1100 Subject: [PATCH] Update mysql client version to 1.4.0 From yoga, django 3.x is used and it requires mysqlclient 1.4.0 or newer. Change-Id: If2090b204122c623bdf3211ae98a9b855fc5b259 --- horizon/Chart.yaml | 2 +- horizon/templates/bin/_manage.py.tpl | 2 +- releasenotes/notes/horizon.yaml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/horizon/Chart.yaml b/horizon/Chart.yaml index bbaf32cf65..d3297fb052 100644 --- a/horizon/Chart.yaml +++ b/horizon/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Horizon name: horizon -version: 0.3.1 +version: 0.3.2 home: https://docs.openstack.org/horizon/latest/ icon: https://www.openstack.org/themes/openstack/images/project-mascots/Horizon/OpenStack_Project_Horizon_vertical.png sources: diff --git a/horizon/templates/bin/_manage.py.tpl b/horizon/templates/bin/_manage.py.tpl index a49cffe3f4..105a32c8c8 100644 --- a/horizon/templates/bin/_manage.py.tpl +++ b/horizon/templates/bin/_manage.py.tpl @@ -23,7 +23,7 @@ import os import sys import pymysql -pymysql.version_info = (1, 3, 13, "final", 0) +pymysql.version_info = (1, 4, 0, "final", 0) pymysql.install_as_MySQLdb() from django.core.management import execute_from_command_line diff --git a/releasenotes/notes/horizon.yaml b/releasenotes/notes/horizon.yaml index 60809d850f..caa0bcc3b5 100644 --- a/releasenotes/notes/horizon.yaml +++ b/releasenotes/notes/horizon.yaml @@ -38,4 +38,5 @@ horizon: - 0.2.26 Support SSL identity endpoint - 0.3.0 Remove support for Train and Ussuri - 0.3.1 Fix container infra api version in values + - 0.3.2 Update mysql client version to 1.4.0 ...