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

rahulvats pushed a change to branch fix-e2e-tests
in repository https://gitbox.apache.org/repos/asf/airflow.git


    from e0e60091d0a increase timeout
     add b4b541727e9 Celery: explicitly specify `psycopg2` in driverless 
postgres URLs (#62159)
     add 2990d77f1c1 fix S3RemoteLogIO using incorrect transfer config (#62423)
     add 75aa609d780 Fix log horizontal overflow UI (#62473)
     add 0fb6385832a Fix HTTP 500 on /ui/teams endpoint when using Keycloak 
auth manager (#62471)
     add 11feaa3779f chore(deps): bump the core-ui-package-updates group across 
1 directory with 2 updates (#62474)
     add d9ed5adbba8 Fix variable name in `exemple_emr_eks` (#62480)
     add eff438a629a Drop support for all Airflow versions below 2.11 in Helm 
Chart (#61018)
     add 44b0e8a1c48 Adding release documents to RMs for visibility (#62485)
     add 5c63abfa204 (doc only) Update `parallelism` parameter description for 
KubernetesJobOperator (#62468)
     add c1a9854e75b Feat: Add version change indicators for Dag and bundle 
versions in Grid view (#53216)
     add 6d6f8bf3d04 Variable table handle long words break when values are 
expanded (#62416)
     add 44502390531 Add rat-exclude copy to release docs (#62484)
     add 3fc761f4c53 Bugfix english translation keys (#62488)
     add 925c38eb350 Merge branch 'main' into fix-e2e-tests

No new revisions were added by this update.

Summary of changes:
 .github/CODEOWNERS                                 |   3 +
 .../docs/howto/docker-compose/docker-compose.yaml  |   2 +-
 .../auth/managers/simple/ui/package-lock.json      |  16 +-
 .../auth/managers/simple/ui/package.json           |   4 +-
 .../auth/managers/simple/ui/pnpm-lock.yaml         |  32 +--
 .../api_fastapi/core_api/datamodels/ui/common.py   |   2 +
 .../api_fastapi/core_api/datamodels/ui/grid.py     |   1 +
 .../api_fastapi/core_api/openapi/_private_ui.yaml  |  11 +
 .../airflow/api_fastapi/core_api/routes/ui/grid.py |  53 +++--
 .../api_fastapi/core_api/services/ui/grid.py       |   7 +
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |  19 ++
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |   2 +
 .../airflow/ui/public/i18n/locales/en/common.json  |   4 +-
 .../src/airflow/ui/public/i18n/locales/en/dag.json |   9 +
 .../src/airflow/ui/src/constants/localStorage.ts   |   1 +
 .../src/constants/showVersionIndicatorOptions.ts   |  46 ++++
 .../ui/src/layouts/Details/DetailsLayout.tsx       |  11 +
 .../airflow/ui/src/layouts/Details/Grid/Bar.tsx    |  27 ++-
 .../airflow/ui/src/layouts/Details/Grid/Grid.tsx   |  33 ++-
 .../layouts/Details/Grid/TaskInstancesColumn.tsx   |  42 +++-
 .../src/layouts/Details/Grid/VersionIndicator.tsx  | 140 ++++++++++++
 .../ui/src/layouts/Details/Grid/constants.ts       |  10 +-
 .../Details/Grid/useGridRunsWithVersionFlags.ts    |  74 +++++++
 .../ui/src/layouts/Details/PanelButtons.tsx        |  12 +
 .../src/layouts/Details/VersionIndicatorSelect.tsx |  94 ++++++++
 .../src/pages/TaskInstance/Logs/TaskLogContent.tsx |   1 +
 .../airflow/ui/src/pages/Variables/Variables.tsx   |  24 +-
 .../api_fastapi/core_api/routes/ui/test_grid.py    | 100 +++++----
 chart/README.md                                    |   5 +-
 chart/docs/index.rst                               |   6 +-
 chart/docs/manage-dag-files.rst                    |   8 +-
 chart/docs/production-guide.rst                    |   9 +-
 chart/docs/quick-start.rst                         |   2 +-
 chart/files/pod-template-file.kubernetes-helm-yaml |   2 +-
 chart/newsfragments/61018.significant.rst          |   4 +
 chart/templates/NOTES.txt                          |   2 +-
 chart/templates/_helpers.yaml                      | 143 +-----------
 chart/templates/check-values.yaml                  |   8 +
 chart/templates/configmaps/configmap.yaml          |   2 -
 .../dag-processor/dag-processor-deployment.yaml    |   2 -
 .../dag-processor-poddisruptionbudget.yaml         |   2 -
 .../dag-processor-serviceaccount.yaml              |   6 +-
 .../pgbouncer/pgbouncer-networkpolicy.yaml         |   2 +-
 .../security-context-constraint-rolebinding.yaml   |   2 -
 .../templates/scheduler/scheduler-deployment.yaml  |   2 -
 .../secrets/result-backend-connection-secret.yaml  |   2 +-
 .../templates/triggerer/triggerer-deployment.yaml  |   8 +-
 .../triggerer/triggerer-kedaautoscaler.yaml        |   4 +-
 .../triggerer/triggerer-networkpolicy.yaml         |   3 -
 chart/templates/triggerer/triggerer-service.yaml   |   3 -
 .../triggerer/triggerer-serviceaccount.yaml        |   6 +-
 .../templates/webserver/webserver-deployment.yaml  |  28 ---
 chart/templates/workers/worker-deployment.yaml     |   2 +-
 chart/values.schema.json                           |  29 +--
 chart/values.yaml                                  |  51 +----
 dev/README_RELEASE_AIRFLOW.md                      |   1 +
 dev/README_RELEASE_AIRFLOWCTL.md                   |   1 +
 dev/README_RELEASE_HELM_CHART.md                   |   1 +
 dev/README_RELEASE_PROVIDERS.md                    |   1 +
 dev/README_RELEASE_PYTHON_CLIENT.md                |   1 +
 .../helm_tests/airflow_aux/test_airflow_common.py  |  12 +-
 .../helm_tests/airflow_aux/test_annotations.py     |   4 +-
 .../airflow_aux/test_basic_helm_chart.py           |  39 ++--
 .../tests/helm_tests/airflow_aux/test_configmap.py |  41 ++--
 .../helm_tests/airflow_aux/test_create_user_job.py |  16 +-
 .../airflow_aux/test_extra_env_env_from.py         |   2 +-
 .../airflow_aux/test_migrate_database_job.py       |  21 +-
 .../airflow_aux/test_pod_template_file.py          |  32 +--
 .../helm_tests/airflow_aux/test_remote_logging.py  |  69 ------
 .../helm_tests/airflow_core/test_dag_processor.py  |  38 +---
 .../tests/helm_tests/airflow_core/test_env.py      |   4 +-
 .../helm_tests/airflow_core/test_scheduler.py      |  52 ++---
 .../helm_tests/airflow_core/test_triggerer.py      |  28 +--
 .../tests/helm_tests/airflow_core/test_worker.py   |  45 +---
 .../tests/helm_tests/apiserver/test_apiserver.py   |   4 +-
 helm-tests/tests/helm_tests/other/test_flower.py   |  12 +-
 .../helm_tests/other/test_git_sync_scheduler.py    |  22 +-
 .../helm_tests/other/test_git_sync_webserver.py    | 241 ---------------------
 helm-tests/tests/helm_tests/security/test_rbac.py  |  13 +-
 .../security/test_rbac_pod_log_reader.py           |   4 +-
 .../test_result_backend_connection_secret.py       |  43 +---
 .../helm_tests/security/test_security_context.py   |  28 ---
 .../helm_tests/webserver/test_hpa_webserver.py     |   8 +-
 .../tests/helm_tests/webserver/test_ingress_web.py |  24 +-
 .../helm_tests/webserver/test_pdb_webserver.py     |   2 +-
 .../tests/helm_tests/webserver/test_webserver.py   | 238 ++++++--------------
 .../providers/amazon/aws/log/s3_task_handler.py    |   2 +-
 .../tests/system/amazon/aws/example_emr_eks.py     |   6 +-
 .../providers/celery/executors/default_celery.py   |   6 +-
 .../providers/cncf/kubernetes/operators/job.py     |   2 +-
 .../keycloak/auth_manager/cli/commands.py          |  14 +-
 .../keycloak/auth_manager/keycloak_auth_manager.py |  15 +-
 .../providers/keycloak/auth_manager/resources.py   |   1 +
 .../keycloak/auth_manager/cli/test_commands.py     |   4 +-
 .../auth_manager/test_keycloak_auth_manager.py     |  42 +++-
 scripts/ci/docker-compose/backend-postgres.yml     |   2 +-
 96 files changed, 1029 insertions(+), 1235 deletions(-)
 create mode 100644 
airflow-core/src/airflow/ui/src/constants/showVersionIndicatorOptions.ts
 create mode 100644 
airflow-core/src/airflow/ui/src/layouts/Details/Grid/VersionIndicator.tsx
 create mode 100644 
airflow-core/src/airflow/ui/src/layouts/Details/Grid/useGridRunsWithVersionFlags.ts
 create mode 100644 
airflow-core/src/airflow/ui/src/layouts/Details/VersionIndicatorSelect.tsx
 create mode 100644 chart/newsfragments/61018.significant.rst
 delete mode 100644 helm-tests/tests/helm_tests/other/test_git_sync_webserver.py

Reply via email to