You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ur...@apache.org on 2021/08/31 08:15:19 UTC

[airflow] branch main updated (9028a78 -> 3fc57de)

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

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


    from 9028a78  Separate Managed Services for Airflow (#17926)
     add 3fc57de  Allow custom timetable as a DAG argument (#17414)

No new revisions were added by this update.

Summary of changes:
 airflow/api/common/experimental/mark_tasks.py      |   8 +-
 airflow/jobs/backfill_job.py                       |   2 +-
 airflow/models/dag.py                              |  92 +++++---
 airflow/models/dagrun.py                           |   4 +-
 airflow/models/taskinstance.py                     |   7 +-
 airflow/serialization/schema.json                  |  12 +-
 airflow/serialization/serialized_objects.py        | 102 +++++++--
 airflow/timetables/base.py                         |  61 +++++-
 airflow/timetables/interval.py                     | 234 +++++++++++++++++++--
 airflow/timetables/schedules.py                    | 207 ------------------
 airflow/timetables/simple.py                       |  56 +++--
 airflow/utils/module_loading.py                    |   5 +
 airflow/www/views.py                               |   2 +-
 tests/jobs/test_backfill_job.py                    |   3 +-
 tests/models/test_dag.py                           |  10 +-
 .../amazon/aws/sensors/test_s3_keys_unchanged.py   |  13 +-
 .../amazon/aws/transfers/test_s3_to_sftp.py        |  11 +-
 .../amazon/aws/transfers/test_sftp_to_s3.py        |  11 +-
 tests/providers/google/cloud/sensors/test_gcs.py   |  12 +-
 tests/providers/sftp/operators/test_sftp.py        |  11 +-
 tests/providers/ssh/operators/test_ssh.py          |  12 +-
 tests/serialization/test_dag_serialization.py      | 108 +++++++++-
 tests/test_utils/timetables.py                     |  17 ++
 23 files changed, 626 insertions(+), 374 deletions(-)
 delete mode 100644 airflow/timetables/schedules.py