Skip to content

Commit

Permalink
Merge pull request #21 from postmates/dharam/pin-packages2
Browse files Browse the repository at this point in the history
use gopkg to pin dependencies
  • Loading branch information
dharamsk authored Jan 29, 2020
2 parents 5af8bb9 + 588b4b9 commit 6e2aefe
Show file tree
Hide file tree
Showing 468 changed files with 399,945 additions and 1 deletion.
205 changes: 205 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

78 changes: 78 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
# Gopkg.toml example
#
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[[constraint]]
name = "github.com/aws/aws-sdk-go"
version = "1.28.9"

[[override]]
name = "github.com/urfave/cli"
version = "1.22.2"

[[override]]
name = "github.com/cpuguy83/go-md2man"
version = "1.0.10"

[[override]]
name = "github.com/russross/blackfriday"
version = "1.5.2"

[[constraint]]
name = "github.com/getsentry/raven-go"
version = "0.2.0"

[[constraint]]
name = "github.com/golang/snappy"
version = "0.0.1"

[[constraint]]
name = "github.com/lib/pq"
version = "1.3.0"

[[constraint]]
name = "github.com/mattn/go-sqlite3"
version = "2.0.3"

[[constraint]]
name = "github.com/pebbe/zmq4"
version = "1.0.0"

[[constraint]]
name = "github.com/stretchr/testify"
version = "1.4.0"

[[constraint]]
name = "github.com/tinylib/msgp"
version = "1.1.1"

[[constraint]]
name = "gopkg.in/yaml.v2"
version = "2.2.8"

[prune]
go-tests = true
unused-packages = true
2 changes: 1 addition & 1 deletion triton/checkpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func TestCheckpoint(t *testing.T) {

seqNum, err := c.LastSequenceNumber(sid)
if err != nil {
t.Errorf("Failed to load sequence number", err)
t.Errorf("Failed to load sequence number: %v", err)
return
}

Expand Down
Loading

0 comments on commit 6e2aefe

Please sign in to comment.