This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-82fed8f7fc
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard c986c1f59d7 Bump the ui-plugin-template-package-updates group across 1
directory with 16 updates
add 6026c1e81c9 Fix uv.lock-conflict notifier hitting GitHub GraphQL with
trailing slash (#66539)
add 34ef2503e1d Add purge-warnings and bundle-refresh override seams to
DagFileProcessorManager (#66107)
add 7bae68f3258 Support inline ignore marker for check-sdk-imports hook
(#66519)
add 314da4e4585 Set SameSite=Lax on SimpleAuthManager all-admins login
cookie (#66502)
add e3168b18835 Bump stylelint (#66528)
add 9984e184b29 Bump the auth-ui-package-updates group across 1 directory
with 6 updates (#66531)
add 1100afbec5c Reserve /auth and /pluginsv2 from plugin url_prefix
(#66501)
add d3ea3ef0bcc Add documentation for team-based asset event filtering
(#65690)
add 3f7756bea71 fix: the ldap authentication handler in the flask-ap... in
override.py (#66417)
add 9eea622d324 Use cryptographically secure RNG for SimpleAuthManager
passwords (#66500)
add 02f9f6b6383 Fix EMR container job not cancelled on deferral timeout
(#64770)
add b75cdfe743d Pin ubuntu image in K8s basic_pod.yaml to ubuntu:24.04
(#66527)
add 0a130b38b59 Use hmac.compare_digest for SimpleAuthManager password
compare (CWE-208) (#66556)
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 c426f136821 Bump the ui-plugin-template-package-updates group across 1
directory with 16 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 (c986c1f59d7)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-82fed8f7fc
(c426f136821)
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 +-
.../docs/authoring-and-scheduling/assets.rst | 47 +++
airflow-core/docs/core-concepts/multi-team.rst | 139 +++++++-
airflow-core/docs/migrations-ref.rst | 5 +-
airflow-core/src/airflow/api_fastapi/app.py | 2 +-
.../auth/managers/simple/routes/login.py | 1 +
.../auth/managers/simple/services/login.py | 11 +-
.../auth/managers/simple/simple_auth_manager.py | 5 +-
.../auth/managers/simple/ui/package.json | 12 +-
.../auth/managers/simple/ui/pnpm-lock.yaml | 308 +++++++++--------
.../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 +-
airflow-core/src/airflow/dag_processing/manager.py | 26 +-
.../example_dags/example_asset_allow_teams.py | 75 +++++
...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/managers/simple/routes/test_login.py | 1 +
.../auth/managers/simple/services/test_login.py | 26 ++
.../managers/simple/test_simple_auth_manager.py | 8 +
.../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/api_fastapi/test_app.py | 19 +-
airflow-core/tests/unit/assets/test_manager.py | 22 +-
.../tests/unit/dag_processing/test_collection.py | 39 +++
.../tests/unit/dag_processing/test_manager.py | 41 +++
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 +
.../react_plugin_template/pnpm-lock.yaml | 18 +-
dev/update_github_branch_config.py | 4 +-
docs/spelling_wordlist.txt | 2 +
generated/PYPI_README.md | 4 +-
.../tests/kubernetes_tests/basic_pod.yaml | 2 +-
providers/amazon/docs/operators/bedrock.rst | 14 +
providers/amazon/docs/operators/glue_catalog.rst | 14 +
.../providers/amazon/aws/operators/bedrock.py | 69 ++++
.../airflow/providers/amazon/aws/operators/emr.py | 14 +-
.../providers/amazon/aws/operators/glue_catalog.py | 66 ++++
.../airflow/providers/amazon/aws/triggers/emr.py | 35 +-
.../system/amazon/aws/example_bedrock_guardrail.py | 12 +
.../system/amazon/aws/example_glue_catalog.py | 20 ++
.../unit/amazon/aws/operators/test_bedrock.py | 31 ++
.../amazon/aws/operators/test_emr_containers.py | 10 +
.../unit/amazon/aws/operators/test_glue_catalog.py | 38 +++
.../tests/unit/amazon/aws/triggers/test_emr.py | 66 ++++
.../fab/auth_manager/security_manager/override.py | 27 +-
.../fab/src/airflow/providers/fab/www/package.json | 2 +-
.../src/airflow/providers/fab/www/pnpm-lock.yaml | 33 +-
scripts/ci/analyze_e2e_flaky_tests.py | 4 +-
scripts/ci/notify_uv_lock_conflicts.py | 7 +-
scripts/ci/prek/check_ci_workflows_in_sync.py | 375 +++++++++++++++++++++
scripts/ci/prek/check_sdk_imports.py | 7 +-
scripts/ci/prek/common_prek_utils.py | 10 +
scripts/ci/prek/upgrade_important_versions.py | 33 +-
scripts/tests/ci/prek/test_check_sdk_imports.py | 140 ++++++++
.../ci/prek/test_upgrade_important_versions.py | 94 ++++++
85 files changed, 2043 insertions(+), 520 deletions(-)
copy .github/workflows/{ci-amd-arm.yml => ci-amd.yml} (98%)
rename .github/workflows/{ci-amd-arm.yml => ci-arm.yml} (98%)
create mode 100644
airflow-core/src/airflow/example_dags/example_asset_allow_teams.py
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_check_sdk_imports.py
create mode 100644 scripts/tests/ci/prek/test_upgrade_important_versions.py