diff options
author | Kevin Burke <kevin@burke.dev> | 2022-03-31 15:05:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 00:05:57 +0200 |
commit | 242d71035a8906e2b31360386f8e4861bf4e3da8 (patch) | |
tree | 74c02cbf8bd6d559a202ce34155547a7c8c59649 /go.mod | |
parent | 420851ca1ff5c97cc31930f022daaff6f484793b (diff) | |
download | gitea-242d71035a8906e2b31360386f8e4861bf4e3da8.tar.gz gitea-242d71035a8906e2b31360386f8e4861bf4e3da8.zip |
go.mod: update kevinburke/ssh_config to v1.2.0 (#19286)
Previously if you tried to read a HostName in a config file that
looked like this:
```
Host github
HostName github.com # This is the host for code review
```
DefaultUserSettings.Get("HostName") would return "github.com ",
which I think is unintuitive and unexpected.
This behavior is fixed in v1.2 which would return "github.com" in the
above example.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -203,7 +203,7 @@ require ( github.com/jhump/protoreflect v1.8.2 // indirect github.com/jonboulle/clockwork v0.2.2 // indirect github.com/josharian/intern v1.0.0 // indirect - github.com/kevinburke/ssh_config v1.1.0 // indirect + github.com/kevinburke/ssh_config v1.2.0 // indirect github.com/klauspost/pgzip v1.2.5 // indirect github.com/kr/pretty v0.3.0 // indirect github.com/kr/text v0.2.0 // indirect |