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-11599f5aca
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 4f6fd09c9cb Bump the core-ui-package-updates group across 1 directory 
with 50 updates
     add 30cc87ee5ee Fix setproctitle usage on macos (#53122)
     add bc18493d64e Fix downgrade migrations failures (#54508)
     add dbb01fd0b41 Increase timeout for test_rtif_deletion_stale_data_error 
(#54519)
     add 8ab74d9c842 Change DAG to Dag in the core-concepts/dags.rst file 
(#54518)
     add 979d570997a Adjust grid tooltip positon+arrow (#54524)
     add e00777aa135 Add filters to Browse XComs (#54049)
     add 83f0dc54e91 docs: Guide for resolving UI TemplateNotFound in Breeze 
setup (#54521)
     add 9ade787e422 Add cluster_tier flag support to Dataproc ClusterGenerator 
(#54105)
     add e0c3e2dd4d7 Move providers release date to changelog (#54525)
     add 44121bfdb20 fix(snowflake): enhance error message formatting for SQL 
errors (#54063)
     add c00f1d721a3 CHG: refer fix (#54490)
     add ed549df7829 Bump zizmor (#54538)
     add efd683e134e Alias `dag_display_name` for `DagTagResponse` (#54392)
     add 5a411d7e218 Fix speed of test_rtif_deletion_stale_data_error test 
(#54542)
     add e4265287cf8 Move `airflow.utils.operator_resources` to task-sdk 
(#54461)
     add 86063eb5f38 Log when triggerer has reached the maximum trigger 
capacity (#54536)
     add d21a6c07bef Don't attempt HTTP retries when using the InProcess API 
client (#54543)
     add 7a040d2992b docs(hitl): fix typo in example_hitl_operator (#54537)
     add ca9e750be3b Bump the core-ui-package-updates group across 1 directory 
with 50 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   (4f6fd09c9cb)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-11599f5aca
 (ca9e750be3b)

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 +-
 .../administration-and-deployment/listeners.rst    |   2 +-
 airflow-core/docs/core-concepts/dags.rst           | 194 +++++------
 airflow-core/docs/img/airflow_erd.sha256           |   2 +-
 .../src/airflow/api_fastapi/common/parameters.py   |  16 +
 .../api_fastapi/core_api/datamodels/dag_tags.py    |   3 +
 .../api_fastapi/core_api/openapi/_private_ui.yaml  |   4 +
 .../core_api/openapi/v2-rest-api-generated.yaml    |  96 ++++++
 .../api_fastapi/core_api/routes/public/xcom.py     |  41 ++-
 .../src/airflow/executors/local_executor.py        |  15 +-
 .../0060_3_0_0_add_try_id_to_ti_and_tih.py         |  10 +-
 .../0068_3_0_0_ti_table_id_unique_per_try.py       |   4 +-
 .../0082_3_1_0_make_bundle_name_not_nullable.py    |  26 +-
 airflow-core/src/airflow/models/trigger.py         |   5 +
 .../airflow/serialization/serialized_objects.py    |   2 +-
 .../src/airflow/ui/openapi-gen/queries/common.ts   |  13 +-
 .../ui/openapi-gen/queries/ensureQueryData.ts      |  22 +-
 .../src/airflow/ui/openapi-gen/queries/prefetch.ts |  22 +-
 .../src/airflow/ui/openapi-gen/queries/queries.ts  |  22 +-
 .../src/airflow/ui/openapi-gen/queries/suspense.ts |  22 +-
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |   6 +-
 .../ui/openapi-gen/requests/services.gen.ts        |  20 +-
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |  22 ++
 airflow-core/src/airflow/ui/package.json           |   2 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         | 361 +++++++++++----------
 .../airflow/ui/public/i18n/locales/en/common.json  |  11 +
 .../ui/public/i18n/locales/zh-TW/common.json       |  10 +
 .../src/airflow/ui/src/constants/searchParams.ts   |   9 +
 .../airflow/ui/src/layouts/Details/Grid/GridTI.tsx |  13 +-
 .../airflow/ui/src/pages/DagsList/DagCard.test.tsx |  18 +-
 .../src/airflow/ui/src/pages/XCom/XCom.tsx         |  66 +++-
 .../src/airflow/ui/src/pages/XCom/XComFilters.tsx  | 221 +++++++++++++
 airflow-core/src/airflow/utils/__init__.py         |   3 +
 .../core_api/routes/public/test_dags.py            |  78 ++++-
 .../core_api/routes/public/test_xcom.py            |   2 +-
 .../tests/unit/models/test_renderedtifields.py     |  39 ++-
 .../unit/serialization/test_dag_serialization.py   |   2 +-
 .../unit/serialization/test_serialized_objects.py  |   2 +-
 .../src/airflowctl/api/datamodels/generated.py     |   1 +
 contributing-docs/03_contributors_quick_start.rst  |  20 ++
 .../templates/CHANGELOG_TEMPLATE.rst.jinja2        |   3 +
 .../templates/PROVIDER_INDEX_TEMPLATE.rst.jinja2   |   2 -
 .../templates/PROVIDER_README_TEMPLATE.rst.jinja2  |   1 -
 .../celery/executors/celery_executor_utils.py      |   6 +-
 .../src/airflow/providers/edge3/cli/worker.py      |   8 +-
 providers/google/README.rst                        |   2 +-
 providers/google/docs/index.rst                    |   2 +-
 providers/google/pyproject.toml                    |   2 +-
 .../providers/google/cloud/operators/dataproc.py   |   7 +
 .../dataproc/example_dataproc_cluster_generator.py |   1 +
 .../google/cloud/dataproc/example_dataproc_hive.py |   1 +
 .../google/cloud/dataproc/example_dataproc_pig.py  |   1 +
 .../cloud/dataproc/example_dataproc_pyspark.py     |   1 +
 .../unit/google/cloud/operators/test_dataproc.py   |   7 +
 .../providers/openlineage/plugins/listener.py      |   9 +-
 .../providers/snowflake/hooks/snowflake_sql_api.py |  16 +-
 .../unit/snowflake/hooks/test_snowflake_sql_api.py |  17 +-
 .../standard/example_dags/example_hitl_operator.py |   4 +-
 task-sdk/src/airflow/sdk/bases/operator.py         |   6 +-
 .../src/airflow/sdk/definitions/mappedoperator.py  |   2 +-
 .../airflow/sdk/definitions}/operator_resources.py |   0
 .../src/airflow/sdk/execution_time/supervisor.py   |  11 +-
 .../definitions}/test_operator_resources.py        |   2 +-
 .../task_sdk/execution_time/test_supervisor.py     |  20 ++
 64 files changed, 1165 insertions(+), 395 deletions(-)
 create mode 100644 airflow-core/src/airflow/ui/src/pages/XCom/XComFilters.tsx
 rename {airflow-core/src/airflow/utils => 
task-sdk/src/airflow/sdk/definitions}/operator_resources.py (100%)
 rename {airflow-core/tests/unit/utils => 
task-sdk/tests/task_sdk/definitions}/test_operator_resources.py (95%)

Reply via email to