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 cb577ebe35c Bump the core-ui-package-updates group across 1 directory 
with 41 updates
     add a9f3e20133d Add ability to get previous TI on ``RuntimeTaskInstance`` 
(#59712)
     add fe74a01fd18 Bump the edge-ui-package-updates group across 1 directory 
with 19 updates (#59719)
     add 2f3294cf5eb MySQL: migration to ensure correct nullity of log.event 
and dag.is_stale (#59765)
     add e5b9e196e7a Add Echoenergia to INTHEWILD.md (#59771)
     add f924024a19a Revert "Feat: Support URL params for pre-filling Trigger 
and Backfill forms (…" (#59769)
     add 074548d76d7 Split DAGNode in Core and SDK (#59708)
     add dad102e9c7e Split SerializedBaseOperator from serde logic (#59627)
     add 2461b09d240 Duplicate EdgeInfoType in Core (#59774)
     add f73cf9d9938 Move XComOperatorLink to separate module (#59776)
     add 9e9874fd524 Sqlalchemy 2.0 changes (test_types.py, test_manager.py, 
test_processor.py) (#59748)
     add cd0cb083a19 Remove global from logging_config (#59763)
     add a9dea6d0b81 Prevent client secrets and proxy credentials from being 
logged in Microsoft Graph hook logs (#59688)
     add 238aefbfd8b Support messages for BuildKit & Podman in Breeze (#59775)
     add e2e286df8be Fix DAG bundle imports in subprocess operators (#57631)
     add 9045538d281 Fix compatibility test uri hint (#59788)
     add 2ead075ee22 Move SchedulerXComArg to serialization (#59777)
     add 20311719342 Expose literal and ParamsDict at SDK top level (#59782)
     add ee5e21bb8a2 Support uuid ser/deser in serde (#59783)
     add f86820e000c [helm] Isolate defaultUser handling in createUserJob 
(#59767)
     add 846a334b422 [helm] Remove defaultUser of apiServer in 
values.schema.json (#59762)
     add ac085a42565 refactor: modernize Playwright patterns in Page Objects 
(#59789)
     add e362dc7793c 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   (cb577ebe35c)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-37ab7916ac
 (e362dc7793c)

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                            |    3 +
 INTHEWILD.md                                       |    1 +
 airflow-core/docs/core-concepts/params.rst         |   52 -
 airflow-core/docs/img/airflow_erd.sha256           |    2 +-
 airflow-core/docs/img/airflow_erd.svg              | 4350 ++++++++++----------
 airflow-core/docs/migrations-ref.rst               |    5 +-
 airflow-core/newsfragments/59688.improvement.rst   |    1 +
 airflow-core/pyproject.toml                        |    6 +-
 airflow-core/src/airflow/__init__.py               |    2 +-
 airflow-core/src/airflow/_shared/dagnode           |    1 +
 airflow-core/src/airflow/api/common/mark_tasks.py  |    3 +-
 .../src/airflow/api_fastapi/common/dagbag.py       |    2 +-
 .../src/airflow/api_fastapi/common/parameters.py   |    2 +-
 .../api_fastapi/core_api/datamodels/dag_run.py     |    2 +-
 .../core_api/services/public/task_instances.py     |    2 +-
 .../api_fastapi/core_api/services/ui/calendar.py   |    2 +-
 .../api_fastapi/core_api/services/ui/grid.py       |    2 +-
 .../api_fastapi/core_api/services/ui/task_group.py |    2 +-
 .../execution_api/datamodels/taskinstance.py       |   15 +
 .../execution_api/routes/task_instances.py         |   59 +-
 .../src/airflow/cli/commands/task_command.py       |    2 +-
 .../config_templates/airflow_local_settings.py     |    2 +-
 .../src/airflow/dag_processing/collection.py       |    3 +-
 .../src/airflow/dag_processing/processor.py        |   12 +
 .../src/airflow/jobs/scheduler_job_runner.py       |    2 +-
 .../src/airflow/jobs/triggerer_job_runner.py       |   10 +
 airflow-core/src/airflow/logging_config.py         |   26 +-
 ...enforce_log_event_and_dag_is_stale_not_null.py} |   48 +-
 airflow-core/src/airflow/models/backfill.py        |    2 +-
 airflow-core/src/airflow/models/dag.py             |    5 +-
 airflow-core/src/airflow/models/dagbag.py          |    2 +-
 airflow-core/src/airflow/models/dagrun.py          |    3 +-
 airflow-core/src/airflow/models/expandinput.py     |   10 +-
 airflow-core/src/airflow/models/log.py             |    2 +-
 airflow-core/src/airflow/models/mappedoperator.py  |  105 +-
 airflow-core/src/airflow/models/referencemixin.py  |    2 +-
 .../src/airflow/models/renderedtifields.py         |    2 +-
 airflow-core/src/airflow/models/taskinstance.py    |    9 +-
 airflow-core/src/airflow/models/taskmap.py         |    4 +-
 airflow-core/src/airflow/models/xcom_arg.py        |  232 +-
 .../serialization/definitions/baseoperator.py      |  452 ++
 .../src/airflow/serialization/definitions/dag.py   |   20 +-
 .../src/airflow/serialization/definitions/node.py  |   54 +
 .../serialization/definitions/operatorlink.py      |   76 +
 .../airflow/serialization/definitions/taskgroup.py |   11 +-
 .../definitions}/xcom_arg.py                       |   14 +-
 .../airflow/serialization/serialized_objects.py    |  515 +--
 .../ti_deps/deps/mapped_task_upstream_dep.py       |    2 +-
 .../src/airflow/ti_deps/deps/prev_dagrun_dep.py    |    2 +-
 .../src/airflow/ti_deps/deps/trigger_rule_dep.py   |    9 +-
 airflow-core/src/airflow/ui/package.json           |    4 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         |  280 +-
 .../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/queries/useTrigger.ts       |    4 +-
 airflow-core/src/airflow/ui/src/router.tsx         |    1 -
 airflow-core/src/airflow/ui/src/utils/trigger.ts   |  114 -
 .../src/airflow/ui/tests/e2e/pages/BasePage.ts     |   12 +-
 .../src/airflow/ui/tests/e2e/pages/DagsPage.ts     |   22 +-
 airflow-core/src/airflow/utils/cli.py              |    2 +-
 airflow-core/src/airflow/utils/dag_edges.py        |   11 +-
 airflow-core/src/airflow/utils/db.py               |    2 +-
 airflow-core/src/airflow/utils/dot_renderer.py     |    6 +-
 .../src/airflow/utils/log/file_task_handler.py     |    4 +-
 .../tests/unit/api/common/test_mark_tasks.py       |    2 +-
 .../versions/head/test_task_instances.py           |  189 +
 .../tests/unit/dag_processing/test_manager.py      |   32 +-
 .../tests/unit/dag_processing/test_processor.py    |    5 +-
 airflow-core/tests/unit/jobs/test_scheduler_job.py |    3 +-
 airflow-core/tests/unit/jobs/test_triggerer_job.py |    1 +
 airflow-core/tests/unit/models/test_cleartasks.py  |    2 +-
 airflow-core/tests/unit/models/test_dagcode.py     |    2 +-
 airflow-core/tests/unit/models/test_dagrun.py      |    4 +-
 .../tests/unit/models/test_mappedoperator.py       |    2 +-
 .../tests/unit/models/test_taskinstance.py         |    7 +-
 .../unit/serialization/test_dag_serialization.py   |  132 +-
 .../unit/serialization/test_serialized_objects.py  |    2 +-
 airflow-core/tests/unit/utils/test_log_handlers.py |    2 +-
 airflow-core/tests/unit/utils/test_types.py        |    9 +-
 chart/templates/NOTES.txt                          |    8 +-
 .../jobs/create-user-job-serviceaccount.yaml       |    2 +-
 chart/templates/jobs/create-user-job.yaml          |    2 +-
 .../security-context-constraint-rolebinding.yaml   |    2 +-
 chart/values.schema.json                           |  141 +-
 chart/values.yaml                                  |   32 +-
 .../airflow_breeze/utils/docker_command_utils.py   |   23 +-
 dev/breeze/src/airflow_breeze/utils/run_utils.py   |   15 +-
 dev/breeze/tests/test_run_utils.py                 |   55 +
 devel-common/src/tests_common/pytest_plugin.py     |    2 +-
 devel-common/src/tests_common/test_utils/compat.py |    8 +-
 .../src/tests_common/test_utils/mapping.py         |    2 +-
 docs/spelling_wordlist.txt                         |    1 -
 .../airflow_aux/test_basic_helm_chart.py           |   13 -
 .../airflow_aux/test_container_lifecycle.py        |    1 -
 .../helm_tests/airflow_aux/test_create_user_job.py |   39 +-
 helm-tests/tests/helm_tests/security/test_rbac.py  |    2 +-
 .../helm_tests/security/test_scc_rolebinding.py    |    5 +-
 .../helm_tests/security/test_security_context.py   |    4 +-
 .../amazon/aws/log/test_cloudwatch_task_handler.py |    9 +-
 .../src/airflow/providers/common/compat/sdk.py     |   12 +-
 .../providers/edge3/plugins/www/package.json       |   38 +-
 .../providers/edge3/plugins/www/pnpm-lock.yaml     | 1567 +++----
 providers/edge3/www-hash.txt                       |    2 +-
 .../fab/auth_manager/security_manager/override.py  |    2 +-
 .../providers/microsoft/azure/hooks/msgraph.py     |    9 +-
 .../unit/microsoft/azure/hooks/test_msgraph.py     |   22 +-
 .../openlineage/utils/selective_enable.py          |    2 +-
 .../tests/unit/openlineage/utils/test_utils.py     |   11 +-
 .../airflow/providers/standard/operators/python.py |   30 +
 .../tests/unit/standard/operators/test_python.py   |   84 +
 .../standard/sensors/test_external_task_sensor.py  |    6 +-
 .../unit/standard/utils/test_sensor_helper.py      |    2 +-
 pyproject.toml                                     |    1 +
 scripts/in_container/run_ci_tests.sh               |    2 +-
 scripts/in_container/run_schema_defaults_check.py  |    2 +-
 shared/{module_loading => dagnode}/pyproject.toml  |    5 +-
 .../src/airflow_shared/dagnode}/__init__.py        |    0
 .../dagnode/src/airflow_shared/dagnode}/node.py    |  212 +-
 .../_shared => shared/dagnode/tests}/__init__.py   |    0
 .../dagnode/tests/dagnode}/__init__.py             |    0
 shared/dagnode/tests/dagnode/test_node.py          |   83 +
 .../secrets_masker/secrets_masker.py               |    2 +
 task-sdk/docs/api.rst                              |   14 +-
 task-sdk/pyproject.toml                            |    4 +-
 task-sdk/src/airflow/sdk/__init__.py               |    8 +-
 task-sdk/src/airflow/sdk/_shared/dagnode           |    1 +
 task-sdk/src/airflow/sdk/api/client.py             |   27 +
 .../src/airflow/sdk/api/datamodels/_generated.py   |   53 +-
 .../airflow/sdk/definitions/_internal/mixins.py    |    2 -
 .../src/airflow/sdk/definitions/_internal/node.py  |  187 +-
 task-sdk/src/airflow/sdk/definitions/dag.py        |    3 +-
 task-sdk/src/airflow/sdk/execution_time/comms.py   |   21 +
 .../src/airflow/sdk/execution_time/supervisor.py   |    9 +
 .../src/airflow/sdk/execution_time/task_runner.py  |   43 +
 task-sdk/src/airflow/sdk/log.py                    |   14 +-
 .../src/airflow/sdk/serde/serializers/uuid.py      |   33 +-
 task-sdk/src/airflow/sdk/types.py                  |    9 +-
 task-sdk/tests/task_sdk/api/test_client.py         |  120 +
 task-sdk/tests/task_sdk/docs/test_public_api.py    |    2 +-
 .../task_sdk/execution_time/test_supervisor.py     |   52 +
 .../task_sdk/execution_time/test_task_runner.py    |  128 +
 task-sdk/tests/task_sdk/serde/test_serializers.py  |   14 +
 146 files changed, 5205 insertions(+), 5240 deletions(-)
 create mode 100644 airflow-core/newsfragments/59688.improvement.rst
 create mode 120000 airflow-core/src/airflow/_shared/dagnode
 copy 
airflow-core/src/airflow/migrations/versions/{0046_3_0_0_drop_dag_pickling.py 
=> 0095_3_2_0_enforce_log_event_and_dag_is_stale_not_null.py} (50%)
 create mode 100644 
airflow-core/src/airflow/serialization/definitions/baseoperator.py
 create mode 100644 airflow-core/src/airflow/serialization/definitions/node.py
 create mode 100644 
airflow-core/src/airflow/serialization/definitions/operatorlink.py
 copy airflow-core/src/airflow/{models => 
serialization/definitions}/xcom_arg.py (95%)
 delete mode 100644 airflow-core/src/airflow/ui/src/utils/trigger.ts
 copy shared/{module_loading => dagnode}/pyproject.toml (90%)
 copy {airflow-core/src/airflow/_shared => 
shared/dagnode/src/airflow_shared/dagnode}/__init__.py (100%)
 copy {task-sdk/src/airflow/sdk/definitions/_internal => 
shared/dagnode/src/airflow_shared/dagnode}/node.py (50%)
 copy {airflow-core/src/airflow/_shared => shared/dagnode/tests}/__init__.py 
(100%)
 copy {airflow-core/src/airflow/_shared => 
shared/dagnode/tests/dagnode}/__init__.py (100%)
 create mode 100644 shared/dagnode/tests/dagnode/test_node.py
 create mode 120000 task-sdk/src/airflow/sdk/_shared/dagnode
 copy 
airflow-core/src/airflow/example_dags/plugins/decreasing_priority_weight_strategy.py
 => task-sdk/src/airflow/sdk/serde/serializers/uuid.py (55%)

Reply via email to