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 2022/03/27 17:20:02 UTC

[airflow] branch main updated (719135a -> 9cbab95)

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

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


    from 719135a  Remove references to deprecated operators/params in PubSub operators (#22519)
     add 9cbab95  Converts Dockerfiles to be standalone (#22492)

No new revisions were added by this update.

Summary of changes:
 .dockerignore                                      |    1 +
 .github/boring-cyborg.yml                          |    1 -
 .pre-commit-config.yaml                            |    9 +-
 BREEZE.rst                                         |   10 +-
 Dockerfile                                         | 1081 +++++++++++++++-
 Dockerfile.ci                                      | 1368 +++++++++++++++++++-
 IMAGES.rst                                         |    7 +-
 STATIC_CODE_CHECKS.rst                             |    2 +
 breeze                                             |    2 +-
 breeze-complete                                    |    1 +
 dev/breeze/src/airflow_breeze/pre_commit_ids.py    |    1 +
 dev/breeze/src/airflow_breeze/shell/enter_shell.py |    2 -
 dev/breeze/src/airflow_breeze/utils/run_utils.py   |   16 -
 docs/conf.py                                       |    1 +
 docs/docker-stack/build-arg-ref.rst                |   18 +-
 docs/docker-stack/build.rst                        |  123 +-
 docs/docker-stack/changelog.rst                    |  178 +++
 .../customizing/add-build-essential-custom.sh      |   11 +-
 ...add-build-essential-custom.sh => custom-pip.sh} |   28 +-
 .../docker-examples/customizing/custom-sources.sh  |   14 +-
 .../customizing/github-different-repository.sh     |    9 +-
 .../docker-examples/customizing/github-main.sh     |    9 +-
 .../customizing/github-v2-2-test.sh                |   11 +-
 ...ild-essential-custom.sh => own-requirements.sh} |   27 +-
 .../customizing/pypi-dev-runtime-deps.sh           |   12 +-
 .../customizing/pypi-extras-and-deps.sh            |    9 +-
 .../customizing/pypi-selected-version.sh           |   12 +-
 .../docker-examples/customizing/stable-airflow.sh  |   10 +-
 .../restricted/restricted_environments.sh          |   21 +-
 docs/docker-stack/index.rst                        |    1 +
 scripts/ci/docker-compose/local.yml                |    2 +-
 scripts/ci/libraries/_all_libs.sh                  |    2 -
 scripts/ci/libraries/_build_images.sh              |   11 +-
 scripts/ci/libraries/_initialization.sh            |    8 +-
 scripts/ci/libraries/_local_mounts.sh              |    2 +-
 scripts/ci/libraries/_permissions.sh               |   53 -
 .../pre_commit_check_pre_commit_hook_names.py      |    4 +-
 .../pre_commit_inline_scripts_in_docker.py         |   59 +
 .../ci/pre_commit/pre_commit_lint_dockerfile.sh    |   17 +-
 .../airflow-scheduler-autorestart.sh}              |    0
 .../{in_container/prod => docker}/clean-logs.sh    |    0
 scripts/{in_container => docker}/entrypoint_ci.sh  |    0
 .../{in_container => docker}/entrypoint_exec.sh    |    0
 .../prod => docker}/entrypoint_prod.sh             |    0
 .../docker/install_from_docker_context_files.sh    |    7 +
 scripts/docker/pip                                 |   17 +-
 46 files changed, 2976 insertions(+), 201 deletions(-)
 create mode 100644 docs/docker-stack/changelog.rst
 copy docs/docker-stack/docker-examples/customizing/{add-build-essential-custom.sh => custom-pip.sh} (63%)
 copy docs/docker-stack/docker-examples/customizing/{add-build-essential-custom.sh => own-requirements.sh} (63%)
 delete mode 100644 scripts/ci/libraries/_permissions.sh
 create mode 100755 scripts/ci/pre_commit/pre_commit_inline_scripts_in_docker.py
 rename scripts/{in_container/prod/airflow_scheduler_autorestart.sh => docker/airflow-scheduler-autorestart.sh} (100%)
 rename scripts/{in_container/prod => docker}/clean-logs.sh (100%)
 rename scripts/{in_container => docker}/entrypoint_ci.sh (100%)
 rename scripts/{in_container => docker}/entrypoint_exec.sh (100%)
 rename scripts/{in_container/prod => docker}/entrypoint_prod.sh (100%)