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 5a439e8 Prepare providers release 0.0.2a1 (#11855)
add a5d3176 Add @dag decorator (#10587)
No new revisions were added by this update.
Summary of changes:
UPDATING.md | 12 +++
airflow/config_templates/config.yml | 2 +-
airflow/config_templates/default_airflow.cfg | 2 +-
airflow/decorators.py | 1 +
airflow/example_dags/example_dag_decorator.py | 66 ++++++++++++
airflow/models/baseoperator.py | 3 +-
airflow/models/dag.py | 61 +++++++++++
airflow/models/dagparam.py | 59 +++++++++++
airflow/utils/file.py | 3 +-
docs/concepts.rst | 34 +++++-
docs/dag-run.rst | 2 +
tests/core/test_example_dags_system.py | 7 +-
tests/models/test_dag.py | 144 ++++++++++++++++++++++++++
tests/models/test_dagparam.py | 120 +++++++++++++++++++++
14 files changed, 507 insertions(+), 9 deletions(-)
create mode 100644 airflow/example_dags/example_dag_decorator.py
create mode 100644 airflow/models/dagparam.py
create mode 100644 tests/models/test_dagparam.py