From e7d9e4ae64d3f1dfddc9f6b55e507e91fa06cdb3 Mon Sep 17 00:00:00 2001 From: Gergely Imreh Date: Tue, 5 Jun 2018 15:23:30 +0100 Subject: [PATCH 1/2] let exec sessions also send replies to the client if requested Change-type: patch Signed-off-by: Gergely Imreh --- sshproxy.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sshproxy.go b/sshproxy.go index 89735b5..41b7fb6 100644 --- a/sshproxy.go +++ b/sshproxy.go @@ -243,6 +243,12 @@ func (s *Server) handleRequests(reqs <-chan *ssh.Request, channel ssh.Channel, c s.handleError(err, nil) } + if req.WantReply { + if err := req.Reply(true, nil); err != nil { + return err + } + } + go func() { done := make(chan error, 1) go func() { From d71b1e3d91c016c7380ec7365935ee1dbdf77dee Mon Sep 17 00:00:00 2001 From: "resin-io-versionbot[bot]" Date: Mon, 11 Jun 2018 15:27:48 +0000 Subject: [PATCH 2/2] v1.4.5 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 989f62c..3f04502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY! This project adheres to [Semantic Versioning](http://semver.org/). +## v1.4.5 - 2018-06-11 + +* Let exec sessions also send replies to the client if requested #34 [Gergely Imreh] + ## v1.4.4 - 2018-06-11 * Moving to golang 1.10.2 and update testing setup #35 [Gergely Imreh]