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

[airflow] branch master updated (a7e4266 -> d524cec)

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

potiuk pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from a7e4266  Refactor GoogleDriveToGCSOperator to use common methods (#14276)
     add d524cec  Implements generation of separate constraints for core and providers (#14227)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build-images-workflow-run.yml    |   5 +
 .github/workflows/ci.yml                           |  21 +-
 BREEZE.rst                                         |  90 ++--
 CONTRIBUTING.rst                                   |  72 +++-
 Dockerfile                                         |  13 +-
 Dockerfile.ci                                      |  16 +-
 IMAGES.rst                                         |   8 +-
 INSTALL                                            |  10 +-
 airflow/utils/weekday.py                           |   1 +
 breeze                                             |  77 +++-
 breeze-complete                                    |   7 +-
 docs/apache-airflow/extra-packages-ref.rst         | 471 +++++++++++----------
 docs/apache-airflow/installation.rst               |  75 +++-
 scripts/ci/docker-compose/_docker.env              |   2 +
 scripts/ci/images/ci_build_dockerhub.sh            |   2 +-
 scripts/ci/kubernetes/ci_run_kubernetes_tests.sh   |   4 +-
 scripts/ci/libraries/_build_images.sh              |  15 +-
 scripts/ci/libraries/_initialization.sh            |  11 +
 scripts/ci/libraries/_push_pull_remove_images.sh   |   2 +-
 .../ci/pre_commit/pre_commit_breeze_cmd_line.sh    |   7 +-
 .../ci/pre_commit/pre_commit_check_order_setup.py  |  35 +-
 .../pre_commit_check_setup_extra_packages_ref.py   |  77 ++--
 .../ci/static_checks/run_basic_static_checks.sh    |   2 +-
 scripts/ci/static_checks/run_static_checks.sh      |   2 +-
 scripts/docker/compile_www_assets.sh               |   2 +
 scripts/docker/install_additional_dependencies.sh  |   2 +
 scripts/docker/install_airflow.sh                  |   2 +
 .../docker/install_airflow_from_latest_master.sh   |   2 +
 .../docker/install_from_docker_context_files.sh    |   6 +-
 scripts/docker/install_mysql.sh                    |   1 +
 scripts/in_container/_in_container_utils.sh        |  43 ++
 scripts/in_container/run_generate_constraints.sh   |  40 +-
 setup.py                                           | 103 ++++-
 tests/core/test_logging_config.py                  |   5 +-
 tests/providers/apache/hive/hooks/test_hive.py     |   1 +
 .../providers/google/cloud/hooks/test_bigquery.py  |   2 +
 .../google/cloud/hooks/test_stackdriver.py         |   1 +
 .../operators/test_cloud_sql_system_helper.py      |   4 +-
 .../cloud/operators/test_compute_system_helper.py  |   4 +-
 tests/test_utils/perf/dags/elastic_dag.py          |   1 +
 .../deps/test_dag_ti_slots_available_dep.py        |   1 +
 tests/ti_deps/deps/test_dag_unpaused_dep.py        |   1 +
 tests/ti_deps/deps/test_dagrun_exists_dep.py       |   1 +
 tests/ti_deps/deps/test_dagrun_id_dep.py           |   1 +
 tests/ti_deps/deps/test_not_in_retry_period_dep.py |   1 +
 .../ti_deps/deps/test_pool_slots_available_dep.py  |   2 +
 tests/ti_deps/deps/test_prev_dagrun_dep.py         |   1 +
 tests/ti_deps/deps/test_ready_to_reschedule_dep.py |   1 +
 tests/ti_deps/deps/test_runnable_exec_date_dep.py  |   1 +
 tests/ti_deps/deps/test_task_concurrency.py        |   1 +
 tests/ti_deps/deps/test_task_not_running_dep.py    |   1 +
 tests/ti_deps/deps/test_trigger_rule_dep.py        |   1 +
 tests/ti_deps/deps/test_valid_state_dep.py         |   1 +
 53 files changed, 867 insertions(+), 391 deletions(-)