From 3927723263def56efd3a9b6d77074825198821cf Mon Sep 17 00:00:00 2001 From: Bolke de Bruin Date: Thu, 20 Jul 2017 22:12:31 +0200 Subject: [PATCH] Fix new SSH documentation --- UPDATING.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/UPDATING.md b/UPDATING.md index aefed3e168..a02ff04cfe 100644 --- a/UPDATING.md +++ b/UPDATING.md @@ -5,6 +5,13 @@ assists people when migrating to a new version. ## Master +### SSH Hook updates, along with new SSH Operator & SFTP Operator + SSH Hook now uses Paramiko library to create ssh client connection, instead of sub-process based ssh command execution previously (<1.9.0), so this is backward incompatible. + - update SSHHook constructor + - use SSHOperator class in place of SSHExecuteOperator which is removed now. Refer test_ssh_operator.py for usage info. + - SFTPOperator is added to perform secure file transfer from serverA to serverB. Refer test_sftp_operator.py.py for usage info. + - No updates are required if you are using ftpHook, it will continue work as is. + ### New Features #### Dask Executor @@ -116,13 +123,6 @@ If you experience problems connecting with your operator make sure you set the c Also the old P12 key file type is not supported anymore and only the new JSON key files are supported as a service account. - -### SSH Hook updates, along with new SSH Operator & SFTP Operator - SSH Hook now uses Paramiko library to create ssh client connection, instead of sub-process based ssh command execution previously (<1.9.0), so this is backward incompatible. - - update SSHHook constructor - - use SSHOperator class in place of SSHExecuteOperator which is removed now. Refer test_ssh_operator.py for usage info. - - SFTPOperator is added to perform secure file transfer from serverA to serverB. Refer test_sftp_operator.py.py for usage info. - - No updates are required if you are using ftpHook, it will continue work as is. ### Deprecated Features These features are marked for deprecation. They may still work (and raise a `DeprecationWarning`), but are no longer