forked from net-ssh/net-sftp
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump latest version of net-sftp #1
Open
facundofarias
wants to merge
80
commits into
wildbit:master
Choose a base branch
from
facundofarias:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Like explained in ReadMe
add missing `end` in example
Use `File#exist?` to silence deprecation warnings.
Fix Ruby 2.4 compatibility.
Update docs in download.rb
Fix Session inline documentation with password
Ruby's IO class defines the #gets method as having an optional limit argument. This can either be passed in as an integer for the first argument or passed in addition to the delimiter. This makes argument handling a little awkward unfortunately.
The previous commit added a limit argument to #gets as defined by Ruby's IO class. This does the same for readline since it also accepts a limit argument in the IO class. Fortunately we simply forward these params to gets.
Add a sentence documenting the new limit argument. Took this sentence from Ruby's IO documentation. https://ruby-doc.org/core-2.5.1/IO.html#method-i-gets
A separator string could be provided that was not found in the stream. In that scenario, we were ignoring the limit argument. This change respects the limit argument even when the separator isn't found.
Ruby's IO documentation says that if nil is passed as the separator argument, the IO object should read to the end of the file or until the limit argument is reached.
This is another method an IO-like object should provide. It resets the beginning state of the file.
Update to net-ssh 5.0.2 improves performance; fix tests
Add #size and #rewind to Net::SFTP::Operations::File
Allow to set protocol version via Net::SFTP.start
correct typo "raeddir"
Ignore `Gemfile.lock` in git
Update cert URL and filename on README
Fix multibyte string write
Fix documentation link
Test with modern rubies incl. jruby and truffleruby. Jruby doesn't seem to pass so far.
... which fixes OpenSSL 3 compat. Closes net-ssh#136
Allow net-ssh v7
GitHub actions
fix it's typos
Official 4.0.0 release
# Conflicts: # lib/net/sftp.rb # net-sftp.gemspec
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.