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/06/29 08:41:51 UTC

[airflow] branch move-setup-dependencies-to-providers updated (dfda130ec4 -> 625d131441)

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

potiuk pushed a change to branch move-setup-dependencies-to-providers
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit dfda130ec4 Move provider dependencies to inside provider folders
     add 66ffe39b0b Do not fail requeued TIs (#23846)
     add 75db755f4b Grid task log, multi select and ts files migration. (#24623)
     add 9f58e82332 Fix migration 0080_2_0_2 - Replace null values before setting column not null (#24585)
     add c15cf6e10c Address all yarn test warnings (#24722)
     add 45b11d4ed1 Use our yaml util in all providers (#24720)
     add c118b2836f `AirbyteHook` add cancel job option (#24593)
     add 625d131441 Move provider dependencies to inside provider folders

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   (dfda130ec4)
            \
             N -- N -- N   refs/heads/move-setup-dependencies-to-providers (625d131441)

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/jobs/scheduler_job.py                      |  16 +-
 .../0080_2_0_2_change_default_pool_slots_to_1.py   |   1 +
 airflow/providers/airbyte/hooks/airbyte.py         |  12 +
 airflow/providers/airbyte/operators/airbyte.py     |  22 +-
 airflow/providers/amazon/aws/hooks/eks.py          |   2 +-
 .../providers/cncf/kubernetes/hooks/kubernetes.py  |   9 +-
 .../google/cloud/operators/cloud_build.py          |   2 +-
 airflow/www/package.json                           |   2 +-
 .../js/grid/api/{useTaskLog.js => useTaskLog.tsx}  |  18 +-
 airflow/www/static/js/grid/api/useTasks.test.jsx   |  15 +-
 .../static/js/grid/components/MultiSelect.tsx}     |  56 ++--
 airflow/www/static/js/grid/dagRuns/index.test.jsx  |   7 +-
 .../Logs/{LogLink.test.jsx => LogLink.test.tsx}    |   4 +-
 .../taskInstance/Logs/{LogLink.jsx => LogLink.tsx} |  13 +-
 .../details/content/taskInstance/Logs/index.jsx    | 244 -----------------
 .../Logs/{index.test.jsx => index.test.tsx}        |  13 +-
 .../details/content/taskInstance/Logs/index.tsx    | 290 +++++++++++++++++++++
 .../Logs/{utils.test.js => utils.test.tsx}         |  47 ++--
 .../taskInstance/Logs/{utils.js => utils.ts}       |  43 ++-
 .../js/grid/details/content/taskInstance/index.tsx |   4 +-
 airflow/www/static/js/grid/types/index.ts          |  10 +
 .../www/static/js/grid/utils/useFilters.test.jsx   |   2 +-
 .../www/static/js/grid/utils/useSelection.test.tsx |   2 +-
 airflow/www/yarn.lock                              |  85 ++++--
 docs/build_docs.py                                 |   5 +-
 docs/exts/docs_build/dev_index_generator.py        |   1 +
 docs/exts/docs_build/errors.py                     |   2 +-
 tests/jobs/test_scheduler_job.py                   |  62 +++++
 tests/providers/airbyte/hooks/test_airbyte.py      |   9 +
 29 files changed, 619 insertions(+), 379 deletions(-)
 rename airflow/www/static/js/grid/api/{useTaskLog.js => useTaskLog.tsx} (69%)
 copy airflow/{ui/src/index.tsx => www/static/js/grid/components/MultiSelect.tsx} (53%)
 rename airflow/www/static/js/grid/details/content/taskInstance/Logs/{LogLink.test.jsx => LogLink.test.tsx} (96%)
 rename airflow/www/static/js/grid/details/content/taskInstance/Logs/{LogLink.jsx => LogLink.tsx} (85%)
 delete mode 100644 airflow/www/static/js/grid/details/content/taskInstance/Logs/index.jsx
 rename airflow/www/static/js/grid/details/content/taskInstance/Logs/{index.test.jsx => index.test.tsx} (96%)
 create mode 100644 airflow/www/static/js/grid/details/content/taskInstance/Logs/index.tsx
 rename airflow/www/static/js/grid/details/content/taskInstance/Logs/{utils.test.js => utils.test.tsx} (83%)
 rename airflow/www/static/js/grid/details/content/taskInstance/Logs/{utils.js => utils.ts} (78%)