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-5e415639ae
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 4a6e759a004 Bump the ui-plugin-template-package-updates group across 1
directory with 22 updates
add 24043c08312 Bump the core-ui-package-updates group across 1 directory
with 3 updates (#58731)
add 346391e1b89 Bump stylelint from 16.25.0 to 16.26.0 in
/providers/fab/src/airflow/providers/fab/www in the fab-ui-package-updates
group across 1 directory (#58678)
add 3d52a48cc85 Fix mypy errors in `api_fastapi` (#58730)
add da9bb786fe4 fix: TriggerDagRunOperator deferral mode not working for
Airflow 3 (#58497)
add b72df7bd487 Increase scheduler loop sleep in dag.test for executors
(#58739)
add cc16dd60ac7 Add Keycloak login settings management documentation
(#58605)
add 95c1e3c6f2d feat: added /ui/auth/me to private endpoints (#58292)
add 7b869aa6680 Fix formatting error in Breeze setup instructions (#58748)
add 1d8fa22b1e0 Don't crash the scheduler on a stray ADRQ (#58655)
add acfa8a24dcd Revert "Increase scheduler loop sleep in dag.test for
executors (#58739)" (#58745)
add 3928c9dfddd Fix link format for installation guide in documentation
(#58751)
add 08e87145815 Redact secrets in rendered templates properly to not
expose them on UI (#58767)
add ca972401b60 Adding Task-SDK integration tests for Connection
Operations (#58768)
add c2afbbdfb19 fix: mypy error in serialized_dag.py (#58581)
add 1ce068bc126 fix(models/dag): handle pre AIP-39 DagRuns (#58229)
add e8ac56e8f3c Fix mypy errors in airflow-core in
api_fastapi/core_api/routes/ui/dags.py (#58352)
add 7f8b088e123 feat: add OpenFaaS connection type and documentation
(#58759)
add b2b1baed898 Bump the ui-plugin-template-package-updates group across 1
directory with 22 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 (4a6e759a004)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-5e415639ae
(b2b1baed898)
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:
.../auth/managers/simple/ui/package-lock.json | 242 +++++++++------------
.../auth/managers/simple/ui/package.json | 2 +-
.../auth/managers/simple/ui/pnpm-lock.yaml | 30 +--
.../api_fastapi/core_api/datamodels/ui/auth.py | 7 +
.../api_fastapi/core_api/openapi/_private_ui.yaml | 31 +++
.../airflow/api_fastapi/core_api/routes/ui/auth.py | 12 +
.../airflow/api_fastapi/core_api/routes/ui/dags.py | 2 +-
.../execution_api/routes/task_instances.py | 4 +-
airflow-core/src/airflow/models/asset.py | 5 +-
airflow-core/src/airflow/models/dag.py | 30 ++-
airflow-core/src/airflow/models/serialized_dag.py | 21 +-
.../src/airflow/ui/openapi-gen/queries/common.ts | 4 +
.../ui/openapi-gen/queries/ensureQueryData.ts | 7 +
.../src/airflow/ui/openapi-gen/queries/prefetch.ts | 7 +
.../src/airflow/ui/openapi-gen/queries/queries.ts | 7 +
.../src/airflow/ui/openapi-gen/queries/suspense.ts | 7 +
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 17 ++
.../ui/openapi-gen/requests/services.gen.ts | 15 +-
.../airflow/ui/openapi-gen/requests/types.gen.ts | 20 ++
.../api_fastapi/core_api/routes/ui/test_auth.py | 18 ++
airflow-core/tests/unit/models/test_dag.py | 63 ++++++
.../03a_contributors_quick_start_beginners.rst | 3 +-
...ontributors_quick_start_seasoned_developers.rst | 29 ---
contributing-docs/21_keycloak_client_settings.rst | 52 +++++
contributing-docs/README.rst | 8 +-
.../react_plugin_template/package.json | 2 +-
.../react_plugin_template/pnpm-lock.yaml | 18 +-
.../airflow/providers/fab/www/package-lock.json | 155 ++++++++++---
.../fab/src/airflow/providers/fab/www/package.json | 2 +-
providers/fab/www-hash.txt | 2 +-
providers/keycloak/docs/auth-manager/index.rst | 7 +
.../keycloak/docs/auth-manager/manage/login.rst | 103 +++++++++
providers/keycloak/docs/security.rst | 6 +
.../docs/connections/openfaas.rst} | 33 ++-
providers/openfaas/docs/index.rst | 7 +
providers/openfaas/provider.yaml | 4 +
.../providers/openfaas/get_provider_info.py | 6 +
.../airflow/providers/openfaas/hooks/openfaas.py | 17 +-
.../tests/unit/openfaas/hooks/test_openfaas.py | 7 +
.../providers/standard/operators/trigger_dagrun.py | 37 +++-
.../providers/standard/triggers/external_task.py | 19 +-
.../unit/standard/operators/test_trigger_dagrun.py | 14 ++
.../unit/standard/triggers/test_external_task.py | 102 +++++++++
.../task_sdk_tests/test_connection_operations.py | 20 +-
.../src/airflow/sdk/execution_time/task_runner.py | 12 +-
.../task_sdk/execution_time/test_task_runner.py | 52 +++++
46 files changed, 976 insertions(+), 292 deletions(-)
delete mode 100644
contributing-docs/03b_contributors_quick_start_seasoned_developers.rst
create mode 100644 contributing-docs/21_keycloak_client_settings.rst
create mode 100644 providers/keycloak/docs/auth-manager/manage/login.rst
copy providers/{influxdb/docs/connections/influxdb.rst =>
openfaas/docs/connections/openfaas.rst} (62%)