You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by gi...@apache.org on 2020/06/23 02:55:26 UTC

[airflow] tag nightly-master updated (2190e50 -> ee36142)

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

github-bot pushed a change to tag nightly-master
in repository https://gitbox.apache.org/repos/asf/airflow.git.


*** WARNING: tag nightly-master was modified! ***

    from 2190e50  (commit)
      to ee36142  (commit)
    from 2190e50  Move modules in `airflow.contrib.utils.log` to `airflow.utils.log` (#9395)
     add c9c0275  Disable schema  ordering (#9471)
     add 2bb40ef  Add __init__ method to Variable class (#9470)
     add 3235670  Add unit tests for OracleOperator (#9469)
     add d7de735  Move out weekday from airflow.contrib (#9388)
     add c7a454a  Add AWS ECS system test (#8888)
     add 7256f4c  Pylint fixes and deprecation of rare used methods in Connection (#9419)
     add 097180b  Remove redundant code from breeze initialization (#9375)
     add ee36142  Remove unused recurse_tasks function (#9465)

No new revisions were added by this update.

Summary of changes:
 UPDATING.md                                        |  33 ++++
 airflow/api_connexion/schemas/dag_run_schema.py    |   5 -
 airflow/contrib/utils/weekday.py                   |  41 +---
 airflow/hooks/base_hook.py                         |  12 +-
 airflow/models/connection.py                       | 117 ++++++++++--
 airflow/models/variable.py                         |   7 +-
 .../amazon/aws/example_dags/example_ecs_fargate.py |  11 +-
 airflow/providers/google/cloud/hooks/cloud_sql.py  |   3 +-
 airflow/sensors/weekday_sensor.py                  |   8 +-
 airflow/{contrib => }/utils/weekday.py             |   1 -
 airflow/www/utils.py                               |  19 --
 scripts/ci/libraries/_initialization.sh            |   6 +-
 scripts/ci/pylint_todo.txt                         |   1 -
 tests/models/test_connection.py                    |  14 +-
 .../amazon/aws/operators/test_ecs_system.py        |  99 ++++++++++
 tests/providers/apache/hive/hooks/test_hive.py     |   2 +-
 tests/providers/apache/livy/hooks/test_livy.py     |   4 +-
 .../providers/google/cloud/hooks/test_cloud_sql.py |  12 +-
 .../google/cloud/operators/test_cloud_sql.py       |   6 +-
 .../hooks => oracle/operators}/__init__.py         |   0
 .../providers/oracle/operators/test_oracle.py      |  30 ++-
 tests/sensors/test_weekday_sensor.py               |   2 +-
 tests/test_project_structure.py                    |   1 -
 tests/test_utils/amazon_system_helpers.py          | 211 +++++++++++++++++++++
 tests/utils/test_weekday.py                        |   2 +-
 25 files changed, 527 insertions(+), 120 deletions(-)
 copy airflow/{contrib => }/utils/weekday.py (99%)
 create mode 100644 tests/providers/amazon/aws/operators/test_ecs_system.py
 copy tests/providers/{zendesk/hooks => oracle/operators}/__init__.py (100%)
 copy airflow/operators/oracle_operator.py => tests/providers/oracle/operators/test_oracle.py (53%)