This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-8c56e15d4f
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard a4a55a6d366 Bump the core-ui-package-updates group across 1 directory
with 12 updates
add bce20ff30bb Catch lang-SDK Go example module drift before it reaches
main (#70568)
add f840a821380 Make deadline reads and serialization robust to
dynamic/malformed intervals (#68919)
add 87ac18b0b94 UI: Add a slowest tasks chart to the Dag Overview (#70305)
add 4d5bb4bd82f Bump the fab-ui-package-updates group across 1 directory
with 3 updates (#70604)
add 3a163392825 Bump the auth-ui-package-updates group across 1 directory
with 6 updates (#70607)
add fc7da80c665 Bump @testing-library/jest-dom (#70609)
add 6575b3fdc4e Fix asset state store writes forbidden under FAB auth
manager (#70478)
add d7a921ede7f Bump the uv-dependency-updates group in /dev/breeze with 3
updates (#70606)
add 3c54ec32c97 Bump the github-actions-updates group with 5 updates
(#70617)
add 0eca3240914 Clarify provider release testing status issue creation
instructions (#70356)
add 30506688167 Support schema-qualified table names in db clean (#70147)
add b12df0525d7 Add IMPORT_ERRORS_ALL permission for import errors of
files with no registered Dag (#69790)
add c6449eb429f Build the docs CI image once and let the registry share it
(#70618)
add f31f5e4319c Remove unneeded forward-reference quotes from a type alias
(#70580)
add 6be11331c2e Bump swagger-ui-dist (#70598)
add 68c06c9ff7a Bump the react group across 1 directory with 2 updates
(#70603)
add e1f0792cfa7 Bump the core-ui-package-updates group across 1 directory
with 12 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 (a4a55a6d366)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-8c56e15d4f
(e1f0792cfa7)
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/ci-image-build.yml | 19 +-
.github/workflows/ci-image-checks.yml | 2 +-
.github/workflows/codeql-analysis.yml | 6 +-
.github/workflows/publish-docs-to-s3.yml | 79 +++--
.github/workflows/registry-backfill.yml | 4 +-
.github/workflows/registry-build.yml | 56 +++-
.github/workflows/registry-tests.yml | 2 +-
.pre-commit-config.yaml | 17 +
.../docs/core-concepts/auth-manager/index.rst | 37 ++-
airflow-core/newsfragments/69790.feature.rst | 1 +
.../api_fastapi/auth/managers/base_auth_manager.py | 33 +-
.../auth/managers/models/resource_details.py | 3 +
.../auth/managers/simple/simple_auth_manager.py | 16 +-
.../auth/managers/simple/ui/package.json | 14 +-
.../auth/managers/simple/ui/pnpm-lock.yaml | 347 +++++++++++----------
.../api_fastapi/core_api/datamodels/ui/deadline.py | 31 +-
.../api_fastapi/core_api/openapi/_private_ui.yaml | 14 +-
.../core_api/routes/public/import_error.py | 65 +++-
.../api_fastapi/core_api/routes/ui/deadlines.py | 2 +-
airflow-core/src/airflow/models/dag.py | 4 +-
airflow-core/src/airflow/ui/package.json | 4 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 280 ++++++++---------
.../ui/public/i18n/locales/en/components.json | 4 +
.../src/components/SlowestTaskInstancesChart.tsx | 161 ++++++++++
.../airflow/ui/src/pages/Dag/Overview/Overview.tsx | 31 ++
airflow-core/src/airflow/utils/db.py | 19 +-
airflow-core/src/airflow/utils/db_cleanup.py | 90 ++++--
.../auth/managers/test_base_auth_manager.py | 50 ++-
.../core_api/routes/public/test_import_error.py | 327 ++++++++++++++++---
.../core_api/routes/ui/test_deadlines.py | 83 ++++-
airflow-core/tests/unit/utils/test_db_cleanup.py | 110 +++++++
dev/README_RELEASE_PROVIDERS.md | 88 +++---
dev/breeze/uv.lock | 24 +-
providers/amazon/pyproject.toml | 2 +-
.../amazon/aws/auth_manager/aws_auth_manager.py | 3 +
.../{sqlalchemy/orm.py => security/access_view.py} | 14 +-
.../common/compat/security/test_access_view.py | 60 ++++
providers/fab/pyproject.toml | 2 +-
.../providers/fab/auth_manager/fab_auth_manager.py | 12 +-
.../fab/auth_manager/security_manager/override.py | 2 +
.../fab/src/airflow/providers/fab/www/package.json | 6 +-
.../src/airflow/providers/fab/www/pnpm-lock.yaml | 329 ++++++++++---------
.../providers/fab/www/security/permissions.py | 1 +
providers/keycloak/pyproject.toml | 2 +-
.../keycloak/auth_manager/keycloak_auth_manager.py | 5 +-
registry/package.json | 2 +-
registry/pnpm-lock.yaml | 10 +-
scripts/ci/prek/check_go_example_mod_tidy.py | 126 ++++++++
.../ci/prek/test_check_go_example_mod_tidy.py | 99 ++++++
49 files changed, 1970 insertions(+), 728 deletions(-)
create mode 100644 airflow-core/newsfragments/69790.feature.rst
create mode 100644
airflow-core/src/airflow/ui/src/components/SlowestTaskInstancesChart.tsx
copy
providers/common/compat/src/airflow/providers/common/compat/{sqlalchemy/orm.py
=> security/access_view.py} (63%)
create mode 100644
providers/common/compat/tests/unit/common/compat/security/test_access_view.py
create mode 100755 scripts/ci/prek/check_go_example_mod_tidy.py
create mode 100644 scripts/tests/ci/prek/test_check_go_example_mod_tidy.py