This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/fab-ui-package-updates-5645b7091d
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 5175ab6583c Bump the fab-ui-package-updates group across 1 directory
with 4 updates
add 4670fc066ba Fix apache hive server2 hook for sqlalchemy URL (#59878)
add 15f3212fa2c Reduct k8s test flakiness (#59885)
add 4934ce02838 Simplify the process of adding triage team member (#59892)
add b97197a9eea Add submodules to GitDagBundle (#59911)
add f6d294838e8 Add E2E tests for dashboard metrics display (#59678)
add 16220ddd170 Feat : E2E test to Verify backfills list displays (#59791)
add 05ac92fb0d0 Use SDK serde for trigger and next kwargs serialization
(#59711)
add 960973bfd83 TaskInstance unused method cleanup (#59835)
add 1585e4586aa Refactor airflow core tests to use SQLA2 (#59920)
add cf80ae19840 Unified using BaseModel for api (#59894)
add ea61ee881a2 Bump the fab-ui-package-updates group across 1 directory
with 4 updates
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 (5175ab6583c)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/fab-ui-package-updates-5645b7091d
(ea61ee881a2)
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:
.pre-commit-config.yaml | 1 +
ISSUE_TRIAGE_PROCESS.rst | 9 +-
airflow-core/.pre-commit-config.yaml | 1 +
airflow-core/newsfragments/59835.significant.rst | 5 +
.../airflow/api_fastapi/core_api/datamodels/log.py | 6 +-
.../api_fastapi/core_api/datamodels/ui/calendar.py | 3 +-
.../api_fastapi/core_api/datamodels/ui/config.py | 3 +-
.../api_fastapi/core_api/datamodels/ui/grid.py | 3 +-
.../api_fastapi/core_api/openapi/exceptions.py | 2 +-
.../execution_api/datamodels/taskinstance.py | 4 +-
.../execution_api/routes/task_instances.py | 11 +-
.../api_fastapi/execution_api/routes/xcoms.py | 3 +-
.../api_fastapi/execution_api/versions/__init__.py | 2 +
.../versions/{v2025_09_23.py => v2026_03_31.py} | 13 +-
.../src/airflow/models/renderedtifields.py | 2 +-
airflow-core/src/airflow/models/taskinstance.py | 107 +-----
.../src/airflow/models/taskinstancehistory.py | 5 +-
airflow-core/src/airflow/models/trigger.py | 39 ++-
.../src/airflow/ui/src/components/StateBadge.tsx | 1 +
.../src/airflow/ui/tests/e2e/pages/BackfillPage.ts | 224 ++++++++++++
.../src/airflow/ui/tests/e2e/pages/HomePage.ts | 141 ++++++++
.../airflow/ui/tests/e2e/specs/backfill.spec.ts | 136 ++++++++
.../ui/tests/e2e/specs/home-dashboard.spec.ts | 141 ++++++++
.../core_api/routes/public/test_task_instances.py | 3 +-
.../core_api/routes/public/test_xcom.py | 17 +-
.../versions/head/test_task_instances.py | 93 ++++-
.../tests/unit/callbacks/test_callback_requests.py | 11 +-
.../tests/unit/cli/commands/test_task_command.py | 2 +-
airflow-core/tests/unit/core/test_core.py | 2 +-
.../tests/unit/dag_processing/test_collection.py | 36 +-
.../tests/unit/executors/test_base_executor.py | 3 +-
airflow-core/tests/unit/jobs/test_scheduler_job.py | 23 +-
airflow-core/tests/unit/models/test_cleartasks.py | 77 ++---
airflow-core/tests/unit/models/test_dag.py | 14 +-
airflow-core/tests/unit/models/test_dagrun.py | 40 ++-
.../tests/unit/models/test_mappedoperator.py | 11 +-
airflow-core/tests/unit/models/test_pool.py | 12 +-
.../tests/unit/models/test_renderedtifields.py | 168 ++-------
.../tests/unit/models/test_taskinstance.py | 378 +++++----------------
airflow-core/tests/unit/models/test_taskmap.py | 7 +-
airflow-core/tests/unit/models/test_trigger.py | 49 ++-
airflow-core/tests/unit/models/test_xcom.py | 12 +-
.../deps/test_dag_ti_slots_available_dep.py | 9 +-
.../unit/ti_deps/deps/test_dag_unpaused_dep.py | 5 +-
.../ti_deps/deps/test_not_in_retry_period_dep.py | 6 +-
.../deps/test_not_previously_skipped_dep.py | 11 +-
.../tests/unit/utils/log/test_log_reader.py | 6 +-
airflow-core/tests/unit/utils/test_db_cleanup.py | 4 +-
airflow-core/tests/unit/utils/test_log_handlers.py | 21 +-
.../airflow_breeze/commands/kubernetes_commands.py | 76 ++++-
devel-common/src/tests_common/pytest_plugin.py | 80 ++---
devel-common/src/tests_common/test_utils/compat.py | 5 +
.../src/tests_common/test_utils/mock_context.py | 31 +-
.../src/tests_common/test_utils/taskinstance.py | 154 +++++++++
.../test_kubernetes_pod_operator.py | 8 +-
.../amazon/aws/log/test_cloudwatch_task_handler.py | 3 +-
.../unit/amazon/aws/log/test_s3_task_handler.py | 5 +-
.../tests/unit/amazon/aws/operators/test_athena.py | 3 +-
.../unit/amazon/aws/operators/test_base_aws.py | 9 +-
.../unit/amazon/aws/operators/test_datasync.py | 11 +-
.../tests/unit/amazon/aws/operators/test_dms.py | 22 +-
.../amazon/aws/operators/test_emr_add_steps.py | 21 +-
.../aws/operators/test_emr_create_job_flow.py | 15 +-
.../tests/unit/amazon/aws/operators/test_s3.py | 12 +-
.../amazon/aws/operators/test_sagemaker_base.py | 11 +-
.../tests/unit/amazon/aws/sensors/test_base_aws.py | 10 +-
.../tests/unit/amazon/aws/sensors/test_s3.py | 21 +-
.../tests/unit/amazon/aws/transfers/test_base.py | 14 +-
.../amazon/aws/transfers/test_dynamodb_to_s3.py | 11 +-
.../unit/amazon/aws/transfers/test_mongo_to_s3.py | 16 +-
.../unit/apache/druid/operators/test_druid.py | 9 +-
.../airflow/providers/apache/hive/hooks/hive.py | 23 ++
.../hive/tests/unit/apache/hive/hooks/test_hive.py | 21 ++
.../unit/apache/kylin/operators/test_kylin_cube.py | 5 +-
.../tests/unit/apache/livy/operators/test_livy.py | 3 +-
.../unit/apache/spark/decorators/test_pyspark.py | 16 +-
.../unit/apache/spark/operators/test_spark_jdbc.py | 3 +-
.../unit/apache/spark/operators/test_spark_sql.py | 3 +-
.../apache/spark/operators/test_spark_submit.py | 8 +-
.../unit/celery/executors/test_celery_executor.py | 11 +-
.../cncf/kubernetes/decorators/kubernetes_cmd.py | 2 +-
.../kubernetes/log_handlers/test_log_handlers.py | 9 +-
.../unit/cncf/kubernetes/operators/test_job.py | 19 +-
.../unit/cncf/kubernetes/operators/test_pod.py | 27 +-
.../kubernetes/operators/test_spark_kubernetes.py | 67 ++--
.../cncf/kubernetes/test_template_rendering.py | 2 +-
.../tests/unit/common/sql/operators/test_sql.py | 29 +-
.../databricks/operators/test_databricks_copy.py | 3 +-
.../tests/unit/dbt/cloud/operators/test_dbt.py | 6 +-
.../tests/unit/docker/decorators/test_docker.py | 9 +-
.../tests/unit/docker/operators/test_docker.py | 23 +-
.../airflow/providers/fab/www/package-lock.json | 6 +-
providers/git/docs/bundles/index.rst | 1 +
.../git/src/airflow/providers/git/bundles/git.py | 39 ++-
providers/git/tests/unit/git/bundles/test_git.py | 116 +++++++
.../unit/google/cloud/links/test_base_link.py | 30 +-
.../tests/unit/google/cloud/links/test_dataplex.py | 132 ++++---
.../unit/google/cloud/operators/test_bigquery.py | 169 +++------
.../google/cloud/operators/test_cloud_build.py | 11 +-
.../test_cloud_storage_transfer_service.py | 114 +++----
.../unit/google/cloud/operators/test_compute.py | 42 +--
.../unit/google/cloud/operators/test_dataprep.py | 26 +-
.../unit/google/cloud/operators/test_dataproc.py | 35 +-
.../unit/google/cloud/operators/test_pubsub.py | 8 +-
.../unit/google/cloud/operators/test_vertex_ai.py | 10 +-
.../google/cloud/transfers/test_gcs_to_bigquery.py | 15 +-
.../operators/test_campaign_manager.py | 4 +-
.../http/tests/unit/http/sensors/test_http.py | 4 +-
.../microsoft/azure/operators/test_data_factory.py | 37 +-
.../unit/microsoft/azure/operators/test_powerbi.py | 5 +-
.../unit/microsoft/azure/operators/test_synapse.py | 10 +-
.../unit/microsoft/azure/sensors/test_wasb.py | 5 +-
.../tests/unit/openlineage/plugins/test_adapter.py | 13 +-
.../unit/openlineage/plugins/test_listener.py | 39 ++-
.../tests/unit/openlineage/utils/test_utils.py | 17 +-
.../unit/redis/log/test_redis_task_handler.py | 3 +-
.../sftp/tests/unit/sftp/operators/test_sftp.py | 73 ++--
.../unit/snowflake/operators/test_snowflake.py | 3 +-
providers/ssh/tests/unit/ssh/operators/test_ssh.py | 3 +-
.../airflow/providers/standard/decorators/bash.py | 3 +-
.../tests/unit/standard/decorators/test_bash.py | 21 +-
.../standard/decorators/test_external_python.py | 41 +--
.../tests/unit/standard/decorators/test_python.py | 23 +-
.../tests/unit/standard/operators/test_bash.py | 38 +--
.../tests/unit/standard/operators/test_hitl.py | 35 +-
.../tests/unit/standard/operators/test_python.py | 68 ++--
.../standard/sensors/test_external_task_sensor.py | 10 +-
.../tests/unit/standard/utils/test_skipmixin.py | 107 +++---
.../tests/unit/weaviate/operators/test_weaviate.py | 19 +-
.../yandex/tests/unit/yandex/links/test_yq.py | 39 +--
providers/ydb/tests/unit/ydb/operators/test_ydb.py | 3 +-
.../src/airflow/sdk/api/datamodels/_generated.py | 6 +-
task-sdk/src/airflow/sdk/definitions/dag.py | 9 +-
task-sdk/src/airflow/sdk/execution_time/comms.py | 15 +-
.../src/airflow/sdk/execution_time/task_runner.py | 25 +-
.../task_sdk/execution_time/test_supervisor.py | 19 +-
.../task_sdk/execution_time/test_task_runner.py | 18 +-
137 files changed, 2370 insertions(+), 1817 deletions(-)
create mode 100644 airflow-core/newsfragments/59835.significant.rst
copy
airflow-core/src/airflow/api_fastapi/execution_api/versions/{v2025_09_23.py =>
v2026_03_31.py} (67%)
create mode 100644 airflow-core/src/airflow/ui/tests/e2e/pages/BackfillPage.ts
create mode 100644 airflow-core/src/airflow/ui/tests/e2e/pages/HomePage.ts
create mode 100644 airflow-core/src/airflow/ui/tests/e2e/specs/backfill.spec.ts
create mode 100644
airflow-core/src/airflow/ui/tests/e2e/specs/home-dashboard.spec.ts
create mode 100644 devel-common/src/tests_common/test_utils/taskinstance.py