You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/08/15 20:31:07 UTC

[airflow] branch add-grouped-output-in-ci-for-parallell-runs updated (cbf65b08c8 -> 9c9bbf097e)

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

potiuk pushed a change to branch add-grouped-output-in-ci-for-parallell-runs
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard cbf65b08c8 Add groups in CI output for parallell tasks
     add 588fcc0fa7 Grid, fix toast for axios errors (#25703)
     add 50afb0398f Upgrade MyPy to 0.971 (#25708)
     add 6c5b0776c0 Adding a parameter for exclusion of trashed files in GoogleDriveHook (#25675)
     add a82931a276 INTHEWILD, add shopify (#25701)
     add 88292837ba Grid logs for mapped instances (#25610)
     add 7a19651369 Fix SQL split string to include `;-less` statements (#25713)
     add 7d0525a55b Prepare documentation for RC4 release of providers (#25720)
     add 762588dcf4 fix bug construction of Connection object in version 5.0.0rc3 (#25716)
     add ed39703cd4 Only excluded actually expanded fields from render (#25599)
     add ef1bfd99f8 Allow to pass AIRFLOW_SOURCES env variable to ci entrypoint (#25709)
     add 38e2e49110 make grid view group/mapped summary UI  more consistent (#25723)
     add 43f9e53897 Added MySQL index hint to use ti_state on find_zombies query (#25725)
     add c7215a28f9 Correct `json` arg help in `airflow variables set` command (#25726)
     add 9c9bbf097e Add groups in CI output for parallell tasks

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   (cbf65b08c8)
            \
             N -- N -- N   refs/heads/add-grouped-output-in-ci-for-parallell-runs (9c9bbf097e)

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 +-
 INTHEWILD.md                                       |   1 +
 airflow/cli/cli_parser.py                          |   7 +-
 airflow/jobs/scheduler_job.py                      |   1 +
 airflow/models/mappedoperator.py                   |   9 +-
 .../amazon/aws/secrets/secrets_manager.py          |   1 +
 airflow/providers/common/sql/CHANGELOG.rst         |   5 +
 airflow/providers/common/sql/hooks/sql.py          |   4 +-
 airflow/providers/databricks/CHANGELOG.rst         |   2 +
 airflow/providers/google/suite/hooks/drive.py      |  22 ++-
 airflow/www/static/js/api/index.ts                 |  22 +--
 .../js/api/{useTaskLog.tsx => useTaskInstance.tsx} |  40 ++++--
 airflow/www/static/js/api/useTaskLog.tsx           |   7 +-
 .../www/static/js/dag/details/BreadcrumbText.tsx   |  11 +-
 airflow/www/static/js/dag/details/Header.tsx       |  14 +-
 airflow/www/static/js/dag/details/index.tsx        |   4 +-
 .../taskInstance/BackToTaskSummary.tsx}            |  34 ++---
 .../static/js/dag/details/taskInstance/Details.tsx |  64 +++++----
 .../dag/details/taskInstance/Logs/LogLink.test.tsx |   4 +-
 .../js/dag/details/taskInstance/Logs/LogLink.tsx   |   4 +-
 .../dag/details/taskInstance/Logs/index.test.tsx   |  37 +++++
 .../js/dag/details/taskInstance/Logs/index.tsx     |  16 ++-
 .../dag/details/taskInstance/MappedInstances.tsx   |  84 +++---------
 .../www/static/js/dag/details/taskInstance/Nav.tsx |   8 +-
 .../static/js/dag/details/taskInstance/index.tsx   | 152 +++++++++++----------
 .../{ActionButton.jsx => ActionButton.tsx}         |   9 +-
 .../dag/details/taskInstance/taskActions/index.tsx |  76 +++++++++++
 .../details/taskInstance/taskActions/types.tsx}    |  16 +--
 airflow/www/static/js/dag/useSelection.test.tsx    |  12 +-
 airflow/www/static/js/dag/useSelection.ts          |  11 +-
 airflow/www/static/js/types/index.ts               |   1 +
 airflow/www/static/js/utils/useErrorToast.test.tsx |  28 +++-
 airflow/www/static/js/utils/useErrorToast.ts       |  18 ++-
 airflow/www/templates/airflow/dag.html             |   1 +
 dev/breeze/src/airflow_breeze/utils/run_utils.py   |   4 +-
 .../commits.rst                                    |   4 +-
 .../commits.rst                                    |   4 +-
 scripts/docker/entrypoint_ci.sh                    |   2 +-
 scripts/in_container/_in_container_utils.sh        |   8 +-
 setup.py                                           |   2 +-
 tests/models/test_mappedoperator.py                |  18 +++
 .../amazon/aws/secrets/test_secrets_manager.py     |   3 +-
 tests/providers/common/sql/hooks/test_sqlparse.py  |  41 ++++++
 tests/providers/google/suite/hooks/test_drive.py   |  23 +++-
 44 files changed, 558 insertions(+), 278 deletions(-)
 copy airflow/www/static/js/api/{useTaskLog.tsx => useTaskInstance.tsx} (54%)
 copy airflow/www/static/js/dag/{grid/ResetRoot.tsx => details/taskInstance/BackToTaskSummary.tsx} (67%)
 rename airflow/www/static/js/dag/details/taskInstance/taskActions/{ActionButton.jsx => ActionButton.tsx} (79%)
 create mode 100644 airflow/www/static/js/dag/details/taskInstance/taskActions/index.tsx
 copy airflow/www/static/js/{index.d.ts => dag/details/taskInstance/taskActions/types.tsx} (76%)
 create mode 100644 tests/providers/common/sql/hooks/test_sqlparse.py