Package: git-lfs / 2.7.1-1+deb10u1

Metadata

Package Version Patches format
git-lfs 2.7.1-1+deb10u1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0002 fix url parsing.patch | (download)

lfsapi/auth.go | 15 10 + 5 - 0 !
1 file changed, 10 insertions(+), 5 deletions(-)

 [patch] lfsapi: fix url parsing with go 1.12.8

Go 1.12.8 introduces a security fix for parsing URLs that contain a
colon followed by an invalid port number. Since our SSH remotes can
contain just such a colon, our hack to make these into URLs no longer
works.

Fix this by replacing the first colon in these "URLs" with a slash,
which is a path delimiter, which makes them parsable by newer versions
of Go. Update the name of the function since it now does more than its
previous name implies.