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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-b1a647a5de
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 8555a7c4fa4 chore(deps-dev): bump @types/react-dom
     add c32bd6d6089 fix ui e2e test failure not clean up containers properly 
(#62555)
     add 702b51a7d4b Fix PythonVirtualenvOperator cannot run with pendulum<3 
(#62604)
     add e4e81ed0f2c AIP-76: Implement AllowedKeyMapper for partition key 
validation (#61931)
     add 3151443a167 Improve Playwright test patterns in backfill.spec.ts and 
BackfillPage.ts (#63112)
     add cb586ce385b Add e2e test for XComObjectStorageBackend (#62907)
     add 11d345ca677 Fix typos and improve clarity in CI documentation (#63163)
     add b29e61f83e4 Fix Playwright anti-pattern in AssetListPage (#63084)
     add 44cad954acc Add choo121600 for dev tools as codeowner (#62315)
     add 0a985eabb8e Bump astroid>=4 (#63170)
     add 1fd89e0e3a3 CI: Upgrade important CI environment (#63169)
     add 08424fe4da2 Raise ValueError instead of KeyError when 
cancel_previous_runs=True and no job identifier is provided (#62393)
     add 96bba7460a7 Remove completed JWT token dependency TODO from 
assets.pyand asset_events.py (#63045)
     add c436ec34c71 Centralize OAuth grant_type validation in SnowflakeHook 
(#61969)
     add 9d0800f6d1e Fix OAuth2 XOAUTH2 auth and EHLO after STARTTLS in 
SmtpHook (#62879)
     add db464296a7f Add drift detection and optional recreation to 
ComputeEngineInsertInstanceOperator (#61830)
     add eee2d56daf6 Add icon support for theme customization (#62172)
     add 68afaa6e59e fix(Asset-Partition): use timetable_partitioned to 
distinguish whether a Dag is partitioned (#62864)
     add a15deac82c7 Add missing HTTP timeout to FAB JWKS fetching (#63058)
     add 0b166f4ab19 Fix invalid RequestPayer usage in S3Hook.select_key() 
method (#63148)
     add 68fce1b516a fix: ensure Celery tasks are registered at worker startup 
(main) (#63110)
     add e4780046c1c Fix CloudwatchTaskHandler not deleting local logs after 
streaming (#62985)
     add cf64b34f3b3 chore(deps-dev): bump eslint-plugin-perfectionist (#63156)
     add 931ac0f6d44 chore(deps-dev): bump 
@trivago/prettier-plugin-sort-imports (#63155)
     add 2ea7f9a0f99 chore(deps-dev): bump @types/react (#63154)
     add 6219a6a3d7c chore(deps-dev): bump @types/react-dom

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   (8555a7c4fa4)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-b1a647a5de
 (6219a6a3d7c)

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/CODEOWNERS                                 |   2 +-
 .github/actions/breeze/action.yml                  |   2 +-
 .github/actions/install-prek/action.yml            |   2 +-
 .github/workflows/additional-prod-image-tests.yml  |  11 ++
 .github/workflows/airflow-e2e-tests.yml            |   4 +-
 .github/workflows/basic-tests.yml                  |   2 +-
 .github/workflows/ci-amd-arm.yml                   |   2 +-
 .github/workflows/release_dockerhub_image.yml      |   2 +-
 Dockerfile                                         |   2 +-
 Dockerfile.ci                                      |   2 +-
 airflow-core/docs/howto/customize-ui.rst           |  41 +++-
 airflow-core/pyproject.toml                        |   2 +-
 .../src/airflow/api_fastapi/common/types.py        |  24 +++
 .../api_fastapi/core_api/openapi/_private_ui.yaml  |  10 +
 .../execution_api/routes/asset_events.py           |   1 -
 .../api_fastapi/execution_api/routes/assets.py     |   1 -
 airflow-core/src/airflow/assets/manager.py         |   9 +-
 .../src/airflow/config_templates/config.yml        |   4 +-
 .../example_dags/example_asset_partition.py        |  41 ++++
 .../src/airflow/jobs/scheduler_job_runner.py       |   2 +-
 .../partition_mappers/{base.py => allowed_key.py}  |  26 ++-
 airflow-core/src/airflow/serialization/encoders.py |   6 +
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |  22 +++
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |   2 +
 .../src/airflow/ui/src/components/Logo.tsx         |  54 +++++
 .../src/airflow/ui/src/layouts/BaseLayout.tsx      |  42 ++++
 .../src/airflow/ui/src/layouts/Nav/Nav.tsx         |   4 +-
 .../src/airflow/ui/src/pages/Dag/DagNotFound.tsx   |   4 +-
 airflow-core/src/airflow/ui/src/pages/Error.tsx    |   4 +-
 .../airflow/ui/tests/e2e/pages/AssetDetailPage.ts  |  28 ++-
 .../airflow/ui/tests/e2e/pages/AssetListPage.ts    |  28 +--
 .../src/airflow/ui/tests/e2e/pages/BackfillPage.ts |  55 ++++--
 .../src/airflow/ui/tests/e2e/specs/asset.spec.ts   |  26 +--
 .../airflow/ui/tests/e2e/specs/backfill.spec.ts    |  17 +-
 .../api_fastapi/core_api/routes/ui/test_config.py  |   2 +
 .../unit/partition_mappers/test_allowed_key.py     |  48 +++++
 .../unit/serialization/test_serialized_objects.py  |  25 +++
 airflow-e2e-tests/scripts/init-aws.sh              |   1 +
 .../tests/airflow_e2e_tests/conftest.py            |  32 ++-
 .../tests/airflow_e2e_tests/constants.py           |   3 +
 .../airflow_e2e_tests/e2e_test_utils/clients.py    |  51 ++++-
 .../remote_log_tests/test_remote_logging.py        |  12 +-
 .../xcom_object_storage_tests}/__init__.py         |   0
 .../test_xcom_object_storage_backend.py            |  89 +++++++++
 dev/breeze/doc/ci/01_ci_environment.md             |   2 +-
 dev/breeze/doc/ci/02_images.md                     |   6 +-
 dev/breeze/doc/ci/04_selective_checks.md           |   4 +-
 dev/breeze/doc/ci/README.md                        |   4 +-
 .../images/output_testing_airflow-e2e-tests.svg    |  24 ++-
 .../images/output_testing_airflow-e2e-tests.txt    |   2 +-
 .../commands/release_management_commands.py        |   2 +-
 .../airflow_breeze/commands/testing_commands.py    |  11 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |   2 +-
 dev/breeze/uv.lock                                 | 142 ++++++-------
 .../react_plugin_template/package.json             |   6 +-
 .../react_plugin_template/pnpm-lock.yaml           | 220 +++++++--------------
 devel-common/pyproject.toml                        |   5 +-
 .../src/airflow/providers/amazon/aws/hooks/s3.py   |   7 +-
 .../amazon/aws/log/cloudwatch_task_handler.py      |  34 +++-
 .../amazon/tests/unit/amazon/aws/hooks/test_s3.py  |  12 +-
 .../amazon/aws/log/test_cloudwatch_task_handler.py | 112 ++++++++++-
 .../providers/celery/executors/celery_executor.py  |   3 +
 .../unit/celery/executors/test_celery_executor.py  |  23 +++
 .../providers/databricks/operators/databricks.py   |   9 +-
 .../unit/databricks/operators/test_databricks.py   |  36 +++-
 .../fab/auth_manager/security_manager/override.py  |   4 +-
 .../providers/google/cloud/operators/compute.py    | 126 +++++++++---
 .../compute/example_compute_recreate_drift.py      | 139 +++++++++++++
 .../unit/google/cloud/operators/test_compute.py    |  81 ++++++++
 .../smtp/src/airflow/providers/smtp/hooks/smtp.py  |  16 +-
 providers/smtp/tests/unit/smtp/hooks/test_smtp.py  |  98 +++++++++
 .../airflow/providers/snowflake/hooks/snowflake.py |  25 ++-
 .../tests/unit/snowflake/hooks/test_snowflake.py   |  18 ++
 .../airflow/providers/standard/operators/python.py |  95 ++++++++-
 .../standard/utils/python_virtualenv_script.jinja2 |  47 +++++
 .../tests/unit/standard/operators/test_python.py   | 120 +++++++++++
 pyproject.toml                                     |   2 +-
 scripts/tools/setup_breeze                         |   2 +-
 task-sdk/docs/api.rst                              |   2 +
 task-sdk/src/airflow/sdk/__init__.py               |   3 +
 task-sdk/src/airflow/sdk/__init__.pyi              |   2 +
 .../{identity.py => allowed_key.py}                |   9 +-
 82 files changed, 1738 insertions(+), 464 deletions(-)
 copy airflow-core/src/airflow/partition_mappers/{base.py => allowed_key.py} 
(61%)
 create mode 100644 airflow-core/src/airflow/ui/src/components/Logo.tsx
 create mode 100644 
airflow-core/tests/unit/partition_mappers/test_allowed_key.py
 copy {airflow-core/src/airflow/_shared => 
airflow-e2e-tests/tests/airflow_e2e_tests/xcom_object_storage_tests}/__init__.py
 (100%)
 create mode 100644 
airflow-e2e-tests/tests/airflow_e2e_tests/xcom_object_storage_tests/test_xcom_object_storage_backend.py
 create mode 100644 
providers/google/tests/system/google/cloud/compute/example_compute_recreate_drift.py
 copy task-sdk/src/airflow/sdk/definitions/partition_mappers/{identity.py => 
allowed_key.py} (80%)

Reply via email to