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/01/27 23:02:14 UTC

[airflow] branch v2-0-test updated (f156d14 -> d0f2500)

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

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


    from f156d14  Add Changelog for 2.0.1
     add 37ba9c8  Update information about branching strategy vs. production images (#13813)
     add 55aa29f  Upgrade azure blob to v12 (#12188)
     add be41936  Quarantine test that often fails (same as alredy quarantined no pid) (#13845)
     add d7427f6  Fix PyPI spelling (#13864)
     add ed463b8  Improve BREEZE.rst docs (#13869)
     add d254053  Fix link to Apache Airflow docs in webserver (#13250)
     add fefcb7c  Fix TaskNotFound in log endpoint (#13872)
     add 53c8977  Added Aviva Plc to INTHEWILD.md (#13875)
     add 4217ede  Add extra field to get_connnection REST endpoint (#13885)
     add 1650fa2  Make Smart Sensors DB Migration idempotent (#13892)
     add 149d5ea  Clarifies differences between extras and provider packages (#13810)
     add 79f3c30  Fix race condition when using Dynamic DAGs (#13893)
     add e2fba14  Fix to ensure 100vh min plays nicely w/ Linux+Chrome (#13857)
     add 93e2438  Improve the error when DAG does not exist when running dag pause command (#13900)
     add 2fd7aa9  Fix typo in CLI error (#13913)
     add 859d5a6  Fix db shell for sqlite (#13907)
     add ed54803  Add quick start for Airflow on Docker (#13660)
     add e4722d3  Only compare updated time when Serialized DAG exists (#13899)
     add f5beae2  Fix docker-compose command to initialize the environment (#13914)
     add e8907ee  Fix dag run type enum query for mysqldb driver (#13278)
     add d0f2500  Add authentication to lineage endpoint for experimental API (#13870)

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   2 +-
 .pre-commit-config.yaml                            |   2 +-
 BREEZE.rst                                         |  26 +-
 CHANGELOG.txt                                      |   4 +-
 CONTRIBUTING.rst                                   |  36 ++-
 IMAGES.rst                                         |   2 +-
 INTHEWILD.md                                       |   1 +
 .../api_connexion/endpoints/connection_endpoint.py |   3 +-
 airflow/api_connexion/endpoints/log_endpoint.py    |   6 +-
 airflow/cli/commands/dag_command.py                |   9 +-
 airflow/cli/commands/db_command.py                 |   3 +-
 airflow/jobs/scheduler_job.py                      |  29 +-
 .../e38be357a868_update_schema_for_smart_sensor.py |  12 +-
 airflow/models/dag.py                              |  18 +-
 airflow/models/dagbag.py                           |   6 +-
 airflow/providers/microsoft/azure/hooks/wasb.py    | 262 ++++++++++++++----
 airflow/utils/docs.py                              |   2 +-
 airflow/utils/types.py                             |   3 +
 airflow/www/api/experimental/endpoints.py          |   1 +
 airflow/www/static/css/main.css                    |   1 +
 breeze                                             |   2 +-
 .../connections/aws.rst                            |   4 +-
 docs/apache-airflow/concepts.rst                   |  45 ++-
 docs/apache-airflow/extra-packages-ref.rst         | 103 ++++---
 docs/apache-airflow/howto/index.rst                |   2 +-
 docs/apache-airflow/index.rst                      |   2 +-
 docs/apache-airflow/installation.rst               |  41 ++-
 docs/apache-airflow/modules_management.rst         |   2 +-
 docs/apache-airflow/production-deployment.rst      |  32 ++-
 docs/apache-airflow/redirects.txt                  |   3 +
 docs/apache-airflow/start/.gitignore               |   4 +
 .../start/airflow.sh}                              |  13 +-
 docs/apache-airflow/start/docker-compose.yaml      | 134 +++++++++
 docs/apache-airflow/start/docker.rst               | 170 ++++++++++++
 .../operators => apache-airflow/start}/index.rst   |  12 +-
 docs/apache-airflow/{start.rst => start/local.rst} |  41 +--
 docs/apache-airflow/upgrading-to-2.rst             |   4 +-
 docs/conf.py                                       |  16 +-
 docs/exts/docs_build/lint_checks.py                |  66 ++++-
 docs/spelling_wordlist.txt                         |   1 -
 scripts/docker/install_airflow.sh                  |   6 +
 scripts/in_container/_in_container_utils.sh        |   3 +-
 setup.py                                           |   2 +-
 .../endpoints/test_connection_endpoint.py          |   2 +
 tests/api_connexion/endpoints/test_log_endpoint.py |  28 ++
 tests/cli/commands/test_webserver_command.py       |   1 +
 tests/jobs/test_scheduler_job.py                   |  35 +++
 tests/models/test_dag.py                           |   4 +-
 tests/providers/microsoft/azure/hooks/test_wasb.py | 308 +++++++++++++--------
 .../microsoft/azure/log/test_wasb_task_handler.py  |  19 +-
 tests/utils/test_docs.py                           |  12 +-
 tests/utils/test_types.py                          |  59 ++++
 52 files changed, 1227 insertions(+), 377 deletions(-)
 create mode 100644 docs/apache-airflow/start/.gitignore
 copy docs/{list-roles.sh => apache-airflow/start/airflow.sh} (80%)
 mode change 100644 => 100755
 create mode 100644 docs/apache-airflow/start/docker-compose.yaml
 create mode 100644 docs/apache-airflow/start/docker.rst
 copy docs/{apache-airflow-providers-amazon/operators => apache-airflow/start}/index.rst (85%)
 rename docs/apache-airflow/{start.rst => start/local.rst} (74%)
 create mode 100644 tests/utils/test_types.py