kaxil commented on a change in pull request #252: Add blogpost for 1.10.8 and 1.10.9 URL: https://github.com/apache/airflow-site/pull/252#discussion_r383039358
########## File path: landing-pages/site/content/en/blog/airflow-1.10.8-1.10.9.md ########## @@ -0,0 +1,77 @@ +--- +title: "Apache Airflow 1.10.8 & 1.10.9" +linkTitle: "Apache Airflow 1.10.8 & 1.10.9" +author: "Kaxil Naik" +twitter: "kaxil" +github: "kaxil" +linkedin: "kaxil" +description: "We are happy to present the new 1.10.8 and 1.10.9 releases of Apache Airflow." +tags: ["release"] +date: 2020-02-23 +--- + +We are happy to present the new 1.10.8 and 1.10.9 releases of Apache Airflow. + +Airflow 1.10.8 contains 160 commits since 1.10.7 and includes 4 new features, 42 improvements, 36 bug fixes, and several doc changes. + +We released 1.10.9 on the same day as one of the Flask dependencies (Werkzeug) released 1.0 which broke Airflow 1.10.8. + +**Details**: +* **PyPI**: [https://pypi.org/project/apache-airflow/1.10.9/](https://pypi.org/project/apache-airflow/1.10.9/) +* **Docs**: [https://airflow.apache.org/docs/1.10.9/](https://airflow.apache.org/docs/1.10.9/) +* **Changelog (1.10.8)**: [http://airflow.apache.org/docs/1.10.8/changelog.html#airflow-1-10-8-2020-01-07](http://airflow.apache.org/docs/1.10.8/changelog.html#airflow-1-10-8-2020-01-07) +* **Changelog (1.10.9)**: [http://airflow.apache.org/docs/1.10.9/changelog.html#airflow-1-10-9-2020-02-10](http://airflow.apache.org/docs/1.10.9/changelog.html#airflow-1-10-9-2020-02-10) + +Some of the noteworthy new features (user-facing) are: + +- [Add tags to DAGs and use it for filtering in the UI](https://github.com/apache/airflow/pull/6489) +- [New Executor: DebugExecutor for Local debugging from your IDE](http://airflow.apache.org/docs/1.10.9/executor/debug.html) +- [Allow passing conf in "Add DAG Run" view](https://github.com/apache/airflow/pull/7281) +- [Allow dags to run for future execution dates](https://github.com/apache/airflow/pull/7038) +- [Dedicated page in documentation for all configs in airflow.cfg](https://airflow.apache.org/docs/1.10.9/configurations-ref.html) + +### Add tags to DAGs and use it for filtering in the UI + +In order to filter DAGs (e.g by team), you can add tags in each dag. The filter is saved in a cookie and can be reset by the reset button. + +For example: + +In your Dag file, pass a list of tags you want to add to DAG object: + +```python +dag = DAG( + dag_id='example_dag_tag', + schedule_interval='0 0 * * *', + tags=['example'] +) +``` + +**Screenshot**: + Review comment: Will do ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
