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


    omit 4a0f2013396 Bump eslint
     add 0df91d904f7 Remove outdated code comments from task runner (#51782)
     add e071abb80cd Chart: Always deploy jwt secret (#51799)
     add d12cd80f0d9 Use constant for offset param (#51796)
     add 36374870a12 Release notes for helm chart 1.17.0 (#51703)
     add f2a48f87aa2 Add focus on Simple Auth Mgr login form (#51762)
     add fa574c00a58 Move and deprecate airflow.utils.warnings (#51778)
     add 72892d27767 Fix type import to AbstractOperator (#51773)
     add 8edbf34b3b3 fix: Helm execution_api_server_url when base_url has a 
subpath (#51454)
     add 825c322a6f4 Propagate AssetEvent through context when Consumer DAG 
triggering on AssetAlias (#50182)
     add 4f26e456cb8 fix(serialized_objects): try to infer data interval if 
it's none (#51530)
     add c0f5328ac83 Set proper version of the default images in the docs 
(#51822)
     add a4f9ffba1c4 Bump apache-beam minimum version dependency to 2.60.0 
(#51825)
     add f52e1a1d6a5 ✂ Truncate the label length (#51817)
     add 23ecee8c08d Remove unnecessary logs while retrieving connections / 
variables (#51786)
     add 073fe2ea197 Delete import error when a dag bundle becomes inactive 
(#51800)
     add 8f562be8d90 Fixing strange mypy airflow-core failures (#51831)
     add dbe87917332 Relax i18n ownership approval (#51832)
     add 68bb3b2ce7f Fix system tests for vertex ai generative operators 
(#51582)
     add fa5c1480c97 Fix mypy not liking `@field.default` -- it thinks it is 
missing a value (#51835)
     add 7ccc8d1518a Deprecate Data Catalog operators, hook, links because 
service will be discontinued on January 30, 2026 in favor of Dataplex Universal 
Catalog. (#51647)
     add 915c2d7eefe Fixing failing mypy devel-common on main (#51829)
     add ea1eb15dece Bump min version of google-cloud-spanner to 3.50 (#51837)
     add f8b1f9a0989 Bump pyexasol>=0.26.0 (#51838)
     add af94629c922 Add Hebrew translation for dag.json (#51839)
     add 492518edfae Switch the Supervisor/task process from line-based to 
length-prefixed (#51699)
     add 2bd66b5842a feat(i18n): Modify log info translation and fix imports 
(#51790)
     add f6141fffc11 Add infinite scroll on tag search (#50732)
     add 49ce05d1431 Close translation gap of common.json to Hebrew (#51846)
     add 32b68f288da Add Github client setup step to release manager guide 
(#51842)
     add 1c6b7b41d41 Bump eslint

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   (4a0f2013396)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/fab-ui-package-updates-ec62935ef0
 (1c6b7b41d41)

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:
 .../managers/simple/ui/src/login/LoginForm.tsx     |   3 +-
 .../src/airflow/api_fastapi/auth/tokens.py         |  26 +-
 .../src/airflow/dag_processing/bundles/manager.py  |   6 +
 airflow-core/src/airflow/dag_processing/manager.py |   9 +-
 .../src/airflow/dag_processing/processor.py        |  33 +-
 .../src/airflow/jobs/scheduler_job_runner.py       |  25 +-
 .../src/airflow/jobs/triggerer_job_runner.py       | 126 +++--
 airflow-core/src/airflow/models/dagbag.py          |  26 +-
 .../airflow/serialization/serialized_objects.py    |   8 +-
 .../ui/openapi-gen/queries/useDagsInfinite.ts      |  58 +++
 .../Clear/TaskInstance/ClearTaskInstanceButton.tsx |   2 +-
 .../ui/src/components/renderStructuredLog.tsx      |   2 +-
 airflow-core/src/airflow/ui/src/i18n/README.md     |   8 +-
 airflow-core/src/airflow/ui/src/i18n/config.ts     |   2 +
 .../airflow/ui/src/i18n/locales/de/components.json |   3 +-
 .../airflow/ui/src/i18n/locales/en/components.json |   3 +-
 .../src/airflow/ui/src/i18n/locales/he/common.json | 270 ++++++++--
 .../src/airflow/ui/src/i18n/locales/he/dag.json    | 111 ++++
 .../airflow/ui/src/i18n/locales/pl/components.json |   3 +-
 .../airflow/ui/src/i18n/locales/zh-TW/common.json  |   2 +-
 .../ui/src/i18n/locales/zh-TW/components.json      |   3 +-
 .../src/airflow/ui/src/pages/Dag/Code/Code.tsx     |   6 +-
 .../ui/src/pages/Dag/Overview/FailedLogs.tsx       |   2 +-
 .../src/pages/DagsList/DagsFilters/DagsFilters.tsx |  27 +-
 .../src/pages/DagsList/DagsFilters/TagFilter.tsx   |   9 +
 airflow-core/src/airflow/utils/__init__.py         |  19 +
 airflow-core/src/airflow/utils/warnings.py         |  24 +-
 .../tests/unit/always/test_project_structure.py    |  26 +
 .../bundles/test_dag_bundle_manager.py             |  23 +-
 .../tests/unit/dag_processing/test_manager.py      |  81 ++-
 .../tests/unit/dag_processing/test_processor.py    |  51 +-
 airflow-core/tests/unit/hooks/test_base.py         |  13 +-
 airflow-core/tests/unit/jobs/test_scheduler_job.py |  86 ++-
 airflow-core/tests/unit/jobs/test_triggerer_job.py |  34 +-
 airflow-core/tests/unit/models/test_dagbag.py      |  58 ++-
 .../tests/unit/models/test_taskinstance.py         |   4 +-
 .../unit/serialization/test_serialized_objects.py  |  44 +-
 airflow-core/tests/unit/utils/test_warnings.py     |  79 ---
 chart/Chart.yaml                                   | 312 +++--------
 chart/RELEASE_NOTES.rst                            |  46 ++
 chart/newsfragments/49593.significant.rst          |   3 -
 chart/reproducible_build.yaml                      |   4 +-
 chart/templates/_helpers.yaml                      |   2 +-
 chart/templates/configmaps/configmap.yaml          |   6 +-
 .../templates/scheduler/scheduler-deployment.yaml  |   2 +-
 chart/templates/secrets/jwt-secret.yaml            |   6 +-
 dev/README.md                                      |   6 +
 devel-common/src/tests_common/pytest_plugin.py     |  30 +-
 docker-stack-docs/build.rst                        |   4 +-
 .../airflow_aux/test_basic_helm_chart.py           |   6 +-
 .../tests/helm_tests/airflow_aux/test_configmap.py |  62 +++
 helm-tests/tests/helm_tests/security/test_rbac.py  |   2 +-
 .../tests/unit/amazon/aws/links/test_athena.py     |   2 +-
 .../tests/unit/amazon/aws/links/test_batch.py      |   6 +-
 .../tests/unit/amazon/aws/links/test_comprehend.py |   4 +-
 .../tests/unit/amazon/aws/links/test_datasync.py   |   4 +-
 .../amazon/tests/unit/amazon/aws/links/test_ec2.py |   4 +-
 .../amazon/tests/unit/amazon/aws/links/test_emr.py |  12 +-
 .../tests/unit/amazon/aws/links/test_glue.py       |   2 +-
 .../tests/unit/amazon/aws/links/test_logs.py       |   2 +-
 .../tests/unit/amazon/aws/links/test_sagemaker.py  |   2 +-
 .../aws/links/test_sagemaker_unified_studio.py     |   2 +-
 .../unit/amazon/aws/links/test_step_function.py    |   4 +-
 providers/apache/beam/pyproject.toml               |   3 +-
 .../io/tests/unit/common/io/xcom/test_backend.py   |  19 +-
 .../tests/unit/dbt/cloud/operators/test_dbt.py     |   2 +-
 providers/exasol/pyproject.toml                    |   2 +-
 .../google/docs/operators/cloud/datacatalog.rst    | 334 +++++-------
 providers/google/provider.yaml                     |   9 -
 providers/google/pyproject.toml                    |   4 +-
 .../providers/google/cloud/hooks/datacatalog.py    |  10 +-
 .../cloud/hooks/vertex_ai/generative_model.py      |   8 +-
 .../providers/google/cloud/links/datacatalog.py    |  23 +
 .../google/cloud/operators/datacatalog.py          | 151 ++++++
 .../cloud/operators/vertex_ai/generative_model.py  |  18 +-
 .../airflow/providers/google/get_provider_info.py  |  11 -
 providers/google/tests/deprecations_ignore.yml     |  67 +++
 .../example_vertex_ai_generative_model.py          |  86 ++-
 .../example_vertex_ai_generative_model_tuning.py   |  51 +-
 .../tests/system/google/datacatalog/__init__.py    |  16 -
 .../datacatalog/example_datacatalog_entries.py     | 213 --------
 .../example_datacatalog_search_catalog.py          | 236 ---------
 .../example_datacatalog_tag_templates.py           | 196 -------
 .../google/datacatalog/example_datacatalog_tags.py | 246 ---------
 .../unit/google/cloud/hooks/test_datacatalog.py    |  46 +-
 .../unit/google/cloud/links/test_cloud_run.py      |   2 +-
 .../tests/unit/google/cloud/links/test_dataplex.py |  20 +-
 .../unit/google/cloud/links/test_translate.py      |   8 +-
 .../google/cloud/operators/test_datacatalog.py     | 580 +++++++++++----------
 .../unit/google/cloud/operators/test_dataproc.py   |  20 +-
 .../microsoft/azure/operators/test_data_factory.py |   2 +-
 .../unit/microsoft/azure/operators/test_synapse.py |   2 +-
 .../airflow/providers/openlineage/utils/utils.py   |  21 +-
 .../in_container/run_provider_yaml_files_check.py  |   3 +
 task-sdk/pyproject.toml                            |   1 -
 task-sdk/src/airflow/sdk/bases/xcom.py             |  98 ++--
 .../airflow/sdk/definitions/asset/decorators.py    |  14 +-
 task-sdk/src/airflow/sdk/definitions/taskgroup.py  |   2 +-
 task-sdk/src/airflow/sdk/execution_time/comms.py   | 165 +++++-
 task-sdk/src/airflow/sdk/execution_time/context.py | 100 ++--
 .../airflow/sdk/execution_time/lazy_sequence.py    |  60 +--
 .../src/airflow/sdk/execution_time/supervisor.py   | 294 ++++++-----
 .../src/airflow/sdk/execution_time/task_runner.py  | 223 +++-----
 task-sdk/tests/task_sdk/bases/test_sensor.py       |  10 +-
 task-sdk/tests/task_sdk/definitions/conftest.py    |   6 +-
 .../task_sdk/definitions/test_asset_decorators.py  |  16 +-
 .../tests/task_sdk/definitions/test_connections.py |   2 +-
 .../task_sdk/definitions/test_mappedoperator.py    |  41 +-
 .../tests/task_sdk/definitions/test_variables.py   |   5 +-
 .../tests/task_sdk/definitions/test_xcom_arg.py    |  36 +-
 .../tests/task_sdk/execution_time/test_comms.py    |  83 +++
 .../tests/task_sdk/execution_time/test_context.py  |  85 ++-
 .../task_sdk/execution_time/test_lazy_sequence.py  | 140 +++--
 .../task_sdk/execution_time/test_supervisor.py     | 329 ++++++------
 .../task_sdk/execution_time/test_task_runner.py    | 293 +++--------
 115 files changed, 3094 insertions(+), 3168 deletions(-)
 create mode 100644 
airflow-core/src/airflow/ui/openapi-gen/queries/useDagsInfinite.ts
 create mode 100644 airflow-core/src/airflow/ui/src/i18n/locales/he/dag.json
 delete mode 100644 airflow-core/tests/unit/utils/test_warnings.py
 delete mode 100644 chart/newsfragments/49593.significant.rst
 delete mode 100644 providers/google/tests/system/google/datacatalog/__init__.py
 delete mode 100644 
providers/google/tests/system/google/datacatalog/example_datacatalog_entries.py
 delete mode 100644 
providers/google/tests/system/google/datacatalog/example_datacatalog_search_catalog.py
 delete mode 100644 
providers/google/tests/system/google/datacatalog/example_datacatalog_tag_templates.py
 delete mode 100644 
providers/google/tests/system/google/datacatalog/example_datacatalog_tags.py
 create mode 100644 task-sdk/tests/task_sdk/execution_time/test_comms.py

Reply via email to