This is an automated email from the ASF dual-hosted git repository.
ash pushed a change to branch disable-db-access-tasks
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 1a9f97743f8 Disable ORM access from Tasks, DAG processing and Triggers
add bb8d465f221 Clean Leftovers of RemovedInAirflow3Warning (#47264)
add 4d98dc2555e Add Dag Dependencies as option to Dag Graph view (#47361)
add 7bfe283cf4f Fix test_python_client after adding permission (#47388)
add 140196dc925 AIP-84 | Add Auth for Event Logs (#47246)
add ffd4d9006bf AIP-38 Responsive dag run actions (#47394)
add aa24daba821 docs: update link to context.py in callbacks.rst (#45676)
add 93aacd26757 Disable ORM access from Tasks, DAG processing and Triggers
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 (1a9f97743f8)
\
N -- N -- N refs/heads/disable-db-access-tasks (93aacd26757)
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:
Dockerfile.ci | 2 +-
airflow/api/auth/backend/session.py | 38 ------
.../api_fastapi/core_api/openapi/v1-generated.yaml | 4 +
.../core_api/routes/public/event_logs.py | 3 +
airflow/configuration.py | 9 +-
airflow/exceptions.py | 7 --
airflow/executors/base_executor.py | 20 ---
airflow/jobs/scheduler_job_runner.py | 32 +----
airflow/ui/src/components/DagVersionSelect.tsx | 2 +-
.../ui/src/components/EditableMarkdownButton.tsx | 119 ++++++++++++++++++
.../Graph/{AssetNode.tsx => AliasNode.tsx} | 8 +-
.../Graph/{JoinNode.tsx => AssetConditionNode.tsx} | 17 ++-
airflow/ui/src/components/Graph/DagNode.tsx | 4 +-
airflow/ui/src/components/Graph/Edge.tsx | 2 +-
airflow/ui/src/components/Graph/reactflowUtils.ts | 3 +-
airflow/ui/src/components/Graph/useGraphLayout.ts | 4 +-
.../{ => TriggerDag}/EditableMarkdown.tsx | 2 +-
.../src/components/TriggerDag/TriggerDAGForm.tsx | 2 +-
airflow/ui/src/constants/searchParams.ts | 1 +
airflow/ui/src/layouts/Details/Graph/Graph.tsx | 59 +++++++--
airflow/ui/src/layouts/Details/PanelButtons.tsx | 124 +++++++++++++-----
airflow/ui/src/pages/Asset/AssetGraph.tsx | 15 ++-
airflow/ui/src/pages/Run/Header.tsx | 139 +++++++++++++--------
airflow/ui/src/pages/TaskInstance/Header.tsx | 50 ++++++--
clients/python/README.md | 4 +-
clients/python/test_python_client.py | 16 ++-
contributing-docs/testing/unit_tests.rst | 1 -
dev/README_RELEASE_PYTHON_CLIENT.md | 2 +-
.../logging-monitoring/callbacks.rst | 2 +-
.../core-concepts/executor/index.rst | 1 -
.../howto/docker-compose/docker-compose.yaml | 2 +-
newsfragments/47264.significant.rst | 16 +++
providers/edge/docs/edge_executor.rst | 1 -
.../fab/docs/auth-manager/api-authentication.rst | 2 +-
pyproject.toml | 1 -
scripts/ci/pre_commit/check_deprecations.py | 1 -
scripts/ci/testing/summarize_captured_warnings.py | 1 -
scripts/docker/entrypoint_ci.sh | 2 +-
tests/always/test_example_dags.py | 8 --
.../core_api/routes/public/test_event_logs.py | 18 +++
tests/core/test_configuration.py | 2 +-
tests/jobs/test_scheduler_job.py | 51 --------
tests/serialization/test_dag_serialization.py | 11 +-
43 files changed, 504 insertions(+), 304 deletions(-)
delete mode 100644 airflow/api/auth/backend/session.py
create mode 100644 airflow/ui/src/components/EditableMarkdownButton.tsx
copy airflow/ui/src/components/Graph/{AssetNode.tsx => AliasNode.tsx} (91%)
copy airflow/ui/src/components/Graph/{JoinNode.tsx => AssetConditionNode.tsx}
(70%)
rename airflow/ui/src/components/{ => TriggerDag}/EditableMarkdown.tsx (96%)
create mode 100644 newsfragments/47264.significant.rst