You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by bo...@apache.org on 2016/06/14 10:28:04 UTC

incubator-airflow git commit: [AIRFLOW-171] Add upgrade notes on email and S3 to 1.7.1.2

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 54b361d2a -> 8d501b0ce


[AIRFLOW-171] Add upgrade notes on email and S3 to 1.7.1.2

Closes #1587 from rfroetscher/upgrading_readme


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/8d501b0c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/8d501b0c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/8d501b0c

Branch: refs/heads/master
Commit: 8d501b0ceae39f44f8b96457874f28bb64bfb8c3
Parents: 54b361d
Author: Rob Froetscher <rf...@lumoslabs.com>
Authored: Tue Jun 14 12:27:58 2016 +0200
Committer: Bolke de Bruin <bo...@xs4all.nl>
Committed: Tue Jun 14 12:27:58 2016 +0200

----------------------------------------------------------------------
 UPDATING.md | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/8d501b0c/UPDATING.md
----------------------------------------------------------------------
diff --git a/UPDATING.md b/UPDATING.md
index 7b0bc97..fa3a55d 100644
--- a/UPDATING.md
+++ b/UPDATING.md
@@ -22,3 +22,34 @@ These features are marked for deprecation. They may still work (and raise a `Dep
 
 #### Operators no longer accept arbitrary arguments
 Previously, `Operator.__init__()` accepted any arguments (either positional `*args` or keyword `**kwargs`) without complaint. Now, invalid arguments will be rejected.
+
+## Airflow 1.7.1.2
+
+### Changes to Configuration
+
+#### Email configuration change
+
+To continue using the default smtp email backend, change the email_backend line in your config file from:
+
+```
+[email]
+email_backend = airflow.utils.send_email_smtp
+```
+to:
+```
+[email]
+email_backend = airflow.utils.email.send_email_smtp
+```
+
+#### S3 configuration change
+
+To continue using S3 logging, update your config file so:
+
+```
+s3_log_folder = s3://my-airflow-log-bucket/logs
+```
+becomes:
+```
+remote_base_log_folder = s3://my-airflow-log-bucket/logs
+remote_log_conn_id = <your desired s3 connection>
+```