This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a change to branch v2-6-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit ea15346966 Add release notes
    omit bff38a2eff Update version to 2.6.0
     new eccac28b0c Adding configuration to control retry parameters for k8s 
api client (#29809)
     new 403cf86b56 When clearing task instances try to get associated DAGs 
from database (#29065)
     new 2a4fd5bdce Improve task & run actions ux in grid view (#30373)
     new 885a61b80c Create audit_logs.rst (#30405)
     new 06e4672bf4 Add command to get DAG Details via CLI (#30432)
     new 4439c93142 preload airflow imports before dag parsing to save time 
(#30495)
     new 9ee8cfb906 Update version to 2.6.0
     new 9d353600af Add release notes

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   (ea15346966)
            \
             N -- N -- N   refs/heads/v2-6-test (9d353600af)

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.

The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .pre-commit-config.yaml                            |   4 +-
 RELEASE_NOTES.rst                                  | 107 ++++++++-
 airflow/cli/cli_config.py                          |   6 +
 airflow/cli/commands/dag_command.py                |  22 ++
 airflow/config_templates/config.yml                |  18 +-
 airflow/config_templates/default_airflow.cfg       |  10 +
 airflow/dag_processing/processor.py                |  19 ++
 airflow/kubernetes/kube_client.py                  |  21 +-
 airflow/models/taskinstance.py                     |  11 +-
 airflow/utils/file.py                              |  21 ++
 airflow/www/static/js/api/index.ts                 |   4 +-
 airflow/www/static/js/api/useClearTask.ts          |   7 +-
 .../api/{useClearTask.ts => useClearTaskDryRun.ts} |  70 +++---
 airflow/www/static/js/api/useMarkFailedTask.ts     |   8 +-
 airflow/www/static/js/api/useMarkSuccessTask.ts    |   8 +-
 ...{useConfirmMarkTask.ts => useMarkTaskDryRun.ts} |  45 ++--
 airflow/www/static/js/components/ConfirmDialog.tsx | 103 --------
 .../www/static/js/dag/details/dagRun/ClearRun.tsx  |  81 ++++---
 .../static/js/dag/details/dagRun/MarkFailedRun.tsx |  73 ------
 .../www/static/js/dag/details/dagRun/MarkRunAs.tsx |  90 +++++++
 .../js/dag/details/dagRun/MarkSuccessRun.tsx       |  77 ------
 .../www/static/js/dag/details/dagRun/QueueRun.tsx  |  76 ------
 airflow/www/static/js/dag/details/dagRun/index.tsx |  19 --
 airflow/www/static/js/dag/details/index.tsx        |  37 ++-
 .../static/js/dag/details/taskInstance/index.tsx   |  20 --
 .../taskInstance/taskActions/ActionButton.tsx      |   4 +-
 .../taskInstance/taskActions/ActionModal.tsx       | 112 +++++++++
 .../dag/details/taskInstance/taskActions/Clear.tsx | 174 --------------
 .../taskInstance/taskActions/ClearInstance.tsx     | 235 ++++++++++++++++++
 .../taskInstance/taskActions/MarkFailed.tsx        | 141 -----------
 .../taskInstance/taskActions/MarkInstanceAs.tsx    | 267 +++++++++++++++++++++
 .../taskInstance/taskActions/MarkSuccess.tsx       | 141 -----------
 .../dag/details/taskInstance/taskActions/index.tsx |  84 -------
 .../dag/details/taskInstance/taskActions/types.ts  |  29 ---
 dev/airflow-github                                 |  10 +-
 .../security/audit_logs.rst                        |  64 +++++
 tests/cli/commands/test_dag_command.py             |  20 ++
 tests/dag_processing/test_job_runner.py            |   3 +-
 .../__init__.py => tests/dags/test_imports.py      |  39 +--
 tests/jobs/test_scheduler_job.py                   |   1 +
 tests/kubernetes/test_client.py                    |  11 +
 tests/models/test_cleartasks.py                    |  97 +++++++-
 tests/utils/test_file.py                           |  26 ++
 43 files changed, 1341 insertions(+), 1074 deletions(-)
 copy airflow/www/static/js/api/{useClearTask.ts => useClearTaskDryRun.ts} (65%)
 rename airflow/www/static/js/api/{useConfirmMarkTask.ts => 
useMarkTaskDryRun.ts} (76%)
 delete mode 100644 airflow/www/static/js/components/ConfirmDialog.tsx
 delete mode 100644 airflow/www/static/js/dag/details/dagRun/MarkFailedRun.tsx
 create mode 100644 airflow/www/static/js/dag/details/dagRun/MarkRunAs.tsx
 delete mode 100644 airflow/www/static/js/dag/details/dagRun/MarkSuccessRun.tsx
 delete mode 100644 airflow/www/static/js/dag/details/dagRun/QueueRun.tsx
 create mode 100644 
airflow/www/static/js/dag/details/taskInstance/taskActions/ActionModal.tsx
 delete mode 100644 
airflow/www/static/js/dag/details/taskInstance/taskActions/Clear.tsx
 create mode 100644 
airflow/www/static/js/dag/details/taskInstance/taskActions/ClearInstance.tsx
 delete mode 100644 
airflow/www/static/js/dag/details/taskInstance/taskActions/MarkFailed.tsx
 create mode 100644 
airflow/www/static/js/dag/details/taskInstance/taskActions/MarkInstanceAs.tsx
 delete mode 100644 
airflow/www/static/js/dag/details/taskInstance/taskActions/MarkSuccess.tsx
 delete mode 100644 
airflow/www/static/js/dag/details/taskInstance/taskActions/index.tsx
 delete mode 100644 
airflow/www/static/js/dag/details/taskInstance/taskActions/types.ts
 create mode 100644 
docs/apache-airflow/administration-and-deployment/security/audit_logs.rst
 copy airflow/secrets/__init__.py => tests/dags/test_imports.py (62%)

Reply via email to