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

[airflow] branch mapped-task-drawer updated (bc06078 -> ea3551d)

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

bbovenzi pushed a change to branch mapped-task-drawer
in repository https://gitbox.apache.org/repos/asf/airflow.git.


 discard bc06078  Fix taskinstance/list buttons
    omit 4754c83  Update task run failed copy
    omit 8654787  Fix url params, hide last item breadcrumb links
    omit 76a5642  init_api_connexion in tests
    omit a8fd594  Fix undefined variables in tests
    omit 136a4f4  Split TaskInstance details component
    omit d65aeb3  Update filter upstream link
    omit 78ec306  Replace hard coded urls in react components
    omit 62047b9  Replace hard coded urls
    omit b5e727d  Fix argument count errors
    omit 5328eaf  Anticipate when the 'Accept' header is not present
    omit c44271c  remove request as arg
    omit f73374b  pass request as arg
    omit 5c96a85  Clean up views.py endpoints
    omit 2ddb476  Handle task/run action sideeffects by separating autorefresh and treeData hooks
    omit 2739675  Address PR feedback
    omit c714872  revert useTreeData changes
    omit 9c24468  auto-refresh task instance details
    omit 856d3f4  autorefresh dag run details
    omit 74d8b03  Improve button UX
    omit 4180ca4  Fix TimezoneEvent import
    omit 5a07b8d  Add timezone provider
    omit 03c0bdc  Fix task/run label, dialog focus, dag details overflow, panel open/close
    omit d083769  Code cleanup and fix task clear
    omit a6c4fe5  Fix dialog scrolling
    omit f7d97f4  Update confirm modals for runs and tasks
    omit 790e6b8  confirm mark task failed/success
    omit dfb5b17  fix extra links, hide local TZ if UTC,
    omit a75d80e  download log bug fixes
    omit 57f3142  add extra links to TI details
    omit 1fade13  download logs and external logs
    omit 987ea5a  update TI and DR buttons
    omit 4fe13dc  fix test with mock providers
    omit 8d46de9  move ref and selection to providers
    omit 515cbd4  make UI and tree work with mapped tasks
     add 60d9089  Consistent DB upgrade/downgrade arguments (#22537)
     add 898d31e  Adds HiveToDynamoDB Transfer Sample DAG and Docs (#22517)
     add 89a4c4d  Fix file permissions in all build commands (#22656)
     add 583ff81  make UI and tree work with mapped tasks
     add 2250a4b  move ref and selection to providers
     add 2925f47  fix test with mock providers
     add 60cf89f  update TI and DR buttons
     add cada012  download logs and external logs
     add 5b89e18  add extra links to TI details
     add 8a55597  download log bug fixes
     add 5adbf0c  fix extra links, hide local TZ if UTC,
     add 6862f98  confirm mark task failed/success
     add 2d1b48d  Update confirm modals for runs and tasks
     add ff5a461  Fix dialog scrolling
     add 6c91288  Code cleanup and fix task clear
     add b6d3b2f  Fix task/run label, dialog focus, dag details overflow, panel open/close
     add 3b7c025  Add timezone provider
     add cd2c5f1  Fix TimezoneEvent import
     add ec930f7  Improve button UX
     add a47ed4f  autorefresh dag run details
     add 912b733  auto-refresh task instance details
     add 50a8e44  revert useTreeData changes
     add 20aebb2  Address PR feedback
     add a25704d  Handle task/run action sideeffects by separating autorefresh and treeData hooks
     add 5c60ab0  Clean up views.py endpoints
     add a3f70a9  pass request as arg
     add ea1ed4d  remove request as arg
     add 6229ace  Anticipate when the 'Accept' header is not present
     add 7ff5c72  Fix argument count errors
     add 8c36a1c  Replace hard coded urls
     add 39e732b  Replace hard coded urls in react components
     add 4c29813  Update filter upstream link
     add 09ff24f  Split TaskInstance details component
     add 566eca6  Fix undefined variables in tests
     add aef7325  init_api_connexion in tests
     add 5824b12  Fix url params, hide last item breadcrumb links
     add a3a01dd  Update task run failed copy
     add ea3551d  Fix taskinstance/list buttons

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   (bc06078)
            \
             N -- N -- N   refs/heads/mapped-task-drawer (ea3551d)

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/cli/cli_parser.py                          |  14 +--
 airflow/cli/commands/db_command.py                 |  44 +++----
 .../aws/example_dags/example_hive_to_dynamodb.py   | 132 +++++++++++++++++++++
 .../amazon/aws/transfers/hive_to_dynamodb.py       |   4 +
 airflow/providers/amazon/provider.yaml             |   1 +
 airflow/utils/db.py                                |   2 +-
 dev/breeze/src/airflow_breeze/ci/build_image.py    |  10 +-
 .../src/airflow_breeze/prod/build_prod_image.py    |   6 +-
 dev/breeze/src/airflow_breeze/shell/enter_shell.py |   2 -
 dev/breeze/src/airflow_breeze/utils/run_utils.py   |   1 +
 .../operators/transfer/hive_to_dynamodb.rst        |  56 +++++++++
 scripts/ci/testing/run_offline_sql_test.sh         |   2 +-
 tests/cli/commands/test_db_command.py              |  50 ++++----
 13 files changed, 256 insertions(+), 68 deletions(-)
 create mode 100644 airflow/providers/amazon/aws/example_dags/example_hive_to_dynamodb.py
 create mode 100644 docs/apache-airflow-providers-amazon/operators/transfer/hive_to_dynamodb.rst