This is an automated email from the ASF dual-hosted git repository.
jedcunningham pushed a change to branch v2-4-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
from 0bcdba0e4e Update Release Note for 2.4.0
new 8a7ee21522 changing to task decorator in docs from classic operator
use (#25711)
new e0607211a7 Don't update backfill run from the scheduler (#26342)
new 0fdff14161 Update docs: zip-like effect is now possible in task
mapping (#26435)
new 69274caf61 DAG Deps extends `base_template` (#26439)
new 92eaa09d1f Fix proper joining of the path for logs retrieved from
celery workers (#26493)
new aa4f1c4028 Fix example_datasets dag names (#26495)
new 2297b6b91b ExecutorConfigType should be cacheable (#26498)
new 0aba4bd20a Document the non-sensitive-only option for expose_config
(#26507)
new 6c90cea1ab Fix deadlock when mapped task with removed upstream is
rerun (#26518)
new c589181247 fix typo in code sample (#26538)
new 1723b86a8d fix WSGI root app (#26549)
new 5ae2ae531b Correctly set json_provider_class on Flask app so it uses
our encoder (#26554)
new 329f706d9e Add unit test for log retrieval url (#26603)
The 13 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:
airflow/config_templates/config.yml | 4 +-
airflow/config_templates/default_airflow.cfg | 4 +-
airflow/example_dags/example_datasets.py | 20 +--
airflow/jobs/scheduler_job.py | 9 +-
airflow/ti_deps/deps/trigger_rule_dep.py | 18 +-
airflow/utils/json.py | 20 ++-
airflow/utils/log/file_task_handler.py | 12 +-
airflow/utils/sqlalchemy.py | 2 +
airflow/www/app.py | 5 +-
airflow/www/extensions/init_wsgi_middlewares.py | 16 +-
.../www/templates/airflow/dag_dependencies.html | 2 +-
airflow/www/utils.py | 10 +-
airflow/www/views.py | 33 ++--
docs/apache-airflow/concepts/dags.rst | 32 ++--
.../concepts/dynamic-task-mapping.rst | 4 +-
docs/apache-airflow/concepts/operators.rst | 12 +-
tests/jobs/test_scheduler_job.py | 43 +++++
tests/models/test_dagrun.py | 40 +++++
tests/models/test_taskinstance.py | 178 +++++++++++++++----
tests/ti_deps/deps/test_trigger_rule_dep.py | 195 ++++++++++++++++++++-
tests/utils/test_log_handlers.py | 13 ++
tests/www/test_app.py | 10 ++
22 files changed, 575 insertions(+), 107 deletions(-)