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/08 20:05:56 UTC

[airflow] branch v2-2-test updated (514e999 -> 566b410)

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

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


 discard 514e999  Add 2.2.2 to `CHANGELOG` and `UPDATING`
     new e9dffdd  FAB still requires WTForms < 3.0 (#19466)
     new 566b410  Add 2.2.2 to `CHANGELOG` and `UPDATING`

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (514e999)
            \
             N -- N -- N   refs/heads/v2-2-test (566b410)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.txt | 3 ++-
 setup.cfg     | 2 ++
 2 files changed, 4 insertions(+), 1 deletion(-)

[airflow] 01/02: FAB still requires WTForms < 3.0 (#19466)

Posted by je...@apache.org.
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 e9dffdd1ce2920f5b2a8c9d4a9b1cc8b8025ae92
Author: Ash Berlin-Taylor <as...@firemirror.com>
AuthorDate: Mon Nov 8 13:35:37 2021 +0000

    FAB still requires WTForms < 3.0 (#19466)
    
    (cherry picked from commit aa15cba0d3a8899bdd767a42668529e25d952cff)
---
 setup.cfg | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/setup.cfg b/setup.cfg
index 2978518..e234a04 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -158,6 +158,8 @@ install_requires =
     typing-extensions>=3.7.4;python_version<"3.8"
     unicodecsv>=0.14.1
     werkzeug~=1.0, >=1.0.1
+    # SQLA still imports the compat
+    wtforms<3.0.0
 
 [options.packages.find]
 include =

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

Posted by je...@apache.org.
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 566b410498e2e84667b4533ad891190e0857c6ff
Author: Jed Cunningham <66...@users.noreply.github.com>
AuthorDate: Mon Nov 8 12:56:00 2021 -0700

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

diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index a4d0754..593563d 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,38 @@
+Airflow 2.2.1, 2021-11-11
+-------------------------
+
+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)
+- FAB still requires WTForms < 3.0 (#19466)
+
+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