You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by gi...@apache.org on 2022/08/22 16:01:15 UTC

[airflow] branch dependabot/npm_and_yarn/airflow/ui/ws-6.2.2 updated (24366b0595 -> 653876ad4f)

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

github-bot pushed a change to branch dependabot/npm_and_yarn/airflow/ui/ws-6.2.2
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 24366b0595 Bump ws from 6.2.1 to 6.2.2 in /airflow/ui
     add 762235fd77 Add pre-commit hook for custom_operator_name (#25786)
     add d51957165b Remove skipping tests of Mssql for Python 3.8 (#25800)
     add 728a3ce5c2 Fail task if mapping upstream fails (#25757)
     add 6e66dd7776 Make GoogleBaseHook credentials functions public (#25785)
     add 5c48ed19bd Find cross-group tasks in iter_mapped_dependants (#25793)
     add 0254f30a5a Let timetables control generated run_ids. (#25795)
     add 0267a47e5a Reduce `operator_name` dupe in serialised JSON (#25819)
     add da616a1421 Remove depreciation warning when use default remote tasks logging handlers (#25764)
     add 833019d158 Set data_interval for dataset triggered runs to the range up "upstream" intervals (#25825)
     add 5b3d579a42 Don't use Pandas for SQLTableCheckOperator (#25822)
     add b535262837 Bump undici from 5.8.0 to 5.9.1 in /airflow/www (#25801)
     add dd72e67524 Fix (and test) SQLTableCheckOperator on postgresql (#25821)
     add 92fce4fe87 Improve error handling/messaging around bucket exist check (#25805)
     add f1e0a48500 Avoid circular import problems when instantiating AWS SM backend (#25810)
     add 5e5cf6316e Add a way to import Airflow without side-effects (#25832)
     add 6a79c29493  Add Clarum to companies using Apache Airflow (#25814)
     add f40ec8d6f8 Remove faulthandler_timeout (#25838)
     add 894d7104d1 Use temporary directories for tests remote aws loggers (#25762)
     add a5be64ad30 Fix broken link to Trigger Rules (#25840)
     add cdbad44932 Filter out non-editable apache-airflow from constraints. (#25847)
     add 98a7701942 Workaround setuptools editable packages path issue (#25848)
     add fc6dfa338a Support project_id argument in BigQueryGetDataOperator (#25782)
     add e1ace8d018 Fix RDS system test (#25839)
     add 87d051144b Separate instruction to install OS dependencies in images (#25565)
     add bbb6b7c54b Fix broken link for google cloud (#25642)
     add ccdd73ec50 Wait for xcom sidecar container to start before sidecar exec (#25055)
     add 874a95cc17 Discard semicolon stripping in SQL hook (#25855)
     add 93cd12747b Fix type annotations in SkipMixin (#25864)
     add 5a667e7d27 More DAG(schedule=...) improvements (#25648)
     add 9535ec0bba Databricks: fix provider name in the User-Agent string (#25873)
     add 22a93ace7c [CLEAN] support kubernetes 1.20 support (#25871)
     add 1a087bca3d Add EndOfLife instructions to release procedure (#25877)
     add db5543ef60 pretty print KubernetesPodOperator rendered template env_vars (#25850)
     add 977c6de7b8 Bump dns-packet from 1.3.1 to 1.3.4 in /airflow/ui (#25806)
     add 659dea555b Bump hosted-git-info from 2.8.8 to 2.8.9 in /airflow/ui (#25820)
     add 3199ffca9d Bump browserslist from 4.16.3 to 4.21.3 in /airflow/ui (#25807)
     add 4f8edc2bf3 Bump tmpl from 1.0.4 to 1.0.5 in /airflow/ui (#25809)
     add 653876ad4f Bump ws from 6.2.1 to 6.2.2 in /airflow/ui

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   (24366b0595)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/airflow/ui/ws-6.2.2 (653876ad4f)

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/build-images.yml                 |   7 -
 .github/workflows/ci.yml                           |   8 -
 .pre-commit-config.yaml                            |   6 +
 Dockerfile                                         | 228 ++++++-------
 Dockerfile.ci                                      | 252 ++++++---------
 IMAGES.rst                                         |  40 +--
 INTHEWILD.md                                       |   1 +
 README.md                                          |  33 +-
 STATIC_CODE_CHECKS.rst                             |   2 +
 airflow/__init__.py                                |   6 +-
 airflow/api/common/trigger_dag.py                  |  12 +-
 airflow/config_templates/airflow_local_settings.py |  15 +-
 airflow/jobs/scheduler_job.py                      |  53 ++-
 airflow/models/abstractoperator.py                 |  76 ++++-
 airflow/models/dag.py                              |  83 +++--
 airflow/models/dagrun.py                           |   3 +-
 airflow/models/mappedoperator.py                   |  37 ++-
 airflow/models/skipmixin.py                        |  52 +--
 airflow/models/taskmixin.py                        |  57 +---
 airflow/providers/amazon/aws/hooks/s3.py           |  14 +-
 airflow/providers/amazon/aws/operators/rds.py      |   2 +-
 .../amazon/aws/secrets/secrets_manager.py          |  12 +-
 .../cncf/kubernetes/operators/kubernetes_pod.py    |   2 +
 .../providers/cncf/kubernetes/utils/pod_manager.py |  12 +
 airflow/providers/common/sql/hooks/sql.py          |   6 +-
 airflow/providers/common/sql/operators/sql.py      |  18 +-
 .../providers/databricks/hooks/databricks_base.py  |   2 +-
 airflow/providers/docker/decorators/docker.py      |   2 +
 airflow/providers/google/cloud/hooks/automl.py     |   4 +-
 airflow/providers/google/cloud/hooks/bigquery.py   |   4 +-
 .../providers/google/cloud/hooks/bigquery_dts.py   |   2 +-
 airflow/providers/google/cloud/hooks/bigtable.py   |   2 +-
 .../providers/google/cloud/hooks/cloud_build.py    |   2 +-
 .../providers/google/cloud/hooks/cloud_composer.py |   4 +-
 .../google/cloud/hooks/cloud_memorystore.py        |   4 +-
 .../providers/google/cloud/hooks/datacatalog.py    |   2 +-
 airflow/providers/google/cloud/hooks/dataform.py   |   2 +-
 airflow/providers/google/cloud/hooks/datafusion.py |   2 +-
 airflow/providers/google/cloud/hooks/dataplex.py   |   2 +-
 airflow/providers/google/cloud/hooks/dataproc.py   |   8 +-
 .../google/cloud/hooks/dataproc_metastore.py       |   2 +-
 airflow/providers/google/cloud/hooks/dlp.py        |   2 +-
 airflow/providers/google/cloud/hooks/gcs.py        |   2 +-
 airflow/providers/google/cloud/hooks/kms.py        |   2 +-
 .../google/cloud/hooks/kubernetes_engine.py        |   2 +-
 .../google/cloud/hooks/natural_language.py         |   2 +-
 airflow/providers/google/cloud/hooks/os_login.py   |   2 +-
 airflow/providers/google/cloud/hooks/pubsub.py     |   4 +-
 .../providers/google/cloud/hooks/secret_manager.py |   2 +-
 airflow/providers/google/cloud/hooks/spanner.py    |   2 +-
 .../providers/google/cloud/hooks/speech_to_text.py |   2 +-
 airflow/providers/google/cloud/hooks/tasks.py      |   2 +-
 .../providers/google/cloud/hooks/text_to_speech.py |   2 +-
 airflow/providers/google/cloud/hooks/translate.py  |   2 +-
 .../google/cloud/hooks/vertex_ai/auto_ml.py        |  14 +-
 .../cloud/hooks/vertex_ai/batch_prediction_job.py  |   4 +-
 .../google/cloud/hooks/vertex_ai/custom_job.py     |  10 +-
 .../google/cloud/hooks/vertex_ai/dataset.py        |   2 +-
 .../cloud/hooks/vertex_ai/endpoint_service.py      |   2 +-
 .../hooks/vertex_ai/hyperparameter_tuning_job.py   |   6 +-
 .../google/cloud/hooks/vertex_ai/model_service.py  |   2 +-
 .../google/cloud/hooks/video_intelligence.py       |   2 +-
 airflow/providers/google/cloud/hooks/vision.py     |   4 +-
 airflow/providers/google/cloud/hooks/workflows.py  |   4 +-
 .../providers/google/cloud/operators/bigquery.py   |   7 +
 .../providers/google/common/hooks/base_google.py   |  14 +-
 airflow/serialization/schema.json                  |  11 +-
 airflow/serialization/serialized_objects.py        |  45 ++-
 airflow/timetables/base.py                         |  15 +-
 airflow/timetables/simple.py                       |  45 ++-
 airflow/ui/yarn.lock                               |  81 ++---
 airflow/utils/types.py                             |   8 +-
 airflow/www/yarn.lock                              |   6 +-
 breeze-complete                                    |   2 +-
 breeze-legacy                                      |   8 +-
 chart/README.md                                    |   2 +-
 dev/README_RELEASE_AIRFLOW.md                      |   6 +
 .../airflow_breeze/commands/ci_image_commands.py   |  13 -
 .../commands/ci_image_commands_config.py           |   6 -
 .../airflow_breeze/commands/developer_commands.py  |   4 -
 .../commands/developer_commands_config.py          |   1 -
 .../commands/production_image_commands.py          |   2 -
 .../commands/production_image_commands_config.py   |   1 -
 dev/breeze/src/airflow_breeze/global_constants.py  |  11 +-
 .../src/airflow_breeze/params/build_ci_params.py   |   8 +-
 .../src/airflow_breeze/params/build_prod_params.py |   7 +-
 .../airflow_breeze/params/common_build_params.py   |   8 +-
 .../src/airflow_breeze/params/shell_params.py      |   9 +-
 dev/breeze/src/airflow_breeze/pre_commit_ids.py    |   1 +
 .../src/airflow_breeze/utils/common_options.py     |   9 -
 .../airflow_breeze/utils/docker_command_utils.py   |   1 -
 docker_tests/test_ci_image.py                      |  11 +-
 .../example-dags.rst                               |   2 +-
 docs/apache-airflow/dag-run.rst                    |   2 +-
 .../howto/create-custom-decorator.rst              |   4 +
 docs/apache-airflow/howto/timetable.rst            |  32 +-
 docs/docker-stack/build-arg-ref.rst                |  16 +-
 docs/docker-stack/build.rst                        |  11 -
 docs/docker-stack/changelog.rst                    |  12 +-
 .../customizing/add-build-essential-custom.sh      |   3 +-
 .../docker-examples/customizing/custom-sources.sh  |   3 +-
 .../customizing/github-different-repository.sh     |   3 +-
 .../docker-examples/customizing/github-main.sh     |   3 +-
 .../customizing/github-v2-2-test.sh                |   3 +-
 .../customizing/pypi-dev-runtime-deps.sh           |   3 +-
 .../customizing/pypi-extras-and-deps.sh            |   3 +-
 .../restricted/restricted_environments.sh          |   3 +-
 images/breeze/output-commands-hash.txt             |   8 +-
 images/breeze/output_ci-image_build.svg            | 296 ++++++++---------
 images/breeze/output_prod-image_build.svg          | 360 ++++++++++-----------
 images/breeze/output_shell.svg                     | 224 +++++++------
 images/breeze/output_static-checks.svg             | 236 +++++++-------
 kubernetes_tests/test_kubernetes_pod_operator.py   |   6 +-
 .../2020-01-01T00_00_00+00_00/1.log                |   0
 pyproject.toml                                     |   8 +
 pytest.ini                                         |   1 -
 scripts/ci/docker-compose/_docker.env              |   1 -
 scripts/ci/docker-compose/backend-mssql-buster.yml |  60 ----
 ...ackend-mssql-bullseye.yml => backend-mssql.yml} |   0
 scripts/ci/docker-compose/base.yml                 |   1 -
 scripts/ci/libraries/_docker_engine_resources.sh   |   4 +-
 scripts/ci/libraries/_initialization.sh            |   6 +-
 scripts/ci/libraries/_testing.sh                   |   2 +-
 ...it_decorator_operator_implements_custom_name.py |  60 ++++
 .../determine_debian_version_specific_variables.sh |  49 ---
 scripts/docker/install_mssql.sh                    |  15 +-
 scripts/docker/install_os_dependencies.sh          |  98 ++++++
 scripts/in_container/run_generate_constraints.sh   |   1 +
 tests/always/test_deprecations.py                  |  10 -
 tests/charts/helm_template_generator.py            |   2 +-
 tests/conftest.py                                  |   4 +
 tests/dags/test_zip_invalid_cron.zip               | Bin 1513 -> 0 bytes
 tests/jobs/test_backfill_job.py                    |  34 +-
 tests/jobs/test_scheduler_job.py                   |  49 ++-
 tests/models/test_baseoperator.py                  |  21 ++
 tests/models/test_dag.py                           |  17 +
 tests/models/test_dagbag.py                        |  39 ++-
 tests/models/test_dagrun.py                        |   9 +-
 tests/models/test_taskinstance.py                  |  20 +-
 .../amazon/aws/log/test_cloudwatch_task_handler.py |   4 +-
 .../amazon/aws/log/test_s3_task_handler.py         |   6 +-
 .../kubernetes/operators/test_kubernetes_pod.py    |  28 +-
 tests/providers/common/sql/hooks/test_sqlparse.py  |  13 +-
 tests/providers/common/sql/operators/test_sql.py   |  62 ++--
 .../databricks/hooks/test_databricks_sql.py        |   2 +-
 tests/providers/google/cloud/hooks/test_automl.py  |   2 +-
 .../providers/google/cloud/hooks/test_bigquery.py  |   4 +-
 .../google/cloud/hooks/test_bigquery_dts.py        |   2 +-
 .../providers/google/cloud/hooks/test_bigtable.py  |   4 +-
 .../google/cloud/hooks/test_cloud_build.py         |   2 +-
 .../providers/google/cloud/hooks/test_cloud_sql.py |  36 +--
 .../google/cloud/hooks/test_datacatalog.py         | 134 ++++----
 .../google/cloud/hooks/test_datafusion.py          |   2 +-
 .../providers/google/cloud/hooks/test_dataproc.py  |  16 +-
 tests/providers/google/cloud/hooks/test_dlp.py     |   2 +-
 tests/providers/google/cloud/hooks/test_gcs.py     |   2 +-
 tests/providers/google/cloud/hooks/test_kms.py     |   2 +-
 .../google/cloud/hooks/test_kubernetes_engine.py   |   4 +-
 .../google/cloud/hooks/test_natural_language.py    |   2 +-
 .../providers/google/cloud/hooks/test_os_login.py  |   8 +-
 tests/providers/google/cloud/hooks/test_pubsub.py  |   4 +-
 .../google/cloud/hooks/test_secret_manager.py      |   4 +-
 tests/providers/google/cloud/hooks/test_spanner.py |   4 +-
 .../google/cloud/hooks/test_speech_to_text.py      |   2 +-
 .../google/cloud/hooks/test_stackdriver.py         |  22 +-
 tests/providers/google/cloud/hooks/test_tasks.py   |   2 +-
 .../google/cloud/hooks/test_text_to_speech.py      |   2 +-
 .../providers/google/cloud/hooks/test_translate.py |   2 +-
 .../google/cloud/hooks/test_video_intelligence.py  |   2 +-
 tests/providers/google/cloud/hooks/test_vision.py  |   2 +-
 .../providers/google/cloud/hooks/test_workflows.py |   4 +-
 .../google/cloud/operators/test_bigquery.py        |   2 +
 .../google/common/hooks/test_base_google.py        |  32 +-
 tests/providers/oracle/hooks/test_oracle.py        |   8 +-
 tests/serialization/test_dag_serialization.py      |   7 +-
 .../providers/amazon/aws/example_emr_serverless.py |   1 -
 .../providers/amazon/aws/example_local_to_s3.py    |   1 -
 .../google/cloud/dataform/example_dataform.py      |   1 -
 178 files changed, 1933 insertions(+), 1751 deletions(-)
 delete mode 100644 local/log/location/dag_for_testing_cloudwatch_task_handler/task_for_testing_cloudwatch_log_handler/2020-01-01T00_00_00+00_00/1.log
 delete mode 100644 scripts/ci/docker-compose/backend-mssql-buster.yml
 rename scripts/ci/docker-compose/{backend-mssql-bullseye.yml => backend-mssql.yml} (100%)
 create mode 100755 scripts/ci/pre_commit/pre_commit_decorator_operator_implements_custom_name.py
 delete mode 100644 scripts/docker/determine_debian_version_specific_variables.sh
 create mode 100644 scripts/docker/install_os_dependencies.sh
 delete mode 100644 tests/dags/test_zip_invalid_cron.zip