This is an automated email from the ASF dual-hosted git repository.
weilee pushed a change to branch render-json-logs-new-ui
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard c608d76c391 test(test_log_reader): fix existing unit tests
discard e63d25b573d style: improve type annotation
discard 9a40616a20f style: reduce if-else and directly use bool for assigning
metadata["download_logs"]
discard 33e7049ca92 style: group metadata pop
discard 1e1db717df8 Fix typescript useLogs
discard ae086f2790f Render structured logs in the new UI rather than showing
raw JSON
add 43e3f6aa4cb Slow down DAG processor refreshing bundles (#46870)
add d903d76be3c Validation logic for the payload moved to the Serializer
for trigger_dag_run (#46882)
add 56e083f1455 AIP-72: Swap KubernetesExecutor to use taskSDK for
execution (#46860)
add 33d510799ce Render structured logs in the new UI rather than showing
raw JSON
add ab06e7675b9 Fix typescript useLogs
add 7426d510ada style: group metadata pop
add 09850d3ffb0 style: reduce if-else and directly use bool for assigning
metadata["download_logs"]
add 6f88f6d32c3 style: improve type annotation
add 9065f9419c0 test(test_log_reader): fix existing unit tests
add 4398ee79bd8 test(www): fix existing unit tests
add 6171d88246b fixup! test(www): fix existing unit tests
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 (c608d76c391)
\
N -- N -- N refs/heads/render-json-logs-new-ui (6171d88246b)
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/core_api/datamodels/dag_run.py | 35 +++++++++
.../api_fastapi/core_api/routes/public/dag_run.py | 37 ++-------
airflow/config_templates/config.yml | 10 +++
airflow/config_templates/unit_tests.cfg | 1 +
airflow/dag_processing/manager.py | 19 +++++
airflow/www/views.py | 6 +-
kubernetes_tests/test_kubernetes_executor.py | 6 ++
.../kubernetes/executors/kubernetes_executor.py | 33 +++++++-
.../executors/kubernetes_executor_utils.py | 21 ++++-
.../providers/cncf/kubernetes/pod_generator.py | 60 ++++++++++++---
.../unit/cncf/kubernetes/test_pod_generator.py | 62 +++++++++++++++
.../airflow/sdk/execution_time/execute_workload.py | 89 ++++++++++++++++++++++
.../src/airflow/sdk/execution_time/task_runner.py | 1 -
tests/dag_processing/test_manager.py | 30 ++++++++
tests/www/views/test_views_log.py | 35 +++------
15 files changed, 370 insertions(+), 75 deletions(-)
create mode 100644 task_sdk/src/airflow/sdk/execution_time/execute_workload.py