summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes4
-rw-r--r--META.json4
-rw-r--r--META.yml2
-rw-r--r--README2
-rw-r--r--lib/Net/OpenSSH.pm15
5 files changed, 16 insertions, 11 deletions
diff --git a/Changes b/Changes
index a7f7605..8b83fe9 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
Revision history for Perl extension Net::OpenSSH.
+0.74 Feb 10, 2017
+ - Update list of options accepted by method "sftp" (bug report
+ by Mirror).
+
0.73 Jun 10, 2016
- Some old perl versions doesn't like Errno constant subs
being called without parents. Add them.
diff --git a/META.json b/META.json
index 6c7ddb3..5fd8329 100644
--- a/META.json
+++ b/META.json
@@ -42,6 +42,6 @@
"url" : "https://github.com/salva/p5-Net-OpenSSH"
}
},
- "version" : "0.73",
- "x_serialization_backend" : "JSON::PP version 2.27300"
+ "version" : "0.74",
+ "x_serialization_backend" : "JSON::PP version 2.27400"
}
diff --git a/META.yml b/META.yml
index 93112f3..7b3bd90 100644
--- a/META.yml
+++ b/META.yml
@@ -21,5 +21,5 @@ requires:
Test::More: '0'
resources:
repository: https://github.com/salva/p5-Net-OpenSSH
-version: '0.73'
+version: '0.74'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index c092019..81317ad 100644
--- a/README
+++ b/README
@@ -26,7 +26,7 @@ This module requires these other modules and libraries:
COPYRIGHT AND LICENCE
-Copyright (C) 2008-2016 by Salvador Fandino
+Copyright (C) 2008-2017 by Salvador Fandino
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.10.0 or,
diff --git a/lib/Net/OpenSSH.pm b/lib/Net/OpenSSH.pm
index 60c5b54..bec638f 100644
--- a/lib/Net/OpenSSH.pm
+++ b/lib/Net/OpenSSH.pm
@@ -1,6 +1,6 @@
package Net::OpenSSH;
-our $VERSION = '0.73';
+our $VERSION = '0.74';
use strict;
use warnings;
@@ -2307,8 +2307,9 @@ sub _rsync {
return undef
}
-_sub_options sftp => qw(autoflush timeout argument_encoding encoding block_size
- queue_size late_set_perm forward_agent setpgrp);
+_sub_options sftp => qw(autoflush timeout argument_encoding encoding block_size queue_size autodie
+ late_set_perm forward_agent setpgrp min_block_size read_ahead write_delay
+ dirty_cleanup remote_has_volumes autodisconnect more);
sub sftp {
${^TAINT} and &_catch_tainted_args;
@@ -2531,7 +2532,7 @@ For password authentication, L<IO::Pty|IO::Pty> has to be
installed. Other modules and binaries are also required to implement
specific functionality (for instance
L<Net::SFTP::Foreign|Net::SFTP::Foreign>, L<Expect|Expect> or
-L<rsync(1)|rsync(1)|>).
+L<rsync(1)|rsync(1)>).
Net::OpenSSH and Net::SSH2 do not support version 1 of the SSH
protocol.
@@ -3741,8 +3742,8 @@ the time of writing, it requires the yet unreleased version available
from the FUSE git repository!).
See also the L<sshfs(1)> man page and the C<sshfs> and FUSE web sites
-at L<http://fuse.sourceforge.net/sshfs.html> and
-L<http://fuse.sourceforge.net/> respectively.
+at L<https://github.com/libfuse/sshfs> and
+L<https://github.com/libfuse/libfuse> respectively.
=item $or = $ssh->object_remote(@args)
@@ -5048,7 +5049,7 @@ I always welcome documentation corrections and improvements.
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2008-2016 by Salvador FandiE<ntilde>o
+Copyright (C) 2008-2017 by Salvador FandiE<ntilde>o
(sfandino@yahoo.com)
This library is free software; you can redistribute it and/or modify