This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/v3-1-test/core-ui-package-updates-77dc9a1bde
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard b9e22331d26 Bump the core-ui-package-updates group across 1 directory
with 55 updates
add 48a1e5293fc Fix Connection or Variable access in Server context
(#56602)
add 903f54c4173 Improve API doc for ordering query param (#55988)
add a6781e84888 Improve API sort documentation (#56617)
add 09add6ed452 Add optional pending dag runs check to auto refresh
(#56014) (#56648)
add 8a825cab9a2 [v3-1-test] bump zizmor and python 3.13 patch level
version in global_constants (#56639) (#56644)
add c5a7e64e797 [v3-1-test] Bump hatch version to 1.15.0 (#56652) (#56659)
add e11cac18653 [v3-1-test] Finalising Core Documentation Pages Screenshot
Update (#56167) (#56637)
add 4444168f87c Fix AutoRefresh when only 1 dag run is running (#56623)
(#56649)
add f05976b998f [v3-1-test] Fix task SDK connection error handling to
match airflow-core behavior (#56650) (#56653)
add 75ffacde3df [v3-1-test] chore: add credentials to access local airflow
instance (#56636) (#56662)
add 04b56eb361b [v3-1-test] Improve UI retry strategy on client errors
(#56625) (#56638)
add 093acd8f6a8 Bump the core-ui-package-updates group across 1 directory
with 55 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 (b9e22331d26)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/v3-1-test/core-ui-package-updates-77dc9a1bde
(093acd8f6a8)
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:
.pre-commit-config.yaml | 3 +-
airflow-core/docs/img/operator_extra_link.png | Bin 90399 -> 99256 bytes
airflow-core/docs/img/ui-dark/add-dag-tags.png | Bin 87307 -> 197146 bytes
.../img/ui-dark/trigger-dag-tutorial-form-1.png | Bin 66312 -> 148269 bytes
.../img/ui-dark/trigger-dag-tutorial-form-2.png | Bin 116706 -> 183724 bytes
.../img/ui-dark/trigger-dag-tutorial-form-3.png | Bin 80046 -> 157982 bytes
.../img/ui-dark/trigger-dag-tutorial-form-4.png | Bin 99544 -> 101871 bytes
.../tutorial_pipeline_dag_list_trigger.png | Bin 249992 -> 358283 bytes
airflow-core/newsfragments/56583.significant.rst | 49 ++++
.../src/airflow/api_fastapi/common/parameters.py | 8 +-
.../api_fastapi/core_api/openapi/_private_ui.yaml | 22 ++
.../core_api/openapi/v2-rest-api-generated.yaml | 116 +++++++++
airflow-core/src/airflow/api_fastapi/main.py | 4 +
.../src/airflow/jobs/scheduler_job_runner.py | 5 +
airflow-core/src/airflow/secrets/__init__.py | 29 ++-
.../ui/openapi-gen/queries/ensureQueryData.ts | 44 ++--
.../src/airflow/ui/openapi-gen/queries/prefetch.ts | 44 ++--
.../src/airflow/ui/openapi-gen/queries/queries.ts | 44 ++--
.../src/airflow/ui/openapi-gen/queries/suspense.ts | 44 ++--
.../ui/openapi-gen/requests/services.gen.ts | 44 ++--
.../airflow/ui/openapi-gen/requests/types.gen.ts | 66 +++++
airflow-core/src/airflow/ui/package.json | 8 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 276 ++++++++++-----------
.../ui/src/components/NeedsReviewButton.tsx | 7 +-
.../airflow/ui/src/layouts/Details/Grid/Grid.tsx | 18 +-
airflow-core/src/airflow/ui/src/pages/Dag/Dag.tsx | 2 +-
.../airflow/ui/src/pages/Dag/Overview/Overview.tsx | 8 +-
.../src/airflow/ui/src/pages/DagsList/DagCard.tsx | 6 +-
.../ui/src/pages/Dashboard/Health/Health.tsx | 2 +-
.../HistoricalMetrics/HistoricalMetrics.tsx | 2 +-
.../pages/Dashboard/PoolSummary/PoolSummary.tsx | 2 +-
.../airflow/ui/src/pages/Dashboard/Stats/Stats.tsx | 2 +-
.../ui/src/pages/Task/Overview/Overview.tsx | 11 +-
.../src/airflow/ui/src/queries/useGridRuns.ts | 4 +-
.../src/airflow/ui/src/queries/useGridStructure.ts | 3 +-
airflow-core/src/airflow/ui/src/queryClient.ts | 17 +-
airflow-core/src/airflow/ui/src/utils/query.ts | 34 ++-
airflow-core/tests/unit/core/test_configuration.py | 6 +-
.../commands/release_management_commands.py | 2 +-
dev/breeze/src/airflow_breeze/global_constants.py | 2 +-
dev/breeze/src/airflow_breeze/utils/visuals.py | 2 +-
task-sdk/src/airflow/sdk/execution_time/context.py | 105 +++-----
.../airflow/sdk/execution_time/secrets/__init__.py | 23 +-
.../sdk/execution_time/secrets/execution_api.py | 146 +++++++++++
.../src/airflow/sdk/execution_time/supervisor.py | 43 +++-
.../tests/task_sdk/definitions/test_connection.py | 4 +-
.../tests/task_sdk/definitions/test_variables.py | 6 +-
.../tests/task_sdk/execution_time/test_context.py | 99 ++++++++
.../task_sdk/execution_time/test_context_cache.py | 7 +-
.../tests/task_sdk/execution_time/test_secrets.py | 169 +++++++++++++
.../task_sdk/execution_time/test_task_runner.py | 2 +-
51 files changed, 1136 insertions(+), 404 deletions(-)
create mode 100644 airflow-core/newsfragments/56583.significant.rst
copy airflow-core/src/airflow/typing_compat.py =>
task-sdk/src/airflow/sdk/execution_time/secrets/__init__.py (66%)
create mode 100644
task-sdk/src/airflow/sdk/execution_time/secrets/execution_api.py
create mode 100644 task-sdk/tests/task_sdk/execution_time/test_secrets.py