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

dependabot[bot] pushed a change to branch 
dependabot/npm_and_yarn/ts-sdk/ts-sdk-package-updates-fe67f92f5d
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit de7e9d6867f Bump the ts-sdk-package-updates group in /ts-sdk with 4 
updates
     add f5e083dfbbf Bump the github-actions-updates group across 1 directory 
with 5 updates (#72224)
     add 33222eaeeb5 Drop provider dependency from airflow-core secrets backend 
tests (#71677)
     add 15217b00c27 Bump the auth-ui-package-updates group across 1 directory 
with 7 updates (#72215)
     add 449e589da21 Restrict MSGraph deferrable pagination to the configured 
host (#71842)
     add 964407f66ca Fix static checks randomly failing with "PYTHONWARNINGS 
not set" (#72226)
     add 96b2af5cbd6 Bump @types/react-dom (#72211)
     add 7f81eb4537f Bump swagger-ui-dist (#71893)
     add b9e4957975b Bump the eslint group across 1 directory with 2 updates 
(#72212)
     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 344a15666dd Bump the ts-sdk-package-updates group across 1 directory 
with 4 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   (de7e9d6867f)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/ts-sdk/ts-sdk-package-updates-fe67f92f5d 
(344a15666dd)

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:
 .github/workflows/airflow-e2e-tests.yml            |   2 +-
 .github/workflows/basic-tests.yml                  |   2 +-
 .github/workflows/ci-amd.yml                       |   2 +-
 .github/workflows/ci-arm.yml                       |   2 +-
 .github/workflows/codeql-analysis.yml              |   8 +-
 .github/workflows/java-sdk-dependency-security.yml |   2 +-
 .github/workflows/java-sdk-release-verify.yml      |   4 +-
 .github/workflows/k8s-tests.yml                    |   2 +-
 .github/workflows/registry-tests.yml               |   2 +-
 airflow-core/newsfragments/71192.significant.rst   |  12 +
 airflow-core/newsfragments/71802.bugfix.rst        |   1 +
 .../auth/managers/simple/ui/package.json           |  14 +-
 .../auth/managers/simple/ui/pnpm-lock.yaml         | 602 +++++++++++----------
 .../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           |   6 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         | 204 +++----
 airflow-core/tests/unit/always/test_secrets.py     |  98 +---
 .../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 ++
 airflow-core/tests/unit/core/test_configuration.py | 102 +---
 .../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/params/shell_params.py      |   9 +-
 dev/breeze/tests/test_shell_params.py              |  25 +
 .../test_utils/fake_secrets_backend.py             |  59 ++
 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/msgraph.py     |  50 +-
 .../providers/microsoft/azure/hooks/synapse.py     |   7 +-
 .../providers/microsoft/azure/operators/msgraph.py |   1 +
 .../providers/microsoft/azure/triggers/msgraph.py  |   9 +
 .../microsoft/azure/hooks/test_data_factory.py     |  68 ++-
 .../unit/microsoft/azure/hooks/test_msgraph.py     |  27 +
 .../microsoft/azure/hooks/test_synapse_pipeline.py |  43 +-
 .../unit/microsoft/azure/operators/test_msgraph.py |  41 ++
 .../azure/tests/unit/microsoft/azure/test_utils.py |   8 +-
 .../unit/microsoft/azure/triggers/test_msgraph.py  |  16 +
 registry/package.json                              |   2 +-
 registry/pnpm-lock.yaml                            |  10 +-
 scripts/ci/docker-compose/base.yml                 |   3 +
 .../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 +-
 81 files changed, 2017 insertions(+), 667 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 
devel-common/src/tests_common/test_utils/fake_secrets_backend.py
 create mode 100644 providers/http/docs/deferrable.rst

Reply via email to