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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-37ab7916ac
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 44082ba5ec4 Bump the core-ui-package-updates group across 1 directory 
with 41 updates
     add 20fd40a7e70 Don't issue warning if memray_trace_components was not set 
(#59666)
     add 907b4ef5340 Feat: Support URL params for pre-filling Trigger and 
Backfill forms (#59231)
     add 8f15520779b More update to using SQLA2 (#59700)
     add eb6844f58cb SQLA2: avoid unnecessary locking when working with TIs 
(#59686)
     add 3bf0ed824f3 Upper-bind FastAPI until Cadwyn is adapted to FastAPI 
0.126.0+ (#59726)
     add 1d0c7849ad4 `issue-59576`: Properly Link Public/Private Provider Docs 
(#59584)
     add 267a566e048 Updating WSL step and breeze console text update (#59699)
     add 94517f8a62b fix(scheduler): Eager-load DagRun asset relationships 
before creating DagRunContext (#59714)
     add 53ea85e234b Split serde logic from SerializedDAG (#59596)
     add d24879843ac De-obfuscate scheduler dag run creation "continue" logic 
(#59716)
     add bcd63aab1eb Remove experimental flag and add doc for pre/post-execute 
(#59656)
     add 0d016a6761c Bump zizmor version to 1.19.0 (#59737)
     add 5945bd59363 Fix circular import errors when CeleryExecutor is used 
with sentry (#59745)
     add bca0a63ec38 Fix missing TaskInstanceHistory on scheduler TI resets 
(#59639)
     add d91b6c47b80 SQLA2: Address assorted mypy violations in airflow-core 
(#59746)
     add f798302c434 Get last run info one dag at a time (#59376)
     add 40ea0c549a0 Force uninstall edge provider for Breeze start-airflow cmd 
for Airflow 2 (#59751)
     add cb577ebe35c Bump the core-ui-package-updates group across 1 directory 
with 41 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   (44082ba5ec4)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-37ab7916ac
 (cb577ebe35c)

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                            |    6 +-
 airflow-core/docs/core-concepts/operators.rst      |   36 +-
 airflow-core/docs/core-concepts/params.rst         |   52 +
 airflow-core/pyproject.toml                        |    9 +-
 airflow-core/src/airflow/api/common/mark_tasks.py  |    7 +-
 .../api_fastapi/core_api/datamodels/providers.py   |    1 +
 .../core_api/openapi/v2-rest-api-generated.yaml    |    6 +
 .../core_api/services/public/providers.py          |    1 +
 .../execution_api/routes/task_instances.py         |   36 +-
 .../src/airflow/cli/commands/task_command.py       |   18 +-
 .../src/airflow/config_templates/config.yml        |    4 +-
 .../src/airflow/dag_processing/collection.py       |   79 +-
 .../src/airflow/dag_processing/processor.py        |    4 +-
 .../src/airflow/jobs/scheduler_job_runner.py       |   77 +-
 airflow-core/src/airflow/models/serialized_dag.py  |    9 +-
 airflow-core/src/airflow/models/taskinstance.py    |    8 +-
 airflow-core/src/airflow/providers_manager.py      |   15 +
 .../src/airflow/serialization/definitions/dag.py   | 1112 +++++++++++++++++++
 .../airflow/serialization/definitions/taskgroup.py |    2 +-
 .../airflow/serialization/serialized_objects.py    | 1125 +-------------------
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |   13 +-
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |    1 +
 airflow-core/src/airflow/ui/package.json           |    2 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         |  286 ++---
 .../src/airflow/ui/src/components/ConfigForm.tsx   |    6 +-
 .../src/components/DagActions/RunBackfillForm.tsx  |   47 +-
 .../TriggerDag/TriggerDAGAdvancedOptions.tsx       |    3 +-
 .../src/components/TriggerDag/TriggerDAGForm.tsx   |  132 ++-
 .../src/components/TriggerDag/TriggerDAGModal.tsx  |   26 +-
 .../airflow/ui/src/pages/Dag/Overview/Overview.tsx |   19 +-
 .../src/airflow/ui/src/pages/Providers.tsx         |    5 +-
 .../src/airflow/ui/src/queries/useTrigger.ts       |    4 +-
 airflow-core/src/airflow/ui/src/router.tsx         |    1 +
 airflow-core/src/airflow/ui/src/utils/trigger.ts   |  114 ++
 airflow-core/tests/integration/otel/test_otel.py   |    5 +-
 .../tests/unit/always/test_providers_manager.py    |    2 +
 .../core_api/routes/public/test_dag_run.py         |    2 +-
 .../core_api/routes/public/test_providers.py       |    2 +
 .../core_api/routes/public/test_task_instances.py  |   12 +-
 .../execution_api/versions/head/test_dag_runs.py   |    9 +-
 .../execution_api/versions/head/test_variables.py  |   13 +-
 .../execution_api/versions/head/test_xcoms.py      |   72 +-
 .../tests/unit/cli/commands/test_task_command.py   |    4 +-
 .../tests/unit/dag_processing/test_collection.py   |   21 +-
 airflow-core/tests/unit/jobs/test_scheduler_job.py |  113 +-
 airflow-core/tests/unit/models/test_cleartasks.py  |    2 +-
 airflow-core/tests/unit/models/test_dag.py         |   39 +-
 .../tests/unit/models/test_serialized_dag.py       |   19 +-
 .../unit/serialization/test_dag_serialization.py   |  230 ++--
 .../unit/serialization/test_serialized_objects.py  |    6 +-
 .../tests/unit/timetables/test_assets_timetable.py |   11 +-
 airflow-core/tests/unit/utils/test_db_cleanup.py   |    3 +-
 airflow-core/tests/unit/utils/test_task_group.py   |    6 +-
 .../src/airflowctl/api/datamodels/generated.py     |    1 +
 contributing-docs/03_contributors_quick_start.rst  |    3 +-
 devel-common/src/tests_common/test_utils/compat.py |   13 +
 devel-common/src/tests_common/test_utils/dag.py    |   13 +-
 docs/spelling_wordlist.txt                         |    1 +
 .../tests/unit/amazon/aws/links/test_base_aws.py   |    6 +-
 .../providers/common/compat/version_compat.py      |    7 +-
 .../unit/google/cloud/operators/test_dataproc.py   |   23 +-
 .../in_container/install_airflow_and_providers.py  |    3 +-
 scripts/in_container/run_schema_defaults_check.py  |    2 +-
 .../src/airflow_shared/configuration/parser.py     |   29 +-
 .../tests/configuration/test_parser.py             |   26 +-
 .../src/airflow_shared/logging/structlog.py        |   27 +-
 .../observability/metrics/datadog_logger.py        |   16 +-
 .../observability/metrics/otel_logger.py           |    6 +-
 .../observability/traces/otel_tracer.py            |    2 +-
 task-sdk/src/airflow/sdk/bases/operator.py         |    4 -
 task-sdk/src/airflow/sdk/definitions/dag.py        |    8 +-
 task-sdk/tests/task_sdk/definitions/test_asset.py  |    5 +-
 72 files changed, 2267 insertions(+), 1765 deletions(-)
 create mode 100644 airflow-core/src/airflow/serialization/definitions/dag.py
 create mode 100644 airflow-core/src/airflow/ui/src/utils/trigger.ts

Reply via email to