You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by je...@apache.org on 2021/11/05 23:32:26 UTC

[airflow] 02/02: Add 2.2.2 to `CHANGELOG` and `UPDATING`

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

jedcunningham pushed a commit to branch v2-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 514e999703fc7a1e3b83b6f1557697898f9201fc
Author: Jed Cunningham <66...@users.noreply.github.com>
AuthorDate: Fri Nov 5 17:31:09 2021 -0600

    Add 2.2.2 to `CHANGELOG` and `UPDATING`
---
 CHANGELOG.txt | 34 ++++++++++++++++++++++++++++++++++
 UPDATING.md   |  5 +++++
 2 files changed, 39 insertions(+)

diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index a4d0754..1dc4f77 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,37 @@
+Airflow 2.2.1, 2021-11-09
+-------------------------
+
+Bug Fixes
+"""""""""
+
+- Fix bug when checking for existence of a Variable (#19395)
+- Fix Serialization when``relativedelta`` is passed as ``schedule_interval``  (#19418)
+- Fix moving of dangling TaskInstance rows for SQL Server (#19425)
+- Fix task instance modal in gantt view (#19258)
+- Fix serialization of Params with set data type (#19267)
+- Check if job object is None before calling .is_alive() (#19380)
+- Task should fail immediately when pod is unprocessable (#19359)
+- Fix downgrade for a DB Migration (#19390)
+- Only mark SchedulerJobs as failed, not any jobs (#19375)
+- Fix message on "Mark as" confirmation page (#19363)
+- Bugfix: Check next run exists before reading data interval (#19307)
+- Fix MySQL db migration with default encoding/collation (#19268)
+- Fix hidden tooltip position (#19261)
+- sqlite_default has been hard-coded to /tmp, usegettempdir instead, (#19255)
+- Fix Toggle Wrap on DAG code page (#19211)
+- Clarify dag-not-found error message (#19338)
+- Add Note to SLA regarding schedule_interval (#19173)
+- Use ``execution_date`` to check for existing ``DagRun`` for ``TriggerDagRunOperator`` (#18968)
+- Add explicit session parameter in PoolSlotsAvailableDep (#18875)
+
+Doc only changes
+""""""""""""""""
+
+- Add missing parameter documentation for "timetable" (#19282)
+- Docs: Fix typo in ``dag-run.rst`` (#19340)
+- Improve Kubernetes Executor docs (#19339)
+- Fix typo in ``tutorial.rst`` (#18983)
+
 Airflow 2.2.1, 2021-10-29
 -------------------------
 
diff --git a/UPDATING.md b/UPDATING.md
index 7f0c83e..12b12e3 100644
--- a/UPDATING.md
+++ b/UPDATING.md
@@ -27,6 +27,7 @@ assists users migrating to a new version.
 **Table of contents**
 
 - [Main](#main)
+- [Airflow 2.2.2](#airflow-222)
 - [Airflow 2.2.1](#airflow-221)
 - [Airflow 2.2.0](#airflow-220)
 - [Airflow 2.1.4](#airflow-214)
@@ -78,6 +79,10 @@ https://developers.google.com/style/inclusive-documentation
 
 -->
 
+## Airflow 2.2.2
+
+No breaking changes.
+
 ## Airflow 2.2.1
 
 ### ``Param``'s default value for ``default`` removed