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

dependabot[bot] pushed a change to branch 
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/eslint-d3820027f2
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 22c69aea505 Bump eslint
     add cdc5d9facec Accept only the configured client on the Keycloak 
client_credentials grant (#72205)
     add 188a744c0b9 Reject tokens naming a deactivated account in the FAB auth 
manager (#72199)
     add b908c63ae63 Use a structured SecretCache key instead of a concatenated 
string (#72201)
     add ff601cb5b75 Compare session and user identifiers consistently when 
resetting a password (#72198)
     add e00e53257e9 Add SerializedVariableInterval for deadline alerts (#71802)
     add 82215cf97c7 Add single-use callback token for deadline callback 
context fetch (#71192)
     add 39b48040226 Avoid extra_dejson in ADF and Synapse async hooks (#72130)
     add 5dcee04992a Add warning for HttpOperator deferrable with 
non-idempotent methods (#69748)
     add 39b5871e16f Fix grammar, casing, and typo across testing docs and prek 
scripts (#72252)
     add e671bcb031e Bump sqlparse from 0.5.5 to 0.6.0 (#71739)
     add fbea214082d Monitor the workflow run breeze actually dispatched 
(#71305)
     add aab7ed86c57 Bump the ui-plugin-template-package-updates group across 1 
directory with 9 updates (#72217)
     add 144a87dfe94 Bump the core-ui-package-updates group across 1 directory 
with 16 updates (#72234)
     add 9edaac8edcf 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   (22c69aea505)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/eslint-d3820027f2
 (9edaac8edcf)

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:
 airflow-core/newsfragments/71192.significant.rst   |  12 +
 airflow-core/newsfragments/71802.bugfix.rst        |   1 +
 .../src/airflow/api_fastapi/execution_api/app.py   |   8 +-
 .../api_fastapi/execution_api/datamodels/token.py  |   2 +-
 .../api_fastapi/execution_api/routes/__init__.py   |   2 +
 .../api_fastapi/execution_api/routes/callbacks.py  |  85 +++
 .../execution_api/routes/task_instances.py         |   6 +-
 .../airflow/api_fastapi/execution_api/security.py  |  18 +-
 .../api_fastapi/execution_api/versions/__init__.py |   7 +-
 .../execution_api/versions/v2026_10_30.py          |  12 +
 .../src/airflow/executors/workloads/base.py        |  11 +-
 .../src/airflow/executors/workloads/callback.py    |   4 +-
 .../src/airflow/jobs/scheduler_job_runner.py       |   8 +-
 airflow-core/src/airflow/serialization/decoders.py |  10 +-
 .../src/airflow/serialization/definitions/dag.py   |   9 +-
 .../airflow/serialization/definitions/deadline.py  |  28 +-
 airflow-core/src/airflow/ui/package.json           |  32 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         | 632 +++++++++++----------
 .../unit/api_fastapi/execution_api/conftest.py     |   5 +-
 .../api_fastapi/execution_api/test_security.py     |  10 +
 .../execution_api/test_token_scope_boundaries.py   |   2 +
 .../execution_api/versions/head/test_callbacks.py  | 131 +++++
 .../versions/v2026_10_30/test_callbacks.py         |  43 ++
 .../tests/unit/executors/test_workloads.py         |  19 +
 airflow-core/tests/unit/models/test_dagrun.py      |   7 +-
 .../serialization/definitions/test_deadline.py     |  67 +++
 .../unit/serialization/test_serialized_objects.py  |  33 +-
 contributing-docs/testing/airflow_e2e_tests.rst    |   8 +-
 contributing-docs/testing/dag_testing.rst          |   6 +-
 .../src/airflow_breeze/utils/gh_workflow_utils.py  |  77 ++-
 dev/breeze/tests/test_gh_workflow_utils.py         |  96 +++-
 .../react_plugin_template/package.json             |  18 +-
 .../react_plugin_template/pnpm-lock.yaml           | 520 +++++++++--------
 generated/known_sdk_imports_in_core.txt            |   3 +-
 .../providers/fab/auth_manager/fab_auth_manager.py |  10 +-
 .../fab/auth_manager/security_manager/override.py  |   7 +-
 .../unit/fab/auth_manager/test_fab_auth_manager.py |  46 +-
 .../fab/www/views/test_views_custom_user_views.py  |  48 +-
 providers/http/docs/deferrable.rst                 |  73 +++
 providers/http/docs/index.rst                      |   1 +
 providers/http/docs/operators.rst                  |   7 +-
 .../src/airflow/providers/http/operators/http.py   |  32 ++
 .../http/tests/unit/http/operators/test_http.py    | 184 +++++-
 providers/keycloak/docs/changelog.rst              |   8 +
 .../keycloak/auth_manager/services/token.py        |  17 +
 .../keycloak/auth_manager/services/test_token.py   |  42 ++
 .../microsoft/azure/hooks/data_factory.py          |   8 +-
 .../providers/microsoft/azure/hooks/synapse.py     |   7 +-
 .../microsoft/azure/hooks/test_data_factory.py     |  68 ++-
 .../microsoft/azure/hooks/test_synapse_pipeline.py |  43 +-
 .../ci/prek/check_supervisor_schemas_versions.py   |   2 +-
 task-sdk/src/airflow/sdk/api/client.py             |  17 +
 task-sdk/src/airflow/sdk/definitions/deadline.py   |  11 +-
 task-sdk/src/airflow/sdk/execution_time/cache.py   |  40 +-
 .../sdk/execution_time/callback_supervisor.py      |   3 +
 task-sdk/tests/task_sdk/api/test_client.py         |  33 ++
 .../tests/task_sdk/definitions/test_deadline.py    |  15 +-
 .../tests/task_sdk/execution_time/test_cache.py    |  43 ++
 .../execution_time/test_callback_supervisor.py     |  50 +-
 59 files changed, 2075 insertions(+), 672 deletions(-)
 create mode 100644 airflow-core/newsfragments/71192.significant.rst
 create mode 100644 airflow-core/newsfragments/71802.bugfix.rst
 create mode 100644 
airflow-core/src/airflow/api_fastapi/execution_api/routes/callbacks.py
 create mode 100644 
airflow-core/tests/unit/api_fastapi/execution_api/versions/head/test_callbacks.py
 create mode 100644 
airflow-core/tests/unit/api_fastapi/execution_api/versions/v2026_10_30/test_callbacks.py
 create mode 100644 
airflow-core/tests/unit/serialization/definitions/test_deadline.py
 create mode 100644 providers/http/docs/deferrable.rst

Reply via email to