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


    omit 3d0d0bfc2be Bump the core-ui-package-updates group across 1 directory 
with 50 updates
     add b8f38604246 Bump @eslint/compat (#61454)
     add 73282bda8dd Add wait_for_termination parameter and fix double-deferral 
in PowerBIDatasetRefreshOperator (#60369)
     add 2c36790a3ba Generate TaskSDK datamodels (#61469)
     add b1a6ebc6c5a Fix Python 3.13 classifiers (#61419)
     add 47629ada3df CI: Upgrade important CI environment (#61470)
     add 2f213b2fc05 Upgrade fastapi and conform openapi schema changes (#61476)
     add b696a5cee9e Deprecate has access backfill in providers (#61402)
     add 98a8bfc242c Add cancel_on_kill support for EMR Serverless deferrable 
operator (#60440)
     add 8f3ae04f89e feat: Add E2E tests for Task Instances page (#60514)
     add c6a05b5feaa UI E2E tests for Providers Page (#60705)
     add 1d006c6484a [main] Upgrade important CI environment (#61482)
     add f4906330d02 Support Python 3.13 in ydb provider (#61466)
     add b3306f15cdb AIP-84  :  Add JWT token revokation for logout 
invalidation (#47952) (#61339)
     add 1327aaa9522 fix(fab-auth): use correct PUT permission for 
/roles/{name} endpoint (#61462)
     add 0e66a216e27 Fix: Add session rollback to FAB find_user on error to 
prevent invali… (#61374)
     add 1491ee166a1 Restrict EC2 cleanup to waiter errors and guard behind 
flag. (#61272)
     add 3f744ad8c5b Update iter_dagrun_infos_between to use 
next_dagrun_info_v2 (#61465)
     add 1074caefc2d 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   (3d0d0bfc2be)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-c9dfadbeb8
 (1074caefc2d)

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/actions/breeze/action.yml                  |    2 +-
 .github/actions/install-prek/action.yml            |    2 +-
 .github/workflows/basic-tests.yml                  |    2 +-
 .github/workflows/release_dockerhub_image.yml      |    2 +-
 Dockerfile                                         |    4 +-
 Dockerfile.ci                                      |    6 +-
 airflow-core/docs/img/airflow_erd.sha256           |    2 +-
 airflow-core/docs/img/airflow_erd.svg              | 3128 ++++++++++----------
 airflow-core/docs/migrations-ref.rst               |    4 +-
 airflow-core/pyproject.toml                        |    3 +-
 .../api_fastapi/auth/managers/base_auth_manager.py |    8 +
 .../openapi/v2-simple-auth-manager-generated.yaml  |    5 +
 .../simple/ui/openapi-gen/requests/schemas.gen.ts  |    7 +
 .../simple/ui/openapi-gen/requests/types.gen.ts    |    4 +
 .../auth/managers/simple/ui/package-lock.json      |   18 +-
 .../auth/managers/simple/ui/package.json           |    2 +-
 .../auth/managers/simple/ui/pnpm-lock.yaml         |   30 +-
 .../src/airflow/api_fastapi/auth/tokens.py         |   10 +
 .../api_fastapi/core_api/openapi/_private_ui.yaml  |    5 +
 .../core_api/openapi/v2-rest-api-generated.yaml    |    5 +
 .../api_fastapi/core_api/routes/public/auth.py     |    7 +
 ...le.py => 0102_3_2_0_add_revoked_token_table.py} |   27 +-
 airflow-core/src/airflow/models/__init__.py        |    1 +
 airflow-core/src/airflow/models/revoked_token.py   |   79 +
 .../src/airflow/serialization/definitions/dag.py   |   48 +-
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |    7 +
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |    4 +
 airflow-core/src/airflow/ui/package.json           |   10 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         |  236 +-
 .../pages/{AssetListPage.ts => ProvidersPage.ts}   |   74 +-
 .../ui/tests/e2e/pages/TaskInstancesPage.ts        |  200 ++
 .../airflow/ui/tests/e2e/specs/providers.spec.ts   |  121 +
 .../ui/tests/e2e/specs/task-instances.spec.ts      |  163 +
 airflow-core/src/airflow/utils/db.py               |    2 +-
 airflow-core/src/airflow/utils/db_cleanup.py       |    1 +
 .../auth/managers/test_base_auth_manager.py        |   36 +
 .../tests/unit/api_fastapi/auth/test_tokens.py     |   82 +
 airflow-core/tests/unit/api_fastapi/conftest.py    |   18 +-
 .../core_api/routes/public/test_auth.py            |   81 +
 airflow-core/tests/unit/models/test_dag.py         |    2 +-
 .../tests/unit/models/test_revoked_token.py        |   92 +
 .../airflowctl/api/datamodels/auth_generated.py    |    2 +
 .../src/airflowctl/api/datamodels/generated.py     |    2 +
 chart/pyproject.toml                               |    1 +
 clients/python/pyproject.toml                      |    1 +
 dev/breeze/doc/ci/02_images.md                     |    4 +-
 .../commands/release_management_commands.py        |    4 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |    4 +-
 dev/breeze/tests/test_selective_checks.py          |    2 +-
 dev/breeze/uv.lock                                 |   70 +-
 devel-common/src/tests_common/test_utils/db.py     |    7 +
 .../amazon/aws/auth_manager/aws_auth_manager.py    |    9 +
 .../airflow/providers/amazon/aws/operators/ec2.py  |   27 +-
 .../airflow/providers/amazon/aws/operators/emr.py  |    9 +-
 .../airflow/providers/amazon/aws/triggers/emr.py   |  131 +-
 .../aws/auth_manager/test_aws_auth_manager.py      |   15 +-
 .../tests/unit/amazon/aws/operators/test_ec2.py    |    2 +
 .../tests/unit/amazon/aws/triggers/test_emr.py     |  132 +
 .../edge3/worker_api/v2-edge-generated.yaml        |    5 +
 .../openapi/v2-fab-auth-manager-generated.yaml     |    5 +
 .../fab/auth_manager/api_fastapi/routes/roles.py   |    2 +-
 .../providers/fab/auth_manager/fab_auth_manager.py |    9 +-
 .../fab/auth_manager/security_manager/override.py  |    8 +
 .../unit/fab/auth_manager/test_fab_auth_manager.py |   21 +-
 .../keycloak/auth_manager/keycloak_auth_manager.py |    9 +
 .../v2-keycloak-auth-manager-generated.yaml        |    5 +
 .../auth_manager/test_keycloak_auth_manager.py     |   43 +-
 .../providers/microsoft/azure/operators/powerbi.py |  116 +-
 .../unit/microsoft/azure/operators/test_powerbi.py |  130 +-
 providers/ydb/docs/index.rst                       |   12 +-
 providers/ydb/provider.yaml                        |    3 -
 providers/ydb/pyproject.toml                       |    9 +-
 pyproject.toml                                     |    6 +-
 scripts/ci/install_breeze.sh                       |    2 +-
 scripts/tools/setup_breeze                         |    2 +-
 .../src/airflow/sdk/api/datamodels/_generated.py   |    2 +
 76 files changed, 3435 insertions(+), 1916 deletions(-)
 copy 
airflow-core/src/airflow/migrations/versions/{0090_3_2_0_add_fail_fast_to_dag_table.py
 => 0102_3_2_0_add_revoked_token_table.py} (66%)
 create mode 100644 airflow-core/src/airflow/models/revoked_token.py
 copy airflow-core/src/airflow/ui/tests/e2e/pages/{AssetListPage.ts => 
ProvidersPage.ts} (55%)
 create mode 100644 
airflow-core/src/airflow/ui/tests/e2e/pages/TaskInstancesPage.ts
 create mode 100644 
airflow-core/src/airflow/ui/tests/e2e/specs/providers.spec.ts
 create mode 100644 
airflow-core/src/airflow/ui/tests/e2e/specs/task-instances.spec.ts
 create mode 100644 airflow-core/tests/unit/models/test_revoked_token.py

Reply via email to