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
omit 0f19bf78157 Disable ORM access from Tasks, DAG processing and Triggers
add b2cae8c775b Fix AssetCondition docstring (#47379)
add 6107fcef991 AIP-84 | Add Auth for Dags (#47062)
add e49d7964de2 Add log grouping using summary and details tag. (#46820)
add 3fe756eb22b 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 (0f19bf78157)
\
N -- N -- N refs/heads/disable-db-access-tasks (3fe756eb22b)
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:
airflow/api_fastapi/common/db/common.py | 52 +++---
airflow/api_fastapi/common/parameters.py | 11 +-
airflow/api_fastapi/core_api/base.py | 23 +++
.../api_fastapi/core_api/openapi/v1-generated.yaml | 12 ++
airflow/api_fastapi/core_api/routes/public/dags.py | 17 +-
airflow/api_fastapi/core_api/security.py | 56 +++++-
airflow/ui/package.json | 1 +
airflow/ui/pnpm-lock.yaml | 14 ++
airflow/ui/src/mocks/handlers/index.ts | 3 +-
airflow/ui/src/mocks/handlers/log.ts | 194 +++++++++++++++++++++
.../Logs/Logs.test.tsx} | 36 ++--
airflow/ui/src/queries/useLogs.tsx | 53 +++++-
airflow/ui/testsSetup.ts | 4 +-
.../src/airflow/sdk/definitions/asset/__init__.py | 4 +-
.../core_api/routes/public/test_dags.py | 72 +++++++-
tests/api_fastapi/core_api/test_security.py | 8 +-
16 files changed, 483 insertions(+), 77 deletions(-)
create mode 100644 airflow/ui/src/mocks/handlers/log.ts
copy airflow/ui/src/pages/{Dag/DagHeader.test.tsx =>
TaskInstance/Logs/Logs.test.tsx} (55%)