This is an automated email from the ASF dual-hosted git repository.
ash pushed a change to branch remove-sqla-redshift-aws-provider
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 13f68fd59ff Remove sqlalchemy-redshift dependency from Amazon provider
add 48c7b22fc82 Add missed brackets for our dev script for Spell checks
(#42965)
add 95c46ec1353 FIX: Don't raise a warning in ExecutorSafeguard when
execute is called from an extended operator (#42849)
add 3661a089b2d Upgrade Helm Chart dependencies to latest released (#42816)
add 8b1c57a1999 Fix PythonOperator DAG error when DAG has hyphen in name
(#42902)
add 51f430285e2 fIX handling removal of dependencies (#42967)
add f1735b4c0c4 mark test_task_workflow_trigger_success as flaky (#42972)
add cd5eb2ca4ab Create a User Settings button with light/dark mode toggle
as a menu item (#42964)
add b92c66d45d2 AIP-84 Migrate delete Dag Run endpoint to FastAPI (#42910)
add ad54501f3fc Make datStats endpoint dag_ids parameter optional (#42955)
add 9c922f00327 Remove sqlalchemy-redshift dependency from Amazon provider
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 (13f68fd59ff)
\
N -- N -- N refs/heads/remove-sqla-redshift-aws-provider
(9c922f00327)
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/additional-ci-image-checks.yml | 7 +
.github/workflows/additional-prod-image-tests.yml | 6 +
.github/workflows/build-images.yml | 4 +
.github/workflows/ci-image-build.yml | 5 +
.github/workflows/ci.yml | 6 +
.github/workflows/finalize-tests.yml | 5 +
.github/workflows/prod-image-build.yml | 6 +
.github/workflows/prod-image-extra-checks.yml | 6 +
.github/workflows/push-image-cache.yml | 6 +
Dockerfile.ci | 5 +-
.../api_connexion/endpoints/dag_run_endpoint.py | 1 +
.../api_connexion/endpoints/dag_stats_endpoint.py | 40 +++--
airflow/api_connexion/openapi/v1.yaml | 4 +-
airflow/api_fastapi/openapi/v1-generated.yaml | 52 ++++++
airflow/api_fastapi/views/public/dag_run.py | 15 ++
airflow/models/baseoperator.py | 11 +-
airflow/ui/openapi-gen/queries/common.ts | 3 +
airflow/ui/openapi-gen/queries/queries.ts | 43 +++++
airflow/ui/openapi-gen/requests/services.gen.ts | 31 ++++
airflow/ui/openapi-gen/requests/types.gen.ts | 36 ++++
airflow/ui/src/layouts/Nav/Nav.tsx | 16 +-
.../Nav/{DocsButton.tsx => UserSettingsButton.tsx} | 65 +++----
airflow/utils/file.py | 2 +-
airflow/www/static/js/types/api-generated.ts | 6 +-
dev/breeze/doc/ci/07_debugging.md | 67 +++----
dev/breeze/doc/images/output_ci-image_build.svg | 112 ++++++------
dev/breeze/doc/images/output_ci-image_build.txt | 2 +-
dev/breeze/doc/images/output_prod-image_build.txt | 2 +-
.../airflow_breeze/commands/ci_image_commands.py | 4 +
.../commands/ci_image_commands_config.py | 1 +
.../commands/common_image_options.py | 7 +
.../commands/production_image_commands.py | 7 +-
.../src/airflow_breeze/params/build_ci_params.py | 1 -
.../src/airflow_breeze/params/build_prod_params.py | 5 -
.../airflow_breeze/params/common_build_params.py | 5 +-
.../src/airflow_breeze/utils/selective_checks.py | 4 +
.../src/airflow_breeze/utils/spelling_checks.py | 4 +-
dev/breeze/tests/test_selective_checks.py | 20 +++
.../endpoints/test_dag_stats_endpoint.py | 194 ++++++++++++++++++++-
tests/api_fastapi/views/public/test_dag_run.py | 12 ++
tests/models/test_baseoperatormeta.py | 24 ++-
tests/triggers/test_external_task.py | 1 +
tests/utils/test_file.py | 18 ++
43 files changed, 684 insertions(+), 187 deletions(-)
copy airflow/ui/src/layouts/Nav/{DocsButton.tsx => UserSettingsButton.tsx}
(56%)