File tree Expand file tree Collapse file tree 3 files changed +33
-3
lines changed Expand file tree Collapse file tree 3 files changed +33
-3
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ Thanks to [Ryan Stradling](http://github.com/rstradling) for these.
163
163
Via [clojars](http://clojars.org ) and
164
164
[Leiningen](http://github.com/technomancy/leiningen ).
165
165
166
- :dependencies [clj-ssh " 0.5.7 " ]
166
+ :dependencies [clj-ssh " 0.5.8 " ]
167
167
168
168
or your favourite maven repository aware tool.
169
169
Original file line number Diff line number Diff line change 1
- # Release Notes
1
+ ## 0.5.8
2
+
3
+ - Enable introspection of sessions
4
+ Adds the session? predicate for testing for a Session object, an the
5
+ session-hostname and session-port functions for querying a session.
6
+
7
+ - Enable copying identities between agents
8
+ The copy-identities can be used to copy identities from one agent to
9
+ another. This is useful to allow copying identities from a system agent
10
+ to a non system agent.
11
+
12
+ - Add support for jump hosts
13
+ The jump-session function is used to obtain a session that can be
14
+ connected across jump hosts.
15
+
16
+ The ` the-session ` function is added to obtain a jsch session from a
17
+ connected jump-session, or a connected jsch Session, and can be used in
18
+ code that wants to support jump sessions.
19
+
20
+ - Add fingerprint function on keypairs
21
+
22
+ - Allow keypair construction from just a public key
23
+
24
+ - Update tools.logging to 0.2.6
25
+
26
+ - Update to jsch 0.1.51
27
+ Adds support for private keys in PKCS #8 format.
28
+
29
+ Fixes several session crash issues.
30
+
31
+ - Update to jsch.agentproxy 0.0.7
2
32
3
33
## 0.5.7
4
34
Original file line number Diff line number Diff line change 1
1
(def agentproxy-version " 0.0.7" )
2
2
3
- (defproject clj-ssh " 0.5.8-SNAPSHOT "
3
+ (defproject clj-ssh " 0.5.8"
4
4
:description " Library for using SSH from clojure."
5
5
:url " https://github.com/hugoduncan/clj-ssh"
6
6
:license {:name " Eclipse Public License"
You can’t perform that action at this time.
0 commit comments