Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump github.com/alitto/pond from 1.8.3 to 1.9.0 #77

Merged
merged 1 commit into from
Jun 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore(deps): bump github.com/alitto/pond from 1.8.3 to 1.9.0
Bumps [github.com/alitto/pond](https://github.com/alitto/pond) from 1.8.3 to 1.9.0.
- [Release notes](https://github.com/alitto/pond/releases)
- [Commits](alitto/pond@v1.8.3...v1.9.0)

---
updated-dependencies:
- dependency-name: github.com/alitto/pond
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authored Jun 22, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit eec70fb373e4783404cf4df400200e1b95fd185d
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ module github.com/zbiljic/fget
go 1.19

require (
github.com/alitto/pond v1.8.3
github.com/alitto/pond v1.9.0
github.com/cenkalti/backoff/v4 v4.3.0
github.com/coreos/go-semver v0.3.1
github.com/fatih/structs v1.1.0
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -20,8 +20,8 @@ github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migc
github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM=
github.com/ProtonMail/go-crypto v1.0.0 h1:LRuvITjQWX+WIfr930YHG2HNfjR1uOfyf5vE0kC2U78=
github.com/ProtonMail/go-crypto v1.0.0/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0=
github.com/alitto/pond v1.8.3 h1:ydIqygCLVPqIX/USe5EaV/aSRXTRXDEI9JwuDdu+/xs=
github.com/alitto/pond v1.8.3/go.mod h1:CmvIIGd5jKLasGI3D87qDkQxjzChdKMmnXMg3fG6M6Q=
github.com/alitto/pond v1.9.0 h1:B8BrvXyKe97NK9LHuRsQAOmpRnsp6GJ7mCg1Cgitczo=
github.com/alitto/pond v1.9.0/go.mod h1:xQn3P/sHTYcU/1BR3i86IGIrilcrGC2LiS+E2+CJWsI=
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8=
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
github.com/atomicgo/cursor v0.0.1/go.mod h1:cBON2QmmrysudxNBFthvMtN32r3jxVRIvzkUiF/RuIk=

Unchanged files with check annotations Beta

case errors.Is(err, ErrGitRepositoryProtected):
return nil
default:
switch v := err.(type) {

Check failure on line 48 in cmd/git-run.go

GitHub Actions / lint

singleCaseSwitch: should rewrite switch statement to if statement (gocritic)
case *GitRepositoryMovedError:
if err1 := gitMove(ctx, repoPath, v.OldURL, v.NewURL); err1 != nil {
return err
Refspec string
}
func PullCmd(opts *PullOptions) *exec.Cmd {

Check failure on line 81 in pkg/gitexec/pull.go

GitHub Actions / lint

cyclomatic complexity 68 of func `PullCmd` is high (> 30) (gocyclo)
args := []string{"pull"}
if opts.Quiet {
Refspec string
}
func FetchCmd(opts *FetchOptions) *exec.Cmd {

Check failure on line 61 in pkg/gitexec/fetch.go

GitHub Actions / lint

cyclomatic complexity 48 of func `FetchCmd` is high (> 30) (gocyclo)
args := []string{"fetch"}
if opts.All {
return nil
}
func gitCheckAndPull(ctx context.Context, repoPath string) error {

Check failure on line 747 in cmd/git.go

GitHub Actions / lint

cyclomatic complexity 38 of func `gitCheckAndPull` is high (> 30) (gocyclo)
if isRemoteUpToDate, err := gitIsRemoteUpToDate(ctx, repoPath); err != nil {
return err
} else if isRemoteUpToDate {