You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/02/08 23:35:59 UTC

[airflow] branch v1-10-stable updated: Release ``upgrade_check`` 1.2.0 (#14140)

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

kaxilnaik pushed a commit to branch v1-10-stable
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v1-10-stable by this push:
     new bbaa6cd  Release ``upgrade_check`` 1.2.0 (#14140)
bbaa6cd is described below

commit bbaa6cdee889d3cceb5d35cb30c540ecd69aa7c9
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Mon Feb 8 23:35:33 2021 +0000

    Release ``upgrade_check`` 1.2.0 (#14140)
    
    - Added Changelog
    - Updated Version
---
 airflow/upgrade/README.md  | 18 +++++++++++++++++-
 airflow/upgrade/version.py |  2 +-
 2 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/airflow/upgrade/README.md b/airflow/upgrade/README.md
index 6a71af4..ee0ecba 100644
--- a/airflow/upgrade/README.md
+++ b/airflow/upgrade/README.md
@@ -49,11 +49,12 @@ For example:
 ```
 ============================================= STATUS =============================================
 
+Check for latest versions of apache-airflow and checker.................................SUCCESS
 Legacy UI is deprecated by default......................................................SUCCESS
 Users must set a kubernetes.pod_template_file value.....................................FAIL
 Changes in import paths of hooks, operators, sensors and others.........................FAIL
 Remove airflow.AirflowMacroPlugin class.................................................SUCCESS
-Jinja Template Variables cannot be undefined............................................SUCCESS
+Check versions of PostgreSQL, MySQL, and SQLite to ease upgrade to Airflow 2.0..........SUCCESS
 Fernet is enabled by default............................................................FAIL
 Logging configuration has been moved to new section.....................................SUCCESS
 Connection.conn_id is not unique........................................................SUCCESS
@@ -103,3 +104,18 @@ custom_rules:
   - path.to.upgrade_module.VeryCustomCheckClass
   - path.to.upgrade_module.VeryCustomCheckClass2
 ```
+
+## Changelog
+
+### 1.2.0
+
+- Add upgrade check option to list checks (#13392)
+- Add clearer exception for read failures in macro plugin upgrade (#13371)
+- Treat default value in ``HostnameCallable`` rule as good one (#13670)
+- Created ``CustomExecutorsRequireFullPathRule`` class (#13678)
+- Remove ``UndefinedJinjaVariableRule``
+- Created rule for ``SparkJDBCOperator`` class ``conn_id`` (#13798)
+- Created ``DatabaseVersionCheckRule`` class (#13955)
+- Add Version command for Upgrade Check (#12929)
+- Use Tabular Format for the List of Upgrade Check Rules (#14139)
+- Fix broken ``airflow upgrade_check`` command (#14137)
diff --git a/airflow/upgrade/version.py b/airflow/upgrade/version.py
index 59cec85..7412552 100644
--- a/airflow/upgrade/version.py
+++ b/airflow/upgrade/version.py
@@ -15,4 +15,4 @@
 # specific language governing permissions and limitations
 # under the License.
 
-version = "1.1.0"
+version = "1.2.0"