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

ash pushed a change to branch disable-db-access-tasks
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard eb14f672d41 Disable ORM access from Tasks, DAG processing and Triggers
     add 1645298b0ec Fix non-integrated API calls from tests (#47327)
     add ddaf4c30e08 In docker-compose test, reserialize DAGs instead of 
looping scheduler (#47317)
     add a37f6fec447 Adding ticks to user provided table names (#47262)
     add 9a059124a94 Move api-server to port 8080 (#47310)
     add ff1e0e3b254 Restrict pymongo to less than 4.11 for our CI (#47336)
     add 4225966a59d Proper limitat for pymongo and better comment explaining 
root cause (#47338)
     add 8f4fc4f1076 Remove `airflow.www` module (#47318)
     add c0f71799986 Update docstring for users param in auth managers (#47334)
     add e98e8037d1a Add method to retrieve Druid task status URL based on 
ingestion type (#47238)
     add 25a905ef31b Decrease size of docker context by two orders of magnitude 
(#47342)
     add 2a77c31711e Disable ORM access from Tasks, DAG processing and Triggers

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   (eb14f672d41)
            \
             N -- N -- N   refs/heads/disable-db-access-tasks (2a77c31711e)

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:
 .dockerignore                                      |  15 +-
 Dockerfile.ci                                      |   4 +-
 airflow/api_fastapi/core_api/security.py           |  10 +-
 airflow/auth/managers/base_auth_manager.py         |  24 +--
 airflow/config_templates/config.yml                |   6 +-
 airflow/dag_processing/collection.py               |   2 +-
 airflow/settings.py                                |  22 +--
 airflow/ui/CONTRIBUTING.md                         |   2 +-
 airflow/ui/src/router.tsx                          |   2 +-
 airflow/utils/db.py                                |   2 +-
 airflow/utils/helpers.py                           |   2 +-
 airflow/www/__init__.py                            |  17 ---
 airflow/www/session.py                             |  41 -----
 airflow/www/utils.py                               |  34 -----
 airflow/www/validators.py                          | 139 -----------------
 chart/values.schema.json                           |   6 +-
 chart/values.yaml                                  |   2 +-
 clients/python/test_python_client.py               |   2 +-
 contributing-docs/03_contributors_quick_start.rst  |  10 +-
 dev/MANUALLY_BUILDING_IMAGES.md                    |  26 ++++
 dev/breeze/doc/03_developer_tasks.rst              |   7 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |   3 +-
 .../src/airflow_breeze/params/shell_params.py      |  14 +-
 dev/breeze/src/airflow_breeze/utils/cdxgen.py      |   4 +-
 dev/breeze/src/airflow_breeze/utils/visuals.py     |   9 +-
 docker_tests/test_docker_compose_quick_start.py    |   7 +-
 .../administration-and-deployment/web-stack.rst    |   2 +-
 .../howto/docker-compose/docker-compose.yaml       |   6 +-
 generated/provider_dependencies.json               |   2 +-
 helm_tests/airflow_core/test_api_server.py         |  10 +-
 kubernetes_tests/test_base.py                      |   2 +-
 .../amazon/aws/auth_manager/router/test_login.py   |   2 +-
 .../aws/auth_manager/test_aws_auth_manager.py      |   2 +-
 .../airflow/providers/apache/druid/hooks/druid.py  |  30 +++-
 .../tests/unit/apache/druid/hooks/test_druid.py    |  12 ++
 providers/celery/provider.yaml                     |   7 -
 .../airflow/providers/celery/cli/celery_command.py |  10 +-
 .../airflow/providers/celery/get_provider_info.py  |   7 -
 .../tests/unit/celery/cli/test_celery_command.py   |  34 -----
 .../providers/edge/plugins/edge_executor_plugin.py |  17 ++-
 .../providers/fab/auth_manager/fab_auth_manager.py |   8 +-
 .../airflow/providers/fab}/www/security_appless.py |   0
 .../unit/fab/auth_manager/test_fab_auth_manager.py |   2 +-
 providers/fab/tests/unit/fab/utils.py              |   4 -
 .../providers/google/cloud/hooks/bigquery.py       |   2 +-
 .../providers/google/cloud/utils/validators.py     |  33 ++--
 .../unit/google/cloud/utils/test_validators.py     |  59 ++++++++
 providers/mongo/README.rst                         |   8 +-
 providers/mongo/pyproject.toml                     |   8 +-
 .../airflow/providers/mongo/get_provider_info.py   |   2 +-
 .../src/airflow/providers/mysql/hooks/mysql.py     |   6 +-
 .../mysql/tests/unit/mysql/hooks/test_mysql.py     |  46 ++----
 scripts/ci/docker-compose/base-ports.yml           |   3 +-
 scripts/ci/kubernetes/nodeport.yaml                |   4 +-
 scripts/docker/entrypoint_ci.sh                    |   4 +-
 task_sdk/pyproject.toml                            |   2 +-
 .../src/airflow/sdk/api/datamodels/_generated.py   |   2 +-
 tests/always/test_project_structure.py             |   1 +
 .../core_api/routes/public/test_login.py           |   4 +-
 .../local_commands/test_api_server_command.py      |   2 +-
 tests/jobs/test_triggerer_job.py                   |   5 +-
 tests/utils/test_helpers.py                        |   2 +-
 tests/www/__init__.py                              |  17 ---
 tests/www/test_validators.py                       | 167 ---------------------
 tests_common/pytest_plugin.py                      |   5 +-
 65 files changed, 296 insertions(+), 655 deletions(-)
 delete mode 100644 airflow/www/__init__.py
 delete mode 100644 airflow/www/session.py
 delete mode 100644 airflow/www/utils.py
 delete mode 100644 airflow/www/validators.py
 rename {airflow => 
providers/fab/src/airflow/providers/fab}/www/security_appless.py (100%)
 copy airflow/listeners/spec/lifecycle.py => 
providers/google/src/airflow/providers/google/cloud/utils/validators.py (57%)
 create mode 100644 
providers/google/tests/unit/google/cloud/utils/test_validators.py
 delete mode 100644 tests/www/__init__.py
 delete mode 100644 tests/www/test_validators.py

Reply via email to