Releases: LinuxSuRen/http-downloader
Releases · LinuxSuRen/http-downloader
v0.0.29
What’s Changed
- No changes
v0.0.28
v0.0.27
What’s Changed
🚀 Features
- Add installer as a package (#50) @LinuxSuRen
As a library
You can import it from github.com/linuxsuren/http-downloader/pkg/installer
, then put the following code to your CLI.
It can help you to download desired tools:
is := installer.Installer{
Provider: "github",
}
if err = is.CheckDepAndInstall(map[string]string{
"ks": "linuxsuren/ks",
"kk": "kubekey",
}); err != nil {
return
}
v0.0.26
What’s Changed
- No changes
v0.0.25
What’s Changed
🚀 Features
- Fetch config git repo using go-git to replace git cli (#61) @LinuxSuRen
🐛 Bug Fixes
- Fix the errors when install with a simple name (#60) @LinuxSuRen
👻 Maintenance
- Bump github.com/magiconair/properties from 1.8.4 to 1.8.5 (#48) @dependabot
- Bump goreleaser/goreleaser-action from v2.4.1 to v2.5.0 (#49) @dependabot
- Bump github.com/onsi/ginkgo from 1.16.0 to 1.16.1 (#54) @dependabot
- Bump github.com/AlecAivazis/survey/v2 from 2.2.2 to 2.2.12 (#59) @dependabot
v0.0.24
What’s Changed
Now you can install a package with a simple name instead of the full name. For example:
hd install ks
🚀 Features
- Add support to install a package with the simple name (#55) @LinuxSuRen
- Speed up fetchHomeConfig git process (#53) @JohnNiang
👻 Maintenance
- Bump github.com/onsi/ginkgo from 1.15.1 to 1.16.0 (#51) @dependabot
v0.0.23
What’s Changed
🐛 Bug Fixes
- Fix errors when target config dir is not a git dir (#44) @LinuxSuRen
👻 Maintenance
- Bump github.com/onsi/gomega from 1.10.4 to 1.11.0 (#45) @dependabot
- Bump github.com/onsi/ginkgo from 1.15.0 to 1.15.1 (#46) @dependabot
v0.0.22
What’s Changed
🚀 Features
- Add support download with retry (#42) @LinuxSuRen
- Add platform support for hdConfig (#43) @LinuxSuRen
v0.0.21
What’s Changed
- No changes
v0.0.20
What’s Changed
- Add an option to clean the package after install