Skip to content

Commit

Permalink
Merge pull request #303 from mergestat/upgrade-deps
Browse files Browse the repository at this point in the history
chore: upgrade some dependencies
  • Loading branch information
patrickdevivo authored Oct 5, 2022
2 parents ec3af79 + 4c9008c commit 89784e4
Show file tree
Hide file tree
Showing 5 changed files with 413 additions and 137 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.40.1
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.50.0
make lint-ci
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion extensions/internal/git/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ skip_mailmap:
return cur.Next()
}

func (cur *gitLogCursor) Column(c *sqlite.Context, col int) error {
func (cur *gitLogCursor) Column(c *sqlite.VirtualTableContext, col int) error {
commit := cur.commit

properCommitterSig := cur.mm.Lookup(mailmap.NameAndEmail{Name: commit.Committer.Name, Email: commit.Committer.Email})
Expand Down
2 changes: 1 addition & 1 deletion extensions/internal/git/refs.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func (cur *gitRefCursor) Filter(_ int, s string, values ...sqlite.Value) (err er
return cur.Next()
}

func (cur *gitRefCursor) Column(c *sqlite.Context, col int) error {
func (cur *gitRefCursor) Column(c *sqlite.VirtualTableContext, col int) error {
ref := cur.ref
switch col {
case 0:
Expand Down
83 changes: 44 additions & 39 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,75 +3,80 @@ module github.com/mergestat/mergestat-lite
go 1.17

require (
github.com/BurntSushi/toml v1.0.0
github.com/BurntSushi/toml v1.2.0
github.com/DATA-DOG/go-sqlmock v1.5.0
github.com/augmentable-dev/vtab v0.0.0-20210915151038-6572bfc4e313
github.com/charmbracelet/bubbles v0.10.3
github.com/charmbracelet/bubbletea v0.20.0
github.com/charmbracelet/lipgloss v0.5.0
github.com/clbanning/mxj/v2 v2.5.5
github.com/augmentable-dev/vtab v0.0.0-20221005151137-0ff49e3f5413
github.com/charmbracelet/bubbles v0.14.0
github.com/charmbracelet/bubbletea v0.22.1
github.com/charmbracelet/lipgloss v0.6.0
github.com/clbanning/mxj/v2 v2.5.6
github.com/dnaeon/go-vcr/v2 v2.0.1
github.com/ghodss/yaml v1.0.0
github.com/go-enry/go-enry/v2 v2.8.0
github.com/go-enry/go-enry/v2 v2.8.2
github.com/go-git/go-git/v5 v5.4.2
github.com/jedib0t/go-pretty v4.3.0+incompatible
github.com/jmoiron/sqlx v1.3.4
github.com/lib/pq v1.10.4
github.com/jmoiron/sqlx v1.3.5
github.com/lib/pq v1.10.7
github.com/libgit2/git2go/v33 v33.0.9
github.com/mattn/go-sqlite3 v1.14.12
github.com/mattn/go-sqlite3 v1.14.15
github.com/mergestat/timediff v0.0.3
github.com/pkg/errors v0.9.1
github.com/rs/zerolog v1.26.1
github.com/shurcooL/githubv4 v0.0.0-20220115235240-a14260e6f8a2
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a
github.com/spf13/cobra v1.4.0
go.riyazali.net/sqlite v0.0.0-20220326124836-471d5aaa9b7b
golang.org/x/mod v0.5.1
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
github.com/rs/zerolog v1.28.0
github.com/shurcooL/githubv4 v0.0.0-20220922232305-70b4d362a8cb
github.com/shurcooL/graphql v0.0.0-20220606043923-3cf50f8a0a29
github.com/spf13/cobra v1.5.0
go.riyazali.net/sqlite v0.0.0-20220820100132-b0f5d97504db
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1
golang.org/x/term v0.0.0-20220919170432-7a66f970e087
golang.org/x/text v0.3.7
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af
)

require (
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/ProtonMail/go-crypto v0.0.0-20220113124808-70ae35bab23f // indirect
github.com/Microsoft/go-winio v0.6.0 // indirect
github.com/ProtonMail/go-crypto v0.0.0-20220930113650-c6815a8c17ad // indirect
github.com/acomagu/bufpipe v1.0.3 // indirect
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
github.com/aymanbagabas/go-osc52 v1.0.3 // indirect
github.com/cloudflare/circl v1.2.0 // indirect
github.com/containerd/console v1.0.3 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
github.com/go-enry/go-oniguruma v1.2.1 // indirect
github.com/go-git/gcfg v1.5.0 // indirect
github.com/go-git/go-billy/v5 v5.3.1 // indirect
github.com/go-openapi/errors v0.20.2 // indirect
github.com/go-openapi/strfmt v0.21.2 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/go-openapi/errors v0.20.3 // indirect
github.com/go-openapi/strfmt v0.21.3 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/imdario/mergo v0.3.12 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/google/uuid v1.1.2 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/kevinburke/ssh_config v1.1.0 // indirect
github.com/kevinburke/ssh_config v1.2.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-localereader v0.0.1 // indirect
github.com/mattn/go-pointer v0.0.1 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.4.3 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/muesli/ansi v0.0.0-20211031195517-c9f0611b6c70 // indirect
github.com/muesli/cancelreader v0.2.2 // indirect
github.com/muesli/reflow v0.3.0 // indirect
github.com/muesli/termenv v0.11.1-0.20220212125758-44cd13922739 // indirect
github.com/muesli/termenv v0.13.0 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sergi/go-diff v1.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/xanzy/ssh-agent v0.3.1 // indirect
go.mongodb.org/mongo-driver v1.8.4 // indirect
golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064 // indirect
golang.org/x/net v0.0.0-20220325170049-de3da57026de // indirect
golang.org/x/sys v0.0.0-20220325203850-36772127a21f // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
github.com/xanzy/ssh-agent v0.3.2 // indirect
go.mongodb.org/mongo-driver v1.10.3 // indirect
golang.org/x/crypto v0.0.0-20221005025214-4161e89ecf1b // indirect
golang.org/x/net v0.0.0-20221004154528-8021a29435af // indirect
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect
golang.org/x/tools v0.1.12 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
Expand Down
Loading

0 comments on commit 89784e4

Please sign in to comment.