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/07/28 11:36:47 UTC

[airflow] branch move-sql-operators-to-common-sql updated (9b7b62168e -> 73eff04896)

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

potiuk pushed a change to branch move-sql-operators-to-common-sql
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 9b7b62168e Move all "old" SQL operators to common.sql providers
     add b653289e68 Upgrade to latest `pip` version 22.2.1 released today (#25348)
     add dbbe9ac87e Remove Werkzeug limitation after flask-login was fixed (#25291)
     add 7e295b7d99 Add possibility to specify command to run at Breeze entry via env var (#25288)
     add b0fd105f4a Allow Legacy SqlSensor to use the common.sql providers (#25293)
     add 5efe6f34fd Remove useless logging line (#25347)
     add 8b4e55f68f List upstream dataset events (#25300)
     add e994f2b020 Add dataset-triggered run type icon (#25244)
     add d2df9fe786 Add `operator` and `has_outlet_datasets` to `/grid_data` (#25323)
     add 73eff04896 Move all "old" SQL operators to common.sql providers

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   (9b7b62168e)
            \
             N -- N -- N   refs/heads/move-sql-operators-to-common-sql (73eff04896)

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:
 BREEZE.rst                                         |   6 +
 Dockerfile                                         |   4 +-
 Dockerfile.ci                                      |   4 +-
 IMAGES.rst                                         |   2 +-
 airflow/models/dagrun.py                           |   7 +-
 airflow/operators/check_operator.py                |  16 +-
 airflow/operators/presto_check_operator.py         |  16 +-
 airflow/operators/sql_branch_operator.py           |   8 +-
 airflow/providers/common/sql/hooks/sql.py          |  20 +-
 airflow/providers/common/sql/operators/sql.py      |   4 +-
 airflow/www/static/js/api/index.ts                 |   2 +
 ...{useDatasets.ts => useUpstreamDatasetEvents.ts} |  32 +-
 .../static/js/components/RunTypeIcon.tsx}          |  56 +-
 airflow/www/static/js/components/Table/Cells.tsx   |  61 ++
 .../js/components/{ => Table}/Table.test.tsx       |   4 +-
 .../js/components/{Table.tsx => Table/index.tsx}   |   4 +-
 airflow/www/static/js/dag/details/Dag.tsx          |   2 +-
 airflow/www/static/js/dag/details/Header.tsx       |  45 +-
 .../js/dag/details/dagRun/UpstreamEvents.tsx       |  82 +++
 airflow/www/static/js/dag/details/dagRun/index.tsx |  13 +-
 .../dag/details/taskInstance/MappedInstances.tsx   |   2 +-
 airflow/www/static/js/dag/grid/dagRuns/Bar.tsx     |  31 +-
 airflow/www/static/js/datasets/Details.tsx         | 103 +--
 airflow/www/static/js/datasets/List.tsx            |   7 +-
 airflow/www/templates/airflow/dag.html             |   1 +
 airflow/www/views.py                               |   3 +
 dev/breeze/src/airflow_breeze/global_constants.py  |   1 +
 .../airflow_breeze/utils/docker_command_utils.py   |   1 +
 dev/provider_packages/prepare_provider_packages.py |   9 +-
 docs/docker-stack/build-arg-ref.rst                |   2 +-
 scripts/ci/docker-compose/_docker.env              |   1 +
 scripts/ci/docker-compose/base.yml                 |   1 +
 scripts/ci/docker-compose/devcontainer.env         |   1 +
 scripts/ci/libraries/_initialization.sh            |   2 +-
 scripts/docker/common.sh                           |   2 +-
 scripts/in_container/run_init_script.sh            |   4 +
 setup.cfg                                          |   6 +-
 tests/operators/test_sql.py                        | 779 ---------------------
 tests/providers/common/sql/hooks/test_dbapi.py     |  20 +
 tests/providers/common/sql/operators/test_sql.py   | 776 +++++++++++++++++++-
 .../qubole/operators/test_qubole_check.py          |  11 +-
 tests/providers/slack/operators/test_slack.py      |   8 +-
 tests/www/views/test_views.py                      |   5 +-
 tests/www/views/test_views_grid.py                 |  59 +-
 44 files changed, 1206 insertions(+), 1017 deletions(-)
 copy airflow/www/static/js/api/{useDatasets.ts => useUpstreamDatasetEvents.ts} (65%)
 copy airflow/{ui/src/views/Access/AccessContainer.tsx => www/static/js/components/RunTypeIcon.tsx} (50%)
 create mode 100644 airflow/www/static/js/components/Table/Cells.tsx
 rename airflow/www/static/js/components/{ => Table}/Table.test.tsx (99%)
 rename airflow/www/static/js/components/{Table.tsx => Table/index.tsx} (99%)
 create mode 100644 airflow/www/static/js/dag/details/dagRun/UpstreamEvents.tsx
 delete mode 100644 tests/operators/test_sql.py