You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/09/18 15:39:40 UTC

[airflow] branch main updated: Remove 2017-latest from supported MSSQL versions (#18345)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new a54f8d6  Remove 2017-latest from supported MSSQL versions (#18345)
a54f8d6 is described below

commit a54f8d6b0ce9fd2a2387ccbc11f543d86212ca35
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Sat Sep 18 17:39:17 2021 +0200

    Remove 2017-latest from supported MSSQL versions (#18345)
    
    Seems that the 2017-latest version of MSSQL has some problems with
    locking and continuously fails in `main`. Actually we do not have
    to support 2017 version, it's perfectly ok to support only
    2019 version as we had not made any promise yet to our users.
---
 BREEZE.rst                              | 4 ++--
 README.md                               | 2 +-
 breeze-complete                         | 2 +-
 scripts/ci/libraries/_initialization.sh | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/BREEZE.rst b/BREEZE.rst
index 7408982..891454d 100644
--- a/BREEZE.rst
+++ b/BREEZE.rst
@@ -1834,7 +1834,7 @@ This is the current syntax for  `./breeze <./breeze>`_:
   --mssql-version MSSQL_VERSION
           MSSql version used. One of:
 
-                 2017-latest 2019-latest
+                 2019-latest
 
   -v, --verbose
           Show verbose information about executed docker, kind, kubectl, helm commands. Useful for
@@ -2308,7 +2308,7 @@ This is the current syntax for  `./breeze <./breeze>`_:
   --mssql-version MSSQL_VERSION
           MSSql version used. One of:
 
-                 2017-latest 2019-latest
+                 2019-latest
 
   ****************************************************************************************************
    Enable production image
diff --git a/README.md b/README.md
index 4de2128..c9d6625 100644
--- a/README.md
+++ b/README.md
@@ -89,7 +89,7 @@ Apache Airflow is tested with:
 | PostgreSQL           | 9.6, 10, 11, 12, 13       | 9.6, 10, 11, 12, 13      |
 | MySQL                | 5.7, 8                    | 5.7, 8                   |
 | SQLite               | 3.15.0+                   | 3.15.0+                  |
-| MSSQL(Experimental)  | 2017, 2019                |                          |
+| MSSQL(Experimental)  | 2019                      |                          |
 
 **Note**: MySQL 5.x versions are unable to or have limitations with
 running multiple schedulers -- please see the [Scheduler docs](https://airflow.apache.org/docs/apache-airflow/stable/scheduler.html).
diff --git a/breeze-complete b/breeze-complete
index b7e00b7..fb0eb96 100644
--- a/breeze-complete
+++ b/breeze-complete
@@ -32,7 +32,7 @@ _breeze_allowed_kubernetes_versions="v1.20.2 v1.19.7 v1.18.15"
 _breeze_allowed_helm_versions="v3.6.3"
 _breeze_allowed_kind_versions="v0.11.1"
 _breeze_allowed_mysql_versions="5.7 8"
-_breeze_allowed_mssql_versions="2017-latest 2019-latest"
+_breeze_allowed_mssql_versions="2019-latest"
 _breeze_allowed_postgres_versions="9.6 10 11 12 13"
 _breeze_allowed_kind_operations="start stop restart status deploy test shell k9s"
 _breeze_allowed_executors="KubernetesExecutor CeleryExecutor LocalExecutor CeleryKubernetesExecutor"
diff --git a/scripts/ci/libraries/_initialization.sh b/scripts/ci/libraries/_initialization.sh
index f9ad3c5..569ac20 100644
--- a/scripts/ci/libraries/_initialization.sh
+++ b/scripts/ci/libraries/_initialization.sh
@@ -123,7 +123,7 @@ function initialization::initialize_base_variables() {
     export CURRENT_MYSQL_VERSIONS
 
     # Currently supported versions of MSSQL
-    CURRENT_MSSQL_VERSIONS+=("2017-latest" "2019-latest")
+    CURRENT_MSSQL_VERSIONS+=("2019-latest")
     export CURRENT_MSSQL_VERSIONS
 
     BACKEND=${BACKEND:="sqlite"}