You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use a tool called Mise to manage the installation of tools into my development environment and one of the tools I install is sshsrv.
To identify the available versions of go-based tools, Mise executes the following command internally:
$ go list -m -versions -json github.com/Crosse/sshsrv
{
"Path": "github.com/Crosse/sshsrv"
}
Usually there would be a Versions key in the response, however for sshsrv there isn't any (see jdx/mise#3597).
I believe that go list requires full semantic versions (e.g. vX.Y.Z) to include a specific version in the go list -m -versions response, however the only version tagged in the sshsrv repo is v1.0 (rather than v1.0.0).
Would it be possible to include a tag for v1.0.0, please?
The text was updated successfully, but these errors were encountered:
I've been using sshsrv in conjunction with pktriot (as an alternative to ngrok), since it provides a stable (but initially randomly allocated) port number for tunnels (unlike ngrok which is random each time unless you pay). I got sick of remembering which port was allocated where, but using the SRV record is an elegant way to expose the allocated port :)
I use a tool called Mise to manage the installation of tools into my development environment and one of the tools I install is
sshsrv
.To identify the available versions of
go
-based tools, Mise executes the following command internally:Usually there would be a
Versions
key in the response, however forsshsrv
there isn't any (see jdx/mise#3597).I believe that
go list
requires full semantic versions (e.g.vX.Y.Z
) to include a specific version in thego list -m -versions
response, however the only version tagged in thesshsrv
repo isv1.0
(rather thanv1.0.0
).Would it be possible to include a tag for
v1.0.0
, please?The text was updated successfully, but these errors were encountered: