You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by jh...@apache.org on 2021/06/04 18:37:13 UTC

[airflow] branch v2-1-test updated (bdf9bc2 -> 779811e)

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

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


    from bdf9bc2  Fix dag.clear() to set multiple dags to running when necessary (#15382)
     add 589be33  Fix dag.clear() to set multiple dags to running when necessary (#15382)
     add 8dcbdcd  Fix Celery executor getting stuck randomly because of reset_signals in multiprocessing (#15989)
     add 79c99e9  Fix auto-refresh in tree view When webserver ui is not in ``/`` (#16018)
     add ec03f81  Restores apply_defaults import in base_sensor_operator (#16040)
     add 554a13d  Don't die when masking `log.exception` when there is no exception (#16047)
     add 47ca826  Ensure that we don't try to mask empty string in logs (#16057)
     add fcf95fe  Parse recently modified files even if just parsed (#16075)
     add 3c169fb  Fix apply defaults for task decorator (#16085)
     add 194762f  Fixes problem where conf variable was used before initialization (#16088)
     add 779811e  Fill the "job_id" field for `airflow task run` without `--local`/`--raw` for KubeExecutor (#16108)

No new revisions were added by this update.

Summary of changes:
 UPDATING.md                            |  8 +++++
 airflow/cli/commands/task_command.py   |  1 +
 airflow/configuration.py               |  4 +--
 airflow/decorators/base.py             | 14 ++++++++
 airflow/models/baseoperator.py         |  6 ++++
 airflow/sensors/base.py                |  5 +++
 airflow/utils/dag_processing.py        |  8 ++++-
 airflow/utils/log/secrets_masker.py    |  4 ++-
 airflow/www/static/js/tree.js          |  3 +-
 airflow/www/templates/airflow/dag.html |  1 +
 tests/decorators/test_python.py        | 16 +++++++++
 tests/utils/log/test_secrets_masker.py | 17 ++++++++++
 tests/utils/test_dag_processing.py     | 60 ++++++++++++++++++++++++++++++++++
 tests/www/views/test_views.py          |  3 +-
 14 files changed, 143 insertions(+), 7 deletions(-)