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/12/14 22:51:23 UTC

[airflow] branch v2-2-stable updated (db8d78f -> 06c82e1)

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

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


    from db8d78f  Add changelog for 2.2.3rc1
     add 1d9f2aa  Limit httpx to <0.20.0 (#20218)
     add 963373a  Switch default version of Python to 3.7 (#18922)
     add a4c8201  Replaced 2.3.3 in entrypoint docs
     add 00652ec  Fix failing main. (#20094)
     add 1b958ca  Fix race condition when starting DagProcessorAgent (#19935)
     add 7dd9923  Move setgid as the first command executed in forked task runner (#20040)
     add 20ac7c1  Fix flaky on_kill (#20054)
     add 9feebd3  Updating TaskGroup unit test to handle new tooltip (#19089)
     add 69348ca  Move away from legacy importlib.resources API (#19091)
     add 205332e  Exclude snowflake-sqlalchemy v1.2.5 (#20245)
     add eb799ba  Lazy Jinja2 context (#20217)
     add 4989eea  Warn without tracebacks when example_dags are missing deps (#20295)
     add 06c82e1  Add changelog for 2.2.3rc2

No new revisions were added by this update.

Summary of changes:
 BREEZE.rst                                         |  14 +-
 CHANGELOG.txt                                      |   9 +-
 README.md                                          |  10 +-
 airflow/dag_processing/manager.py                  |  10 +
 .../example_dags/example_kubernetes_executor.py    | 363 +++++++++++----------
 airflow/example_dags/example_python_operator.py    |  51 +--
 .../tutorial_taskflow_api_etl_virtualenv.py        | 112 ++++---
 airflow/models/baseoperator.py                     |  25 +-
 airflow/models/param.py                            |   3 +-
 airflow/models/xcom_arg.py                         |   5 +-
 airflow/providers_manager.py                       |  20 +-
 airflow/task/task_runner/standard_task_runner.py   |  10 +-
 airflow/ti_deps/deps/trigger_rule_dep.py           |   2 +-
 airflow/utils/context.py                           |  49 ++-
 airflow/utils/helpers.py                           |  51 ++-
 airflow/utils/log/file_task_handler.py             |  21 +-
 airflow/utils/process_utils.py                     |  55 +++-
 breeze-complete                                    |   2 +-
 dev/REFRESHING_CI_CACHE.md                         |   4 +-
 docs/docker-stack/entrypoint.rst                   |   2 +-
 scripts/ci/libraries/_initialization.sh            |   2 +-
 setup.cfg                                          |   5 +-
 setup.py                                           |   5 +-
 tests/bats/breeze/test_breeze_complete.bats        |   8 +-
 tests/conftest.py                                  |   1 +
 tests/core/test_providers_manager.py               |  19 +-
 tests/dag_processing/test_processor.py             |  50 +++
 tests/dags/test_on_kill.py                         |  10 +-
 tests/models/test_taskinstance.py                  |  21 ++
 .../task/task_runner/test_standard_task_runner.py  |  71 ++--
 tests/utils/test_task_group.py                     |   6 +-
 tests/www/views/test_views_rendered.py             |   2 +-
 32 files changed, 622 insertions(+), 396 deletions(-)