Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Commit

Permalink
{go.mod,go.sum}: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
profclems committed Sep 11, 2021
1 parent 613cff2 commit 9a8c078
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 8 deletions.
2 changes: 1 addition & 1 deletion api/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ var GetGroup = func(client *gitlab.Client, groupID interface{}) (*gitlab.Group,
if client == nil {
client = apiClient.Lab()
}
group, _, err := client.Groups.GetGroup(groupID)
group, _, err := client.Groups.GetGroup(groupID, &gitlab.GetGroupOptions{})
if err != nil {
return nil, err
}
Expand Down
29 changes: 22 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,53 @@ module github.com/profclems/glab
go 1.13

require (
github.com/AlecAivazis/survey/v2 v2.2.15
github.com/AlecAivazis/survey/v2 v2.3.2
github.com/MakeNowJust/heredoc v1.0.0
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38
github.com/alecthomas/chroma v0.9.2 // indirect
github.com/avast/retry-go v3.0.0+incompatible
github.com/briandowns/spinner v1.16.0
github.com/charmbracelet/glamour v0.3.0
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/dustin/go-humanize v1.0.0
github.com/gdamore/tcell/v2 v2.4.0
github.com/fatih/color v1.12.0 // indirect
github.com/gdamore/tcell/v2 v2.4.1-0.20210905002822-f057f0a857a1
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/renameio v1.0.1
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
github.com/gosuri/uilive v0.0.4
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect
github.com/hashicorp/go-version v1.3.0
github.com/jarcoal/httpmock v1.0.8
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/lunixbochs/vtclean v1.0.0
github.com/mattn/go-colorable v0.1.8
github.com/mattn/go-isatty v0.0.13
github.com/mattn/go-isatty v0.0.14
github.com/mattn/go-runewidth v0.0.13
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
github.com/microcosm-cc/bluemonday v1.0.15 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/muesli/reflow v0.3.0 // indirect
github.com/muesli/termenv v0.9.0
github.com/otiai10/copy v1.6.0
github.com/pkg/errors v0.9.1
github.com/rivo/tview v0.0.0-20210624165335-29d673af0ce2
github.com/spf13/cast v1.4.0
github.com/rivo/tview v0.0.0-20210909154944-f7430b878d17
github.com/spf13/cast v1.4.1
github.com/spf13/cobra v1.2.1
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.7.0
github.com/tidwall/pretty v1.2.0
github.com/xanzy/go-gitlab v0.50.1
github.com/xanzy/go-gitlab v0.50.4
github.com/yuin/goldmark v1.4.0 // indirect
golang.org/x/net v0.0.0-20210908191846-a5e095526f91 // indirect
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/term v0.0.0-20210503060354-a79de5458b56
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0 // indirect
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
)
Loading

0 comments on commit 9a8c078

Please sign in to comment.