You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ep...@apache.org on 2022/03/23 19:52:40 UTC

[airflow] branch v2-2-test updated (62c8a69 -> f17ace1)

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

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


 discard 62c8a69  Add 2.2.5 to CHANGELOG.txt and UPDATING.md
 discard 08fa7ad  Fix Tasks getting stuck in scheduled state (#19747)
 discard 443d08c  Reduce DB load incurred by Stale DAG deactivation (#21399)
     add 33c1fc5  Fix Tasks getting stuck in scheduled state (#19747)
     add 372ae59  Fix: Do not render undefined graph edges (#19684)
     add fd3b4e9  Truncate stack trace to DAG user code for exceptions raised during execution (#20731)
     add 0fd0b1b  Change the storage of frame to use threadLocal rather than Dict (#21993)
     add 3512a98  extends typing-extensions to be installed with python 3.8+ #21566 (#21567)
     add b3f0203  Dispose unused connection pool (#21565)
     add 4dbbf36  Fix trigger dag redirect from task instance log view (#21239)
     add 35dda7d  Update `ExternalTaskSensorLink` to handle templated `external_dag_id` (#21192)
     add 7b4ffa6  Ensure clear_task_instances sets valid run state (#21116)
     add 94ac81d  Reduce DB load incurred by Stale DAG deactivation (#21399)
     add 0ff71fe  Update version added for `deactivate_stale_dags_interval` config (#22478)
     add f17ace1  Add 2.2.5 to CHANGELOG.txt and UPDATING.md

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   (62c8a69)
            \
             N -- N -- N   refs/heads/v2-2-test (f17ace1)

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.

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.txt                                      |  17 +++-
 airflow/cli/commands/task_command.py               |   4 +-
 airflow/models/taskinstance.py                     | 109 +++++++++++++++------
 airflow/sensors/external_task.py                   |   2 +
 airflow/settings.py                                |   6 ++
 airflow/task/task_runner/standard_task_runner.py   |  18 ++--
 airflow/utils/state.py                             |   5 +-
 airflow/www/static/js/graph.js                     |   2 +-
 airflow/www/views.py                               |   2 +-
 setup.cfg                                          |   4 +-
 tests/dag_processing/test_manager.py               |   2 +-
 tests/models/test_taskinstance.py                  |  23 +++++
 tests/sensors/test_external_task_sensor.py         |   9 +-
 .../task/task_runner/test_standard_task_runner.py  |  24 ++++-
 14 files changed, 176 insertions(+), 51 deletions(-)