Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: wheatevo/remotus

Tags

v1.2.0

Toggle v1.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add support for IP connections with hostname (#14)

* Add `:ip` option to connection methods to accommodate credential
  stores that require the hostname where DNS is not available.

v1.1.1

Toggle v1.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Handle close failures (#13)

v1.1.0

Toggle v1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Improve retry backoffs and ensure SSH connections are closed (#12)

v1.0.0

Toggle v1.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Dependency updates April 2023 (#11)

Update the following dependencies to support newer Ruby versions:
* connection_pool -> 2.4
* net-scp -> 4.0
* net-ssh -> 7.1

Drop support for Ruby 2.5.

v0.6.0

Toggle v0.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix connection caching and graceful closure (#10)

* Add `#close` method to all connection types
* Fix SSH gateway connection caching
* Ensure SSH gateway connections are closed gracefully before
  reinitializing a connection

v0.5.0

Toggle v0.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add SSH gateway support (#9)

This change adds SSH gateway support and fixes an issue where custom SSH
ports are not respected by `Remotus::SshConnection`.

Note that this change also required the test ruby version to be updated
to 3.0.4 to avoid an rspec regression where older ruby versions can no
longer handle method stubs with kwargs successfully.

v0.4.0

Toggle v0.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Document updates for 0.4.0 release (#8)

Update the doc comments and restructure the class includes to stay
compliant with yardoc and keep our generated documentation clean.

v0.3.0

Toggle v0.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Retry SCP failures (#6)

Add retry options for all SCP upload and download operations. This
ensures that expired connections are renewed in the same way they are
for regular SSH calls.

v0.2.3

Toggle v0.2.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Resolve rexml vulnerability CVE-2021-28965 (#5)

This change resolves rexml vulnerability CVE-2021-28965 by updating gem
dependencies. Updates have also been made to require ruby 2.5+.

v0.2.2

Toggle v0.2.2's commit message
Ensure missing credentials are populated (#4)

This change ensures that cached credentials are only used if they have a
defined user and password. This is necessary in situations where the
cached credential may have been incorrectly populated prior to usage in
an SSH or WinRM connection.