This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to tag nightly-master
in repository https://gitbox.apache.org/repos/asf/airflow.git.
*** WARNING: tag nightly-master was modified! ***
from f40ac9b (commit)
to 4e09cb5 (commit)
from f40ac9b Add placement_strategy option (#9444)
add 804548d Add Dataprep operators (#10304)
add cc551ba Add packages to function names in bash (#10670)
add 70f05ac Add `log_id` field to log lines on ES handler (#10411)
add 8ac6f29 Fix format of install commands (#10676)
add 4c4a7a8 Improve getting started section (#10680)
add 50c9411 Remove airflow-pr tool (#10675)
add 805781b Update INTHEWILD.md (#10683)
add 0d76b59 Remove redundant section from dev/README.md toc (#10689)
add 72b2be7 [AIRFLOW-XXX] Add task execution process on Celery Execution
diagram (#6961)
add 9108cb5 docs: They added support for celltags to Jupyter Lab (#9141)
add 0d9e421 Unify command names in CLI (#10669)
add 338b412 Add on_kill support for the KubernetesPodOperator (#10666)
add 9a10f83 Revert recent breeze changes (#10651 & #10670) (#10694)
add 02b853b Fix failing black test (#10697)
add 48ce4bd Fix missing dash in flag for statsd container (#10691)
add e5785d4 Chart: Flower deployment should use Flower image (#10701)
add 649ce4b Implement Google Shell Conventions for breeze script (#10695)
add 4e09cb5 Add packages to function names in bash (#10670) (#10696)
No new revisions were added by this update.
Summary of changes:
.pre-commit-config.yaml | 6 +-
BREEZE.rst | 2 +-
IMAGES.rst | 4 +-
INTHEWILD.md | 1 +
README.md | 8 +-
UPDATING.md | 75 +-
airflow/cli/cli_parser.py | 16 +-
airflow/cli/commands/legacy_commands.py | 4 +-
airflow/cli/commands/task_command.py | 2 +-
airflow/models/connection.py | 2 +-
.../cncf/kubernetes/operators/kubernetes_pod.py | 10 +
.../providers/elasticsearch/log/es_task_handler.py | 3 +
.../google/cloud/example_dags/example_dataprep.py | 45 +-
airflow/providers/google/cloud/hooks/dataprep.py | 76 +-
.../providers/google/cloud/operators/dataprep.py | 76 +-
breeze | 426 ++++----
chart/templates/_helpers.yaml | 2 +-
chart/templates/statsd/statsd-deployment.yaml | 2 +-
dev/README.md | 85 +-
dev/airflow-pr | 1036 --------------------
dev/requirements.txt | 4 +-
docs/executor/celery.rst | 35 +
docs/howto/operator/google/cloud/dataprep.rst | 76 +-
docs/howto/operator/papermill.rst | 3 -
docs/img/run_task_on_celery_executor.png | Bin 0 -> 55939 bytes
docs/img/run_task_on_celery_executor.puml | 77 ++
docs/security/secrets/fernet.rst | 2 +-
kubernetes_tests/test_kubernetes_pod_operator.py | 28 +
.../ci_prepare_backport_packages.sh | 6 +-
.../ci_prepare_backport_readme.sh | 6 +-
...ci_test_backport_packages_import_all_classes.sh | 4 +-
...ci_test_backport_packages_install_separately.sh | 4 +-
scripts/ci/constraints/ci_generate_constraints.sh | 6 +-
scripts/ci/docs/ci_docs.sh | 6 +-
scripts/ci/images/ci_build_dockerhub.sh | 12 +-
scripts/ci/images/ci_prepare_ci_image_on_ci.sh | 12 +-
scripts/ci/images/ci_prepare_prod_image_on_ci.sh | 8 +-
scripts/ci/images/ci_push_ci_images.sh | 4 +-
scripts/ci/images/ci_push_production_images.sh | 4 +-
scripts/ci/images/ci_wait_for_all_ci_images.sh | 4 +-
scripts/ci/images/ci_wait_for_all_prod_images.sh | 6 +-
.../ci/kubernetes/ci_deploy_app_to_kubernetes.sh | 20 +-
scripts/ci/kubernetes/ci_run_kubernetes_tests.sh | 6 +-
scripts/ci/libraries/_build_images.sh | 190 ++--
scripts/ci/libraries/_initialization.sh | 102 +-
scripts/ci/libraries/_kind.sh | 48 +-
scripts/ci/libraries/_local_mounts.sh | 6 +-
scripts/ci/libraries/_md5sum.sh | 44 +-
scripts/ci/libraries/_parameters.sh | 8 +-
scripts/ci/libraries/_permissions.sh | 22 +-
scripts/ci/libraries/_push_pull_remove_images.sh | 52 +-
scripts/ci/libraries/_pylint.sh | 2 +-
scripts/ci/libraries/_runs.sh | 8 +-
scripts/ci/libraries/_sanity_checks.sh | 40 +-
scripts/ci/libraries/_script_init.sh | 16 +-
scripts/ci/libraries/_spinner.sh | 2 +-
scripts/ci/libraries/_start_end.sh | 44 +-
scripts/ci/libraries/_traps.sh | 4 +-
scripts/ci/libraries/_verbosity.sh | 13 +-
scripts/ci/pre_commit/pre_commit_ci_build.sh | 6 +-
.../ci/pre_commit/pre_commit_local_yml_mounts.sh | 6 +-
scripts/ci/pre_commit/pre_commit_mermaid.sh | 2 +-
scripts/ci/static_checks/flake8.sh | 4 +-
scripts/ci/static_checks/mypy.sh | 4 +-
scripts/ci/static_checks/pylint.sh | 6 +-
scripts/ci/static_checks/refresh_pylint_todo.sh | 4 +-
scripts/ci/static_checks/run_static_checks.sh | 4 +-
scripts/ci/testing/ci_run_airflow_testing.sh | 4 +-
scripts/in_container/_in_container_utils.sh | 2 +-
tests/bats/bats_utils.bash | 4 +-
tests/bats/test_breeze_params.bats | 14 +-
tests/bats/test_local_mounts.bats | 2 +-
tests/cli/commands/test_dag_command.py | 6 +-
tests/cli/commands/test_sync_perm_command.py | 2 +-
tests/cli/commands/test_task_command.py | 2 +-
tests/cli/commands/test_user_command.py | 4 +-
.../providers/google/cloud/hooks/test_dataprep.py | 148 ++-
.../google/cloud/operators/test_dataprep.py | 62 +-
...datastore_system.py => test_dataprep_system.py} | 40 +-
79 files changed, 1270 insertions(+), 1871 deletions(-)
delete mode 100755 dev/airflow-pr
create mode 100644 docs/img/run_task_on_celery_executor.png
create mode 100644 docs/img/run_task_on_celery_executor.puml
copy tests/providers/google/cloud/operators/{test_datastore_system.py =>
test_dataprep_system.py} (50%)