You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ta...@apache.org on 2023/02/22 21:20:21 UTC

[airflow] branch revert-29408-docker-compose-change-example updated (ab54df3039 -> b50445be06)

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

taragolis pushed a change to branch revert-29408-docker-compose-change-example
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard ab54df3039 Revert "Improve health checks in example docker-compose and clarify usage (#29408)"
     add 2bc1081ea6 Fix extension of Internal API configuration path (#29681)
     add 19f1e7c27b Do not process output when do_xcom_push=False  (#29599)
     add 8430d6014a Do not crash when a version fails to parse (#29685)
     add 47ebe99972 Add Livy Operator with deferrable mode (#29047)
     add dba390e323 Fix and augment `check-for-inclusive-language` CI check (#29549)
     add ff8fae1baf Use MariaDB client binaries in arm64 image for support MySQL backend (#29519)
     add ad08f66228 Remove <2.0.0 limit on google-cloud-bigtable (#29644)
     add 1768872a00 support Yandex SDK feature "endpoint" (#29635)
     add ba2d562cfb Add `wait_for_completion` param in `RedshiftCreateClusterOperator` (#29657)
     add 8b178f185a Clarify `service_config` in AWS Connection (#29627)
     add d4af0cac02 Handle `github_method_args` in GithubOperator when not provided (#29699)
     add 8449180f48 Move extra links position in grid view (#29703)
     add b50445be06 Revert "Improve health checks in example docker-compose and clarify usage (#29408)"

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (ab54df3039)
            \
             N -- N -- N   refs/heads/revert-29408-docker-compose-change-example (b50445be06)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/ci.yml                           |   3 +
 .pre-commit-config.yaml                            |  62 +++-
 Dockerfile                                         |  35 +-
 Dockerfile.ci                                      |  37 +-
 .../api_connexion/endpoints/connection_endpoint.py |   8 +-
 .../dags_in_image_template.yaml                    |   2 +-
 .../dags_in_volume_template.yaml                   |   2 +-
 .../basic_template.yaml                            |   6 +-
 .../amazon/aws/operators/redshift_cluster.py       |  18 +
 airflow/providers/apache/livy/hooks/livy.py        | 390 +++++++++++++++++++-
 airflow/providers/apache/livy/operators/livy.py    |  52 ++-
 airflow/providers/apache/livy/provider.yaml        |   2 +
 .../apache/livy/triggers}/__init__.py              |   0
 airflow/providers/apache/livy/triggers/livy.py     | 146 ++++++++
 .../cncf/kubernetes/decorators/kubernetes.py       |   2 +-
 airflow/providers/common/sql/operators/sql.py      |   2 +
 airflow/providers/docker/decorators/docker.py      |   2 +-
 airflow/providers/github/operators/github.py       |  10 +-
 airflow/providers/google/cloud/hooks/bigquery.py   |   4 +-
 airflow/providers/google/cloud/hooks/bigtable.py   |  23 +-
 .../providers/google/cloud/operators/bigtable.py   |   2 +-
 airflow/providers/google/cloud/sensors/bigtable.py |   4 +-
 airflow/providers/google/provider.yaml             |   7 +-
 airflow/providers/mysql/provider.yaml              |   4 +-
 airflow/providers/yandex/hooks/yandex.py           |  15 +-
 airflow/utils/dag_edges.py                         |   4 +-
 airflow/utils/task_group.py                        |   4 +-
 airflow/www/extensions/init_views.py               |   2 +-
 .../static/js/dag/details/taskInstance/index.tsx   |   2 +-
 chart/files/pod-template-file.kubernetes-helm-yaml |   2 +-
 chart/values.schema.json                           |   2 +-
 chart/values.yaml                                  |   2 +-
 .../airflow_breeze/commands/developer_commands.py  |  10 +-
 .../utils/find_newer_dependencies.py               |   5 +-
 .../connections/aws.rst                            |  48 +--
 docs/apache-airflow-providers-google/index.rst     |   2 +-
 .../operators/leveldb/leveldb.rst                  |   2 +-
 .../connections/yandexcloud.rst                    |   4 +
 .../authoring-and-scheduling/plugins.rst           |   2 +-
 .../authoring-and-scheduling/timezone.rst          |   2 +-
 docs/apache-airflow/best-practices.rst             |   2 +-
 docs/apache-airflow/core-concepts/dags.rst         |   2 +-
 docs/apache-airflow/core-concepts/params.rst       |   2 +-
 docs/apache-airflow/howto/connection.rst           |   2 +-
 docs/apache-airflow/tutorial/fundamentals.rst      |   2 +-
 docs/helm-chart/customizing-workers.rst            |   2 +-
 generated/provider_dependencies.json               |  11 +-
 scripts/docker/entrypoint_ci.sh                    |   2 +-
 scripts/docker/install_mysql.sh                    |  41 ++-
 scripts/in_container/check_environment.sh          |   2 +-
 .../in_container/run_provider_yaml_files_check.py  |   7 -
 .../amazon/aws/operators/test_redshift_cluster.py  |   9 +
 .../{google/cloud/utils => apache/livy}/compat.py  |   2 +-
 tests/providers/apache/livy/hooks/test_livy.py     | 392 ++++++++++++++++++++-
 tests/providers/apache/livy/operators/test_livy.py | 156 +++++++-
 .../providers/apache/livy/triggers}/__init__.py    |   0
 tests/providers/apache/livy/triggers/test_livy.py  | 202 +++++++++++
 tests/providers/common/sql/operators/test_sql.py   |   8 +-
 tests/providers/github/operators/test_github.py    |   9 +
 .../providers/google/cloud/hooks/test_bigtable.py  |   3 +-
 .../google/cloud/operators/test_bigtable.py        |   2 +-
 tests/providers/yandex/hooks/test_yandex.py        |  42 +++
 tests/system/providers/github/example_github.py    |   1 -
 63 files changed, 1682 insertions(+), 150 deletions(-)
 copy airflow/{api_connexion => providers/apache/livy/triggers}/__init__.py (100%)
 create mode 100644 airflow/providers/apache/livy/triggers/livy.py
 copy tests/providers/{google/cloud/utils => apache/livy}/compat.py (95%)
 copy {airflow/api_connexion => tests/providers/apache/livy/triggers}/__init__.py (100%)
 create mode 100644 tests/providers/apache/livy/triggers/test_livy.py