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 f3d06b1 Bugfix: Check next run exists before reading data interval
(#19307)
new 848ac3f Bump version to 2.2.2
new 8666bf0 Add explicit session parameter in PoolSlotsAvailableDep
(#18875)
new 46bf6b4 Fix typo in ``tutorial.rst`` (#18983)
new 901901a Use ``execution_date`` to check for existing ``DagRun`` for
``TriggerDagRunOperator`` (#18968)
new 9a60e62 Add Note to SLA regarding schedule_interval (#19173)
new 7a3212d Fix Toggle Wrap on DAG code page (#19211)
new d291f76 sqlite_default has been hard-coded to /tmp, usegettempdir
instead, (#19255)
new 7a14324 Fix hidden tooltip position (#19261)
new 44caa7e Fix MySQL db migration with default encoding/collation
(#19268)
new 06c1cea Bugfix: Check next run exists before reading data interval
(#19307)
new f9b48bb Switch default Python version to 3.7 (#19317)
new a0934d1 Clarify dag-not-found error message (#19338)
new fbb7fbd Improve Kubernetes Executor docs (#19339)
new ee532d9 Docs: Fix typo in ``dag-run.rst`` (#19340)
new 34768a8 Fix message on "Mark as" confirmation page (#19363)
new 9b01467 Only mark SchedulerJobs as failed, not any jobs (#19375)
new 8151307 Fix downgrade for a DB Migration (#19390)
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 (f3d06b1)
\
N -- N -- N refs/heads/v2-2-test (8151307)
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 17 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:
README.md | 14 +-
airflow/api/common/experimental/trigger_dag.py | 6 +-
airflow/dag_processing/processor.py | 25 ++--
airflow/jobs/scheduler_job.py | 1 +
.../7b2661a43ba3_taskinstance_keyed_to_dagrun.py | 9 +-
airflow/models/dagrun.py | 65 +++++---
airflow/ti_deps/deps/pool_slots_available_dep.py | 2 +-
airflow/utils/cli.py | 6 +-
airflow/utils/db.py | 3 +-
airflow/www/static/css/main.css | 9 ++
airflow/www/static/js/dag_code.js | 12 +-
airflow/www/templates/airflow/_messages.html | 4 +-
airflow/www/templates/airflow/dags.html | 10 +-
airflow/www/templates/airflow/main.html | 6 +-
airflow/www/templates/appbuilder/flash.html | 2 +-
docs/apache-airflow/concepts/tasks.rst | 4 +
docs/apache-airflow/dag-run.rst | 4 +-
docs/apache-airflow/executor/kubernetes.rst | 166 +++++++++++++--------
docs/apache-airflow/tutorial.rst | 2 +-
docs/spelling_wordlist.txt | 1 +
scripts/ci/libraries/_initialization.sh | 2 +-
setup.py | 2 +-
tests/api/common/experimental/test_trigger_dag.py | 6 +-
tests/jobs/test_local_task_job.py | 2 +-
tests/jobs/test_scheduler_job.py | 31 ++++
tests/models/test_dagrun.py | 23 +++
26 files changed, 284 insertions(+), 133 deletions(-)