You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/09/10 21:55:10 UTC

[airflow] branch v2-2-test updated (e6cb2f7 -> db5ac64)

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

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


    from e6cb2f7  ECSOperator returns last logs when ECS task fails (#17209)
     add b8926ee  Add a note about no back-compat guarantees for experimental features (#18139)
     add 0e3b06b  Mark passing pre/post execute callbacks to operators as experimental. (#18140)
     add 68d99bc  [Airflow 16364] Add conn_timeout and cmd_timeout params to SSHOperator; add conn_timeout param to SSHHook (#17236)
     add 0df31cd  Change from dynamic date to fixed date in examples (#18071)
     add 3d4bfdc  Add missing __init__.py files for some test packages (#18142)
     add 975a4e0  Fix quarentine tests affected by AIP-39 (#18141)
     add d491afb  Doc: Minor wording tweaks (#18148)
     add 42c835f  Fix typo in StandardTaskRunning log message (#18149)
     add 491d818  Fix bad repository name in pre-commit config (#18151)
     add 9e13e45  Fixes warm shutdown for celery worker. (#18068)
     add 476ae0e  Fixing Vault AppRole authentication with CONN_URI (#18064)
     add 692d744  Fixed log view for deferred tasks (#18154)
     add db5ac64  Reorder migrations to be compatible with 2.1.4 (#18153)

No new revisions were added by this update.

Summary of changes:
 .pre-commit-config.yaml                            |  10 +-
 BREEZE.rst                                         |  10 +-
 Dockerfile                                         |   1 +
 STATIC_CODE_CHECKS.rst                             |   2 +-
 airflow/example_dags/example_bash_operator.py      |   7 +-
 .../example_branch_datetime_operator.py            |   7 +-
 .../example_branch_day_of_week_operator.py         |   6 +-
 airflow/example_dags/example_branch_labels.py      |   7 +-
 airflow/example_dags/example_branch_operator.py    |   6 +-
 .../example_branch_python_dop_operator_3.py        |   6 +-
 airflow/example_dags/example_complex.py            |   6 +-
 airflow/example_dags/example_dag_decorator.py      |   5 +-
 .../example_dags/example_kubernetes_executor.py    |   6 +-
 .../example_kubernetes_executor_config.py          |   5 +-
 airflow/example_dags/example_latest_only.py        |   5 +-
 .../example_latest_only_with_trigger.py            |   5 +-
 airflow/example_dags/example_nested_branch_dag.py  |   8 +-
 .../example_passing_params_via_test_command.py     |   7 +-
 airflow/example_dags/example_python_operator.py    |   6 +-
 .../example_dags/example_short_circuit_operator.py |   7 +-
 airflow/example_dags/example_skip_dag.py           |   5 +-
 airflow/example_dags/example_task_group.py         |   6 +-
 .../example_dags/example_task_group_decorator.py   |   7 +-
 .../example_dags/example_trigger_controller_dag.py |   7 +-
 airflow/example_dags/example_trigger_target_dag.py |   6 +-
 airflow/example_dags/example_xcom.py               |   7 +-
 airflow/example_dags/example_xcomargs.py           |   9 +-
 airflow/example_dags/subdags/subdag.py             |   6 +-
 airflow/example_dags/test_utils.py                 |   1 -
 airflow/example_dags/tutorial.py                   |   6 +-
 airflow/example_dags/tutorial_etl_dag.py           |   5 +-
 airflow/example_dags/tutorial_taskflow_api_etl.py  |   4 +-
 .../tutorial_taskflow_api_etl_virtualenv.py        |   5 +-
 airflow/jobs/scheduler_job.py                      |   6 +-
 ...5d12_add_max_active_runs_column_to_dagmodel_.py |   4 +-
 ...ta_interval_start_end_to_dagmodel_and_dagrun.py |   2 +-
 .../83f031fd9f1c_improve_mssql_compatibility.py    |   4 +-
 airflow/models/baseoperator.py                     |   4 +
 .../providers/google/config_templates}/__init__.py |   0
 airflow/providers/hashicorp/hooks/vault.py         |  26 ++-
 airflow/providers/ssh/hooks/ssh.py                 |  40 +++-
 airflow/providers/ssh/operators/ssh.py             |  37 +++-
 airflow/task/task_runner/standard_task_runner.py   |   2 +-
 airflow/www/views.py                               |   2 +-
 breeze-complete                                    |   2 +-
 chart/templates/workers/worker-deployment.yaml     |   3 +
 .../connections/ssh.rst                            |   7 +-
 docs/apache-airflow/migrations-ref.rst             |  16 +-
 docs/apache-airflow/release-process.rst            |  17 +-
 docs/apache-airflow/start/docker.rst               |   6 +-
 docs/conf.py                                       |   1 +
 docs/docker-stack/entrypoint.rst                   |  41 ++++
 ...t_check_providers_subpackages_all_have_init.py} |  20 +-
 tests/cli/commands/test_task_command.py            |  24 +--
 tests/executors/test_celery_executor.py            |   2 +-
 tests/jobs/test_scheduler_job.py                   | 155 ++++++++-------
 .../aws/config_templates}/__init__.py              |   0
 .../aws/infrastructure}/__init__.py                |   0
 .../example_s3_to_redshift}/__init__.py            |   0
 .../hooks => amazon/aws/secrets}/__init__.py       |   0
 .../hooks => google/ads/operators}/__init__.py     |   0
 tests/providers/hashicorp/hooks/test_vault.py      |  43 +++-
 .../{zendesk => jenkins}/hooks/__init__.py         |   0
 .../hooks => microsoft/azure/secrets}/__init__.py  |   0
 .../mssql/operators}/__init__.py                   |   0
 .../providers/{zendesk/hooks => odbc}/__init__.py  |   0
 .../providers/{zendesk => odbc}/hooks/__init__.py  |   0
 .../{zendesk => plexus}/hooks/__init__.py          |   0
 tests/providers/ssh/hooks/test_ssh.py              | 221 ++++++++++++++++++++-
 tests/providers/ssh/operators/test_ssh.py          |  28 ++-
 .../{zendesk/hooks => tableau}/__init__.py         |   0
 71 files changed, 665 insertions(+), 244 deletions(-)
 copy {tests/providers/zendesk/hooks => airflow/providers/google/config_templates}/__init__.py (100%)
 rename scripts/ci/pre_commit/{pre_commit_check_providers_example_dag_init.py => pre_commit_check_providers_subpackages_all_have_init.py} (70%)
 copy tests/providers/{zendesk/hooks => amazon/aws/config_templates}/__init__.py (100%)
 copy tests/providers/{zendesk/hooks => amazon/aws/infrastructure}/__init__.py (100%)
 copy tests/providers/{zendesk/hooks => amazon/aws/infrastructure/example_s3_to_redshift}/__init__.py (100%)
 copy tests/providers/{zendesk/hooks => amazon/aws/secrets}/__init__.py (100%)
 copy tests/providers/{zendesk/hooks => google/ads/operators}/__init__.py (100%)
 copy tests/providers/{zendesk => jenkins}/hooks/__init__.py (100%)
 copy tests/providers/{zendesk/hooks => microsoft/azure/secrets}/__init__.py (100%)
 copy tests/providers/{zendesk/hooks => microsoft/mssql/operators}/__init__.py (100%)
 copy tests/providers/{zendesk/hooks => odbc}/__init__.py (100%)
 copy tests/providers/{zendesk => odbc}/hooks/__init__.py (100%)
 copy tests/providers/{zendesk => plexus}/hooks/__init__.py (100%)
 copy tests/providers/{zendesk/hooks => tableau}/__init__.py (100%)