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/v3-1-test/core-ui-package-updates-fed4ef6c6a
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 04f35ba09ee Bump the core-ui-package-updates group across 1 directory 
with 56 updates
     add 1336cbc54ca Optimize dynamic DAG updates to avoid loading large 
serialized DAGs (#57592)
     add 0725199125d Add release notes for 3.1.2rc1
     add 6193c872109 Fix Execution API migration version to be consistent with 
released 3.1.1 (#57748)
     add 91a078d8a22 Fix upgrade failure when xcom contains NaN in string 
values (#57614)
     add 85db0c2a33b [v3-1-test] Remove leftovers from unlimited parallelism in 
local executor (#57579) (#57644)
     add 078275d2e96 [v3-1-test] Fix: Prevent AttributeError crash in prek when 
run inside container (#57497) (#57649)
     add cd4c21f27b5 [v3-1-test] Enable ruff PLW0602 rule (apache#57588) 
(#57638)
     add 0db042d3a1c [v3-1-test] Upgrade Python Runtime to 3.9.25 (#57656) 
(#57661)
     add 898ba7e1645 [v3-1-test] Fix code formatting via ruff preview (#57641) 
(#57670)
     add 2792668c65b [v3-1-test] Enable ruff PLW1508 rule (#57653) (#57673)
     add fefce37f1a6 [v3-1-test] Enable ruff PLW1510 rule (#57660) (#57674)
     add 9fcb2781c89 [v3-1-test] Dev: Add Task SDK support to `start-release` 
command (#57658) (#57666)
     add 6b985004c5b Add `localstack` Breeze integration (#54050) (#57668)
     add 3df5e12e024 [v3-1-test] Support PR number with use-airflow-version in 
Breeze (#57667) (#57688)
     add b0dec9c2742 [v3-1-test] Refactor trigger method (#57678) (#57687)
     add eb951950ccd [v3-1-test] Enable ruff PLW0211 rule (#57522) (#57684)
     add c80c185a32b [v3-1-test] Shorten German Translation of Asset in 
Navigation (#57671) (#57690)
     add ce886e03aa3 [v3-1-test] Update diagrams>=0.24.4 (#57483) (#57698)
     add b538942ae9a [v3-1-test] Upgrade Zizmor to 1.16.2 (#57708) (#57709)
     add 01b6943eaf3 [v3-1-test] Use eralchemy instead of eralchemy2 (#55758) 
(#57715)
     add 7d0ca45be05 [v3-1-test] Enable ruff PLW1641 rule (#57679) (#57701)
     add 0850ff3871c [v3-1-test] Make `extra` of Asset, AssetAlias, AssetEvent 
a `dict[str, JsonValue]` (#57352) (#57728)
     add 71912f73720 [v3-1-test] Add number of queries guard for public 
variables (#57647) (#57732)
     add 5cf934a3720 [v3-1-test] Remove Python 3.9 since we are not 
cherry-picking to 3.0 (#57662) (#57669)
     add fa891855cff [v3-1-test] Add link to Airflow CVEs in MITRE CVE 
database. (#57683) (#57689)
     add ae9ba129611 Add number of queries guard in public dag runs list 
endpoints  (#57450) (#57736)
     add ea401c8373d [v3-1-test] Add number of queries guard in public 
providers list endpoints (#57635) (#57643)
     add f8bd92450d8 Bump the core-ui-package-updates group across 1 directory 
with 56 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   (04f35ba09ee)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/v3-1-test/core-ui-package-updates-fed4ef6c6a
 (f8bd92450d8)

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                            |    2 +-
 Dockerfile.ci                                      |   21 +
 RELEASE_NOTES.rst                                  |   62 +
 airflow-core/docs/core-concepts/executor/local.rst |   39 +-
 airflow-core/docs/img/airflow_erd.sha256           |    2 +-
 airflow-core/docs/security/index.rst               |    7 +
 airflow-core/src/airflow/api_fastapi/app.py        |    2 -
 .../auth/managers/simple/simple_auth_manager.py    |    2 +-
 .../src/airflow/api_fastapi/common/db/dag_runs.py  |   19 +
 .../src/airflow/api_fastapi/core_api/app.py        |    2 +-
 .../api_fastapi/core_api/datamodels/assets.py      |    6 +-
 .../core_api/datamodels/dag_versions.py            |   28 +-
 .../api_fastapi/core_api/datamodels/dags.py        |    4 +-
 .../api_fastapi/core_api/openapi/_private_ui.yaml  |    1 -
 .../core_api/openapi/v2-rest-api-generated.yaml    |    7 +-
 .../api_fastapi/core_api/routes/public/dag_run.py  |   13 +-
 .../api_fastapi/execution_api/datamodels/asset.py  |    4 +-
 .../execution_api/datamodels/asset_event.py        |    4 +-
 .../execution_api/datamodels/taskinstance.py       |    5 +-
 .../api_fastapi/execution_api/versions/__init__.py |    4 +-
 airflow-core/src/airflow/configuration.py          |    2 +-
 .../src/airflow/executors/local_executor.py        |   11 +-
 airflow-core/src/airflow/lineage/hook.py           |    8 +-
 airflow-core/src/airflow/logging_config.py         |    1 -
 ...49_3_0_0_remove_pickled_data_from_xcom_table.py |    8 +-
 airflow-core/src/airflow/models/dag_version.py     |   39 +-
 airflow-core/src/airflow/models/serialized_dag.py  |   27 +-
 airflow-core/src/airflow/models/taskinstance.py    |   14 +-
 airflow-core/src/airflow/operators/__init__.py     |    8 +-
 airflow-core/src/airflow/plugins_manager.py        |   14 -
 airflow-core/src/airflow/sensors/__init__.py       |    6 +-
 .../airflow/serialization/serialized_objects.py    |    3 +
 airflow-core/src/airflow/task/priority_strategy.py |    3 +
 .../ti_deps/deps/not_previously_skipped_dep.py     |    2 +-
 airflow-core/src/airflow/timetables/_cron.py       |    3 +
 airflow-core/src/airflow/timetables/interval.py    |    3 +
 airflow-core/src/airflow/timetables/simple.py      |    3 +
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |   11 +-
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |    6 +-
 airflow-core/src/airflow/ui/package.json           |   18 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         | 1918 ++++++++++----------
 .../airflow/ui/public/i18n/locales/de/README.md    |    3 +-
 .../airflow/ui/public/i18n/locales/de/common.json  |    2 +-
 airflow-core/src/airflow/utils/db.py               |    3 +
 .../src/airflow/utils/log/file_task_handler.py     |    2 +-
 .../core_api/routes/public/test_dag_run.py         |   25 +-
 .../core_api/routes/public/test_dag_versions.py    |   10 +-
 .../core_api/routes/public/test_dags.py            |    2 +-
 .../core_api/routes/public/test_providers.py       |    5 +-
 .../core_api/routes/public/test_task_instances.py  |    2 +-
 .../core_api/routes/public/test_variables.py       |    4 +-
 .../tests/unit/charts/helm_template_generator.py   |    2 +-
 .../tests/unit/executors/test_local_executor.py    |   15 +-
 .../executors/test_local_executor_check_workers.py |   10 -
 .../tests/unit/models/test_renderedtifields.py     |    3 +
 .../tests/unit/models/test_serialized_dag.py       |   84 +
 .../tests/unit/models/test_taskinstance.py         |   20 +-
 .../unit/serialization/test_dag_serialization.py   |    3 +
 .../tests/unit/serialization/test_serde.py         |    3 +
 .../unit/serialization/test_serialized_objects.py  |    6 +-
 airflow-core/tests/unit/utils/test_json.py         |    3 +
 airflow-core/tests/unit/utils/test_log_handlers.py |    1 -
 airflow-core/tests/unit/utils/test_sqlalchemy.py   |    2 +-
 .../tests/airflowctl_tests/conftest.py             |    1 -
 airflow-ctl/docs/images/command_hashes.txt         |    4 +-
 airflow-ctl/docs/images/output_dagrun.svg          |   70 +-
 airflow-ctl/docs/images/output_dags.svg            |  114 +-
 .../src/airflowctl/api/datamodels/generated.py     |    4 +-
 airflow-ctl/src/airflowctl/api/operations.py       |   28 +-
 .../tests/airflow_ctl/api/test_operations.py       |   63 +-
 contributing-docs/testing/integration_tests.rst    |    2 +
 dev/README_RELEASE_AIRFLOW.md                      |   96 +-
 dev/airflow-github                                 |    2 -
 dev/airflow_perf/sql_queries.py                    |    3 +
 dev/breeze/doc/03_developer_tasks.rst              |   23 +
 dev/breeze/doc/images/output-commands.svg          |    6 +-
 ...e-management_install-provider-distributions.svg |   66 +-
 ...e-management_install-provider-distributions.txt |    2 +-
 .../output_release-management_start-release.svg    |   28 +-
 .../output_release-management_start-release.txt    |    2 +-
 ...se-management_verify-provider-distributions.svg |   48 +-
 ...se-management_verify-provider-distributions.txt |    2 +-
 dev/breeze/doc/images/output_shell.svg             |   98 +-
 dev/breeze/doc/images/output_shell.txt             |    2 +-
 dev/breeze/doc/images/output_start-airflow.svg     |   74 +-
 dev/breeze/doc/images/output_start-airflow.txt     |    2 +-
 .../doc/images/output_testing_core-tests.svg       |   48 +-
 .../doc/images/output_testing_core-tests.txt       |    2 +-
 .../output_testing_providers-integration-tests.svg |    4 +-
 .../output_testing_providers-integration-tests.txt |    2 +-
 .../doc/images/output_testing_providers-tests.svg  |   66 +-
 .../doc/images/output_testing_providers-tests.txt  |    2 +-
 .../doc/images/output_testing_system-tests.svg     |   48 +-
 .../doc/images/output_testing_system-tests.txt     |    2 +-
 .../src/airflow_breeze/commands/common_options.py  |    5 +-
 .../src/airflow_breeze/commands/release_command.py |  151 +-
 .../commands/release_management_commands_config.py |    5 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |    4 +-
 .../src/airflow_breeze/params/shell_params.py      |    1 +
 .../prepare_providers/provider_documentation.py    |    1 -
 .../src/airflow_breeze/utils/custom_param_types.py |    7 +-
 .../src/airflow_breeze/utils/publish_docs_to_s3.py |    7 +-
 dev/breeze/tests/test_use_airflow_version.py       |   54 +
 dev/breeze/uv.lock                                 | 1862 +++++++++----------
 devel-common/pyproject.toml                        |    6 +-
 .../src/sphinx_exts/docs_build/docs_builder.py     |    2 +
 devel-common/src/sphinx_exts/docs_build/errors.py  |    3 +
 .../sphinx_exts/docs_build/fetch_inventories.py    |    1 -
 .../src/sphinx_exts/docs_build/spelling_checks.py  |    3 +
 .../src/tests_common/test_utils/timetables.py      |    3 +
 docker-tests/tests/docker_tests/test_prod_image.py |    2 +-
 generated/devel_deps.txt                           |    2 +-
 .../tests/chart_utils/helm_template_generator.py   |    2 +-
 .../tests/kubernetes_tests/test_base.py            |    3 +
 .../amazon/aws/executors/aws_lambda/docker/app.py  |    6 +-
 .../providers/amazon/aws/hooks/batch_waiters.py    |    1 -
 .../tests/system/amazon/aws/example_bedrock.py     |    4 +-
 .../aws/executors/batch/test_batch_executor.py     |    5 +-
 .../tests/unit/apache/livy/operators/test_livy.py  |    5 +-
 .../apache/spark/operators/test_spark_submit.py    |    5 +-
 .../celery/executors/celery_executor_utils.py      |    9 +-
 .../integration/celery/test_celery_executor.py     |    3 +
 .../unit/celery/log_handlers/test_log_handlers.py  |    1 -
 .../airflow/providers/cncf/kubernetes/secret.py    |    3 +
 .../kubernetes/log_handlers/test_log_handlers.py   |    1 -
 .../unit/cncf/kubernetes/operators/test_pod.py     |    7 +-
 .../unit/cncf/kubernetes/triggers/test_pod.py      |   14 +-
 .../src/airflow/providers/common/sql/hooks/sql.pyi |    6 +-
 .../sql/tests/unit/common/sql/hooks/test_dbapi.py  |    1 -
 .../sql/tests/unit/common/sql/hooks/test_sql.py    |    1 -
 .../providers/databricks/hooks/databricks.py       |    9 +
 .../databricks/plugins/databricks_workflow.py      |    5 -
 .../databricks/example_databricks_workflow.py      |    2 +-
 .../tests/unit/databricks/hooks/test_databricks.py |    2 -
 .../src/airflow/providers/edge3/cli/api_client.py  |   12 +-
 .../providers/edge3/worker_api/routes/worker.py    |    2 +-
 .../providers/fab/auth_manager/models/__init__.py  |    3 +
 .../providers/google/cloud/hooks/bigquery.py       |    2 +-
 .../providers/google/cloud/hooks/cloud_sql.py      |    2 +-
 .../providers/google/cloud/hooks/dataflow.py       |    2 +-
 .../providers/google/cloud/hooks/dataproc.py       |    2 +-
 .../providers/google/cloud/hooks/mlengine.py       |    2 +-
 .../google/common/auth_backend/google_openid.py    |    1 -
 .../providers/google/common/hooks/base_google.py   |    1 -
 .../google/common/utils/id_token_credentials.py    |    3 +-
 .../example_cloud_storage_transfer_service_aws.py  |    2 +-
 .../google/cloud/triggers/test_bigquery_dts.py     |    7 +-
 .../unit/google/cloud/triggers/test_dataflow.py    |    4 +-
 .../unit/google/cloud/triggers/test_dataplex.py    |    2 +-
 .../cloud/triggers/test_kubernetes_engine.py       |   22 +-
 .../microsoft/azure/example_azure_service_bus.py   |    2 +-
 .../microsoft/azure/example_azure_synapse.py       |    6 +-
 .../airflow/providers/postgres/hooks/postgres.py   |    1 -
 .../unit/snowflake/operators/test_snowflake_sql.py |    3 +
 .../tests/unit/standard/operators/test_python.py   |    2 -
 .../tests/unit/weaviate/hooks/test_weaviate.py     |    3 +
 pyproject.toml                                     |   18 +-
 reproducible_build.yaml                            |    4 +-
 ...ration-mssql.yml => integration-localstack.yml} |   33 +-
 .../check_providers_subpackages_all_have_init.py   |    2 -
 scripts/ci/prek/common_prek_utils.py               |    9 +-
 scripts/ci/prek/generate_airflow_diagrams.py       |    2 +-
 scripts/ci/prek/mypy_folder.py                     |   91 +-
 .../ci/prek/significant_newsfragments_checker.py   |    1 -
 scripts/ci/prek/upgrade_important_versions.py      |    2 +-
 scripts/docker/entrypoint_ci.sh                    |   21 +
 scripts/in_container/in_container_utils.py         |    2 +-
 .../in_container/install_airflow_and_providers.py  |   93 +-
 .../run_check_default_configuration.py             |    4 +-
 .../run_prepare_airflow_distributions.py           |    2 +
 scripts/in_container/run_prepare_er_diagram.py     |    4 +-
 .../in_container/update_quarantined_test_status.py |    4 +-
 scripts/tools/initialize_virtualenv.py             |    8 +-
 .../src/airflow/sdk/api/datamodels/_generated.py   |  140 +-
 .../src/airflow/sdk/definitions/asset/__init__.py  |   24 +-
 .../airflow/sdk/definitions/asset/decorators.py    |    4 +-
 .../src/airflow/sdk/definitions/asset/metadata.py  |    6 +-
 .../sdk/definitions/decorators/condition.py        |    4 +-
 .../airflow/sdk/definitions/operator_resources.py  |    6 +
 task-sdk/src/airflow/sdk/definitions/param.py      |    3 +
 task-sdk/src/airflow/sdk/execution_time/context.py |   15 +-
 .../airflow/sdk/execution_time/lazy_sequence.py    |    3 +
 .../src/airflow/sdk/execution_time/task_runner.py  |    2 +-
 task-sdk/src/airflow/sdk/io/store.py               |    3 +
 task-sdk/src/airflow/sdk/types.py                  |    8 +-
 task-sdk/tests/task_sdk/bases/test_operator.py     |    3 +
 .../tests/task_sdk/execution_time/test_cache.py    |    2 +-
 .../task_sdk/execution_time/test_supervisor.py     |    6 +-
 188 files changed, 3528 insertions(+), 2767 deletions(-)
 create mode 100644 dev/breeze/tests/test_use_airflow_version.py
 copy scripts/ci/docker-compose/{integration-mssql.yml => 
integration-localstack.yml} (62%)

Reply via email to