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

dependabot[bot] pushed a change to branch 
dependabot/pip/airflow-core/pip-dependency-updates-b0c9b5ec10
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 52df28266f4 Bump the pip-dependency-updates group across 3 directories 
with 2 updates
     add a3e93f8e1aa feat(e2e): add waitForAllDialogsClosed method to handle 
dialog backdrops (#66489)
     add c1734893709 Apply reserved-key check to XCom update payload (#65915)
     add 5fb78a3c04a Add `GlueCatalogCreatePartitionOperator` (#66546)
     add ad967f39d32 Add `BedrockUpdateGuardrailOperator` (#66547)
     add 3938e46bded Fix incorrect type warning from OTel spans (#66559)
     add 52098c2b89f Fix millisecond floating point duration bug (#66560)
     add fd8a956a706 UI:  Hide the `Next Run` timestamp for paused Dags. 
(#66552)
     add 77a2165e68d UI: Wrap long lines in rendered templates view (#63492)
     add 2de2cd8b831 Migrate stable branch protection from protected_branches 
to Rulesets (#66523)
     add 8f936371551 [Experimental] Split ci-amd-arm.yml into ARM canary and 
AMD per-PR workflows (#66348)
     add f141e155b2f Require trust sentinel for state.user injection in 
get_user() (#66562)
     add 88bbf59314a i18n(ko): Update deadline terms and counter unit per 
community vote (#66581)
     add 98c4b8306f3 Store `allow_producer_teams` in 
`dag_schedule_asset_reference` instead of `asset` (#66487)
     add aeb692f901f Skip date-shaped tags in upgrade_important_versions image 
bumper (#66588)
     add e32561f9a34 Bump the pip-dependency-updates group across 3 directories 
with 2 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   (52df28266f4)
            \
             N -- N -- N   
refs/heads/dependabot/pip/airflow-core/pip-dependency-updates-b0c9b5ec10 
(e32561f9a34)

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:
 .asf.yaml                                          | 125 +++----
 .github/workflows/{ci-amd-arm.yml => ci-amd.yml}   |  31 +-
 .github/workflows/{ci-amd-arm.yml => ci-arm.yml}   |  40 +--
 .github/workflows/ci-notification.yml              |   4 +-
 .github/workflows/e2e-flaky-tests-report.yml       |   5 +-
 .github/workflows/release_dockerhub_image.yml      |   2 +-
 .../update-constraints-on-push-stable.yml          |   2 +-
 .github/workflows/update-constraints-on-push.yml   |   2 +-
 .pre-commit-config.yaml                            |   7 +
 README.md                                          |   4 +-
 airflow-core/docs/migrations-ref.rst               |   5 +-
 .../api_fastapi/auth/middlewares/refresh_token.py  |   9 +-
 .../api_fastapi/core_api/datamodels/xcom.py        |  47 +--
 .../src/airflow/api_fastapi/core_api/security.py   |  21 +-
 .../execution_api/routes/task_instances.py         |   2 +-
 airflow-core/src/airflow/assets/manager.py         |   9 +-
 .../src/airflow/dag_processing/collection.py       |  16 +-
 ...ducer_teams_to_dag_schedule_asset_reference.py} |  27 +-
 airflow-core/src/airflow/models/asset.py           |  15 +-
 airflow-core/src/airflow/serialization/decoders.py |   1 +
 airflow-core/src/airflow/serialization/encoders.py |   2 +
 .../src/airflow/ui/public/i18n/locales/ko/dag.json |  10 +-
 .../src/airflow/ui/src/pages/Dag/Header.test.tsx   |  11 +
 .../src/airflow/ui/src/pages/Dag/Header.tsx        |  13 +-
 .../airflow/ui/src/pages/DagsList/DagCard.test.tsx |   8 +
 .../src/airflow/ui/src/pages/DagsList/DagCard.tsx  |   2 +-
 .../src/airflow/ui/src/pages/DagsList/DagsList.tsx |   2 +-
 .../src/pages/TaskInstance/RenderedTemplates.tsx   |  10 +-
 .../src/airflow/ui/src/utils/datetimeUtils.test.ts |  24 +-
 .../src/airflow/ui/src/utils/datetimeUtils.ts      |  25 +-
 .../src/airflow/ui/tests/e2e/pages/BasePage.ts     |  11 +
 .../airflow/ui/tests/e2e/pages/ConnectionsPage.ts  |   8 +-
 airflow-core/src/airflow/utils/db.py               |   2 +-
 .../auth/middlewares/test_refresh_token.py         |   6 +
 .../core_api/routes/public/test_xcom.py            |  20 ++
 .../unit/api_fastapi/core_api/test_security.py     |  29 +-
 airflow-core/tests/unit/assets/test_manager.py     |  22 +-
 .../tests/unit/dag_processing/test_collection.py   |  39 +++
 airflow-core/tests/unit/models/test_asset.py       |  63 ----
 dev/README_AIRFLOW3_DEV.md                         |   2 +-
 dev/README_RELEASE_AIRFLOW.md                      |   2 +-
 .../src/airflow_breeze/utils/selective_checks.py   |   6 +
 dev/update_github_branch_config.py                 |   4 +-
 generated/PYPI_README.md                           |   4 +-
 providers/amazon/docs/operators/bedrock.rst        |  14 +
 providers/amazon/docs/operators/glue_catalog.rst   |  14 +
 .../providers/amazon/aws/operators/bedrock.py      |  69 ++++
 .../providers/amazon/aws/operators/glue_catalog.py |  66 ++++
 .../system/amazon/aws/example_bedrock_guardrail.py |  12 +
 .../system/amazon/aws/example_glue_catalog.py      |  20 ++
 .../unit/amazon/aws/operators/test_bedrock.py      |  31 ++
 .../unit/amazon/aws/operators/test_glue_catalog.py |  38 +++
 scripts/ci/analyze_e2e_flaky_tests.py              |   4 +-
 scripts/ci/prek/check_ci_workflows_in_sync.py      | 375 +++++++++++++++++++++
 scripts/ci/prek/upgrade_important_versions.py      |  33 +-
 .../ci/prek/test_upgrade_important_versions.py     |  94 ++++++
 56 files changed, 1162 insertions(+), 307 deletions(-)
 copy .github/workflows/{ci-amd-arm.yml => ci-amd.yml} (98%)
 rename .github/workflows/{ci-amd-arm.yml => ci-arm.yml} (98%)
 copy 
airflow-core/src/airflow/migrations/versions/{0105_3_2_0_add_allowed_run_types_to_dag.py
 => 0114_3_3_0_add_allow_producer_teams_to_dag_schedule_asset_reference.py} 
(59%)
 create mode 100755 scripts/ci/prek/check_ci_workflows_in_sync.py
 create mode 100644 scripts/tests/ci/prek/test_upgrade_important_versions.py

Reply via email to