You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/02/25 12:23:07 UTC

[airflow] branch master updated (ab72b05 -> 45e72ca)

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

kaxilnaik pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from ab72b05  Fix pylint pre-commit checks when only todo files are changed (#14453)
     add 45e72ca  Add Tableau provider separate from Salesforce Provider (#14030)

No new revisions were added by this update.

Summary of changes:
 CONTRIBUTING.rst                                   |   1 +
 airflow/providers/dependencies.json                |   3 +
 airflow/providers/salesforce/CHANGELOG.rst         |  11 +++
 airflow/providers/salesforce/hooks/tableau.py      | 104 ++-------------------
 .../operators/tableau_refresh_workbook.py          |  88 ++---------------
 airflow/providers/salesforce/provider.yaml         |   5 +-
 .../salesforce/sensors/tableau_job_status.py       |  68 +++-----------
 .../{apache/beam => tableau}/CHANGELOG.rst         |   0
 .../providers/tableau}/__init__.py                 |   0
 .../providers/tableau/example_dags}/__init__.py    |   0
 .../example_tableau_refresh_workbook.py            |   4 +-
 .../providers/tableau/hooks}/__init__.py           |   0
 .../{salesforce => tableau}/hooks/tableau.py       |   0
 .../providers/tableau/operators}/__init__.py       |   0
 .../operators/tableau_refresh_workbook.py          |   4 +-
 airflow/providers/{jira => tableau}/provider.yaml  |  29 +++---
 .../providers/tableau/sensors}/__init__.py         |   0
 .../sensors/tableau_job_status.py                  |   2 +-
 .../index.rst                                      |  26 ++++--
 docs/integration-logos/tableau/tableau.png         | Bin 0 -> 4142 bytes
 docs/spelling_wordlist.txt                         |   1 +
 .../run_install_and_test_provider_packages.sh      |   2 +-
 setup.py                                           |   4 +
 tests/core/test_providers_manager.py               |   1 +
 .../tableau/hooks}/__init__.py                     |   0
 .../{salesforce => tableau}/hooks/test_tableau.py  |  32 +++++--
 .../hooks => tableau/operators}/__init__.py        |   0
 .../operators/test_tableau_refresh_workbook.py     |  26 +++++-
 .../{zendesk/hooks => tableau/sensors}/__init__.py |   0
 .../sensors/test_tableau_job_status.py             |  16 +++-
 30 files changed, 151 insertions(+), 276 deletions(-)
 copy airflow/providers/{apache/beam => tableau}/CHANGELOG.rst (100%)
 copy {tests/www/api/experimental => airflow/providers/tableau}/__init__.py (100%)
 copy {tests/providers/zendesk/hooks => airflow/providers/tableau/example_dags}/__init__.py (100%)
 rename airflow/providers/{salesforce => tableau}/example_dags/example_tableau_refresh_workbook.py (92%)
 copy {tests/www/api/experimental => airflow/providers/tableau/hooks}/__init__.py (100%)
 copy airflow/providers/{salesforce => tableau}/hooks/tableau.py (100%)
 copy {tests/providers/zendesk/hooks => airflow/providers/tableau/operators}/__init__.py (100%)
 copy airflow/providers/{salesforce => tableau}/operators/tableau_refresh_workbook.py (95%)
 copy airflow/providers/{jira => tableau}/provider.yaml (62%)
 copy {tests/providers/zendesk/hooks => airflow/providers/tableau/sensors}/__init__.py (100%)
 copy airflow/providers/{salesforce => tableau}/sensors/tableau_job_status.py (96%)
 copy docs/{apache-airflow-providers-google/operators/cloud => apache-airflow-providers-tableau}/index.rst (58%)
 create mode 100644 docs/integration-logos/tableau/tableau.png
 copy tests/{www/api/experimental => providers/tableau/hooks}/__init__.py (100%)
 rename tests/providers/{salesforce => tableau}/hooks/test_tableau.py (81%)
 copy tests/providers/{zendesk/hooks => tableau/operators}/__init__.py (100%)
 rename tests/providers/{salesforce => tableau}/operators/test_tableau_refresh_workbook.py (80%)
 copy tests/providers/{zendesk/hooks => tableau/sensors}/__init__.py (100%)
 rename tests/providers/{salesforce => tableau}/sensors/test_tableau_job_status.py (84%)