From dfa56ccb12abeb903279447d82ca00e773d607f1 Mon Sep 17 00:00:00 2001 From: Danny van Kooten Date: Wed, 14 Nov 2018 13:44:03 +0100 Subject: [PATCH] revert updates for packr... --- vendor/github.com/gobuffalo/packr/README.md | 24 ++++--- vendor/github.com/gobuffalo/packr/box.go | 63 ++++++------------- vendor/github.com/gobuffalo/packr/env.go | 32 +++++++++- vendor/github.com/gobuffalo/packr/file.go | 14 ++++- .../github.com/gobuffalo/packr/file_info.go | 38 +++++++++++ vendor/github.com/gobuffalo/packr/go.mod | 10 +-- vendor/github.com/gobuffalo/packr/go.sum | 18 ++---- .../gobuffalo/packr/physical_file.go | 13 ++++ .../github.com/gobuffalo/packr/shoulders.md | 18 ++++-- vendor/github.com/gobuffalo/packr/version.go | 2 +- .../gobuffalo/packr/virtual_file.go | 57 +++++++++++++++++ vendor/github.com/gobuffalo/packr/walk.go | 3 +- .../github.com/rubenv/sql-migrate/migrate.go | 10 +-- vendor/vendor.json | 12 ++-- 14 files changed, 212 insertions(+), 102 deletions(-) create mode 100644 vendor/github.com/gobuffalo/packr/file_info.go create mode 100644 vendor/github.com/gobuffalo/packr/physical_file.go create mode 100644 vendor/github.com/gobuffalo/packr/virtual_file.go diff --git a/vendor/github.com/gobuffalo/packr/README.md b/vendor/github.com/gobuffalo/packr/README.md index 57f33b10..a5e0c28b 100644 --- a/vendor/github.com/gobuffalo/packr/README.md +++ b/vendor/github.com/gobuffalo/packr/README.md @@ -10,16 +10,8 @@ To get an idea of the what and why of packr, please enjoy this short video: [htt ## Installation -To install Packr utility - ```text -$ go get -u github.com/gobuffalo/packr/packr -``` - -To get the dependency - -```text -$ go get -u github.com/gobuffalo/packr +$ go get -u github.com/gobuffalo/packr/... ``` ## Usage @@ -32,11 +24,17 @@ The first step in using Packr is to create a new box. A box represents a folder // set up a new box by giving it a (relative) path to a folder on disk: box := packr.NewBox("./templates") +// Get the string representation of a file: +html := box.String("index.html") + // Get the string representation of a file, or an error if it doesn't exist: -html, err := box.FindString("index.html") +html, err := box.MustString("index.html") + +// Get the []byte representation of a file: +html := box.Bytes("index.html") // Get the []byte representation of a file, or an error if it doesn't exist: -html, err := box.FindBytes("index.html") +html, err := box.MustBytes("index.html") ``` ### What is a Box? @@ -87,7 +85,7 @@ Packr uses the following resolution rules when looking for a file: Because Packr knows how to fall through to the file system, developers don't need to worry about constantly compiling their static files into a binary. They can work unimpeded. -Packr takes file resolution a step further. When declaring a new box you use a relative path, `./templates`. When Packr receives this call it calculates out the absolute path to that directory. By doing this it means you can be guaranteed that Packr can find your files correctly, even if you're not running in the directory that the box was created in. This helps with the problem of testing, where Go changes the `pwd` for each package, making relative paths difficult to work with. This is not a problem when using Packr. +Packr takes file resolution a step further. When declaring a new box you use a relative path, `./templates`. When Packr recieves this call it calculates out the absolute path to that directory. By doing this it means you can be guaranteed that Packr can find your files correctly, even if you're not running in the directory that the box was created in. This helps with the problem of testing, where Go changes the `pwd` for each package, making relative paths difficult to work with. This is not a problem when using Packr. --- @@ -164,7 +162,7 @@ Linux/macOS/Windows (bash) mv ./project_name ./releases ``` -Windows (cmd): +Windows (cmd): ```cmd move ./project_name ./releases diff --git a/vendor/github.com/gobuffalo/packr/box.go b/vendor/github.com/gobuffalo/packr/box.go index 0c9396ef..d221101d 100644 --- a/vendor/github.com/gobuffalo/packr/box.go +++ b/vendor/github.com/gobuffalo/packr/box.go @@ -11,8 +11,6 @@ import ( "runtime" "strings" - "github.com/gobuffalo/packd" - "github.com/markbates/oncer" "github.com/pkg/errors" ) @@ -21,14 +19,6 @@ var ( ErrResOutsideBox = errors.New("Can't find a resource outside the box") ) -var _ packd.Box = Box{} -var _ packd.HTTPBox = Box{} -var _ packd.Lister = Box{} -var _ packd.Addable = Box{} -var _ packd.Walkable = Box{} -var _ packd.Finder = Box{} -var _ packd.LegacyBox = Box{} - // NewBox returns a Box that can be used to // retrieve files from either disk or the embedded // binary. @@ -63,53 +53,36 @@ type Box struct { } // AddString converts t to a byteslice and delegates to AddBytes to add to b.data -func (b Box) AddString(path string, t string) error { +func (b Box) AddString(path string, t string) { b.AddBytes(path, []byte(t)) - return nil } // AddBytes sets t in b.data by the given path -func (b Box) AddBytes(path string, t []byte) error { +func (b Box) AddBytes(path string, t []byte) { b.data[path] = t - return nil } -// String is deprecated. Use Find instead +// String of the file asked for or an empty string. func (b Box) String(name string) string { - oncer.Deprecate(0, "github.com/gobuffalo/packr#Box.String", "Use github.com/gobuffalo/packr#Box.FindString instead.") - bb, _ := b.FindString(name) - return bb + return string(b.Bytes(name)) } -// MustString is deprecated. Use FindString instead +// MustString returns either the string of the requested +// file or an error if it can not be found. func (b Box) MustString(name string) (string, error) { - oncer.Deprecate(0, "github.com/gobuffalo/packr#Box.MustString", "Use github.com/gobuffalo/packr#Box.FindString instead.") - return b.FindString(name) + bb, err := b.MustBytes(name) + return string(bb), err } -// Bytes is deprecated. Use Find instead +// Bytes of the file asked for or an empty byte slice. func (b Box) Bytes(name string) []byte { - oncer.Deprecate(0, "github.com/gobuffalo/packr#Box.Bytes", "Use github.com/gobuffalo/packr#Box.Find instead.") - bb, _ := b.Find(name) + bb, _ := b.MustBytes(name) return bb } -// Bytes is deprecated. Use Find instead -func (b Box) MustBytes(name string) ([]byte, error) { - oncer.Deprecate(0, "github.com/gobuffalo/packr#Box.MustBytes", "Use github.com/gobuffalo/packr#Box.Find instead.") - return b.Find(name) -} - -// FindString returns either the string of the requested +// MustBytes returns either the byte slice of the requested // file or an error if it can not be found. -func (b Box) FindString(name string) (string, error) { - bb, err := b.Find(name) - return string(bb), err -} - -// Find returns either the byte slice of the requested -// file or an error if it can not be found. -func (b Box) Find(name string) ([]byte, error) { +func (b Box) MustBytes(name string) ([]byte, error) { f, err := b.find(name) if err == nil { bb := &bytes.Buffer{} @@ -142,9 +115,8 @@ func (b Box) decompress(bb []byte) []byte { func (b Box) find(name string) (File, error) { if bb, ok := b.data[name]; ok { - return packd.NewFile(name, bytes.NewReader(bb)) + return newVirtualFile(name, bb), nil } - if b.directories == nil { b.indexDirectories() } @@ -157,13 +129,14 @@ func (b Box) find(name string) (File, error) { // Absolute name is considered as relative to the box root cleanName = strings.TrimPrefix(cleanName, "/") + // Try to get the resource from the box if _, ok := data[b.Path]; ok { if bb, ok := data[b.Path][cleanName]; ok { bb = b.decompress(bb) - return packd.NewFile(cleanName, bytes.NewReader(bb)) + return newVirtualFile(cleanName, bb), nil } if _, ok := b.directories[cleanName]; ok { - return packd.NewDir(cleanName) + return newVirtualDir(cleanName), nil } if filepath.Ext(cleanName) != "" { // The Handler created by http.FileSystem checks for those errors and @@ -222,10 +195,10 @@ func fileFor(p string, name string) (File, error) { return nil, err } if fi.IsDir() { - return packd.NewDir(p) + return newVirtualDir(p), nil } if bb, err := ioutil.ReadFile(p); err == nil { - return packd.NewFile(name, bytes.NewReader(bb)) + return newVirtualFile(name, bb), nil } return nil, os.ErrNotExist } diff --git a/vendor/github.com/gobuffalo/packr/env.go b/vendor/github.com/gobuffalo/packr/env.go index 8ec70b56..c52e73af 100644 --- a/vendor/github.com/gobuffalo/packr/env.go +++ b/vendor/github.com/gobuffalo/packr/env.go @@ -1,13 +1,39 @@ package packr import ( - "github.com/gobuffalo/envy" + "os" + "os/exec" + "path/filepath" + "strings" + "sync" ) +var goPath = filepath.Join(os.Getenv("HOME"), "go") + +func init() { + var once sync.Once + once.Do(func() { + cmd := exec.Command("go", "env", "GOPATH") + b, err := cmd.CombinedOutput() + if err != nil { + return + } + goPath = strings.TrimSpace(string(b)) + }) +} + // GoPath returns the current GOPATH env var // or if it's missing, the default. -var GoPath = envy.GoPath +func GoPath() string { + return goPath +} // GoBin returns the current GO_BIN env var // or if it's missing, a default of "go" -var GoBin = envy.GoBin +func GoBin() string { + go_bin := os.Getenv("GO_BIN") + if go_bin == "" { + return "go" + } + return go_bin +} diff --git a/vendor/github.com/gobuffalo/packr/file.go b/vendor/github.com/gobuffalo/packr/file.go index 8d24b730..8337d621 100644 --- a/vendor/github.com/gobuffalo/packr/file.go +++ b/vendor/github.com/gobuffalo/packr/file.go @@ -1,5 +1,15 @@ package packr -import "github.com/gobuffalo/packd" +import ( + "io" + "os" +) -type File = packd.File +type File interface { + io.ReadCloser + io.Writer + FileInfo() (os.FileInfo, error) + Readdir(count int) ([]os.FileInfo, error) + Seek(offset int64, whence int) (int64, error) + Stat() (os.FileInfo, error) +} diff --git a/vendor/github.com/gobuffalo/packr/file_info.go b/vendor/github.com/gobuffalo/packr/file_info.go new file mode 100644 index 00000000..e7931d29 --- /dev/null +++ b/vendor/github.com/gobuffalo/packr/file_info.go @@ -0,0 +1,38 @@ +package packr + +import ( + "os" + "time" +) + +type fileInfo struct { + Path string + Contents []byte + size int64 + modTime time.Time + isDir bool +} + +func (f fileInfo) Name() string { + return f.Path +} + +func (f fileInfo) Size() int64 { + return f.size +} + +func (f fileInfo) Mode() os.FileMode { + return 0444 +} + +func (f fileInfo) ModTime() time.Time { + return f.modTime +} + +func (f fileInfo) IsDir() bool { + return f.isDir +} + +func (f fileInfo) Sys() interface{} { + return nil +} diff --git a/vendor/github.com/gobuffalo/packr/go.mod b/vendor/github.com/gobuffalo/packr/go.mod index 3ca37ed4..6066c403 100644 --- a/vendor/github.com/gobuffalo/packr/go.mod +++ b/vendor/github.com/gobuffalo/packr/go.mod @@ -1,13 +1,13 @@ module github.com/gobuffalo/packr require ( - github.com/gobuffalo/envy v1.6.8 - github.com/gobuffalo/packd v0.0.0-20181111195323-b2e760a5f0ff + github.com/davecgh/go-spew v1.1.1 // indirect github.com/inconshreveable/mousetrap v1.0.0 // indirect - github.com/markbates/oncer v0.0.0-20181014194634-05fccaae8fc4 github.com/pkg/errors v0.8.0 + github.com/pmezard/go-difflib v1.0.0 // indirect github.com/spf13/cobra v0.0.3 - github.com/spf13/pflag v1.0.3 // indirect + github.com/spf13/pflag v1.0.2 // indirect github.com/stretchr/testify v1.2.2 - golang.org/x/sync v0.0.0-20181108010431-42b317875d0f + golang.org/x/net v0.0.0-20180921000356-2f5d2388922f // indirect + golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f ) diff --git a/vendor/github.com/gobuffalo/packr/go.sum b/vendor/github.com/gobuffalo/packr/go.sum index bc352324..5c62b92c 100644 --- a/vendor/github.com/gobuffalo/packr/go.sum +++ b/vendor/github.com/gobuffalo/packr/go.sum @@ -1,24 +1,18 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/gobuffalo/envy v1.6.8 h1:ExvxBMO2VoANkwLkQcY8yTB73YkkIOfi9CyinoE+vyk= -github.com/gobuffalo/envy v1.6.8/go.mod h1:N+GkhhZ/93bGZc6ZKhJLP6+m+tCNPKwgSpH9kaifseQ= -github.com/gobuffalo/packd v0.0.0-20181111195323-b2e760a5f0ff h1:FFjrU4aPGxtiWlhmLdeqEGFcs17YJfJ/i3Zm+cO5fkQ= -github.com/gobuffalo/packd v0.0.0-20181111195323-b2e760a5f0ff/go.mod h1:Yf2toFaISlyQrr5TfO3h6DB9pl9mZRmyvBGQb/aQ/pI= github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= -github.com/joho/godotenv v1.3.0 h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc= -github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg= -github.com/markbates/oncer v0.0.0-20181014194634-05fccaae8fc4 h1:Mlji5gkcpzkqTROyE4ZxZ8hN7osunMb2RuGVrbvMvCc= -github.com/markbates/oncer v0.0.0-20181014194634-05fccaae8fc4/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE= github.com/pkg/errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/spf13/cobra v0.0.3 h1:ZlrZ4XsMRm04Fr5pSFxBgfND2EBVa1nLpiy1stUsX/8= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg= -github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/pflag v1.0.2 h1:Fy0orTDgHdbnzHcsOgfCN4LtHf0ec3wwtiwJqwvf3Gc= +github.com/spf13/pflag v1.0.2/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= -golang.org/x/sync v0.0.0-20181108010431-42b317875d0f h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ= -golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/net v0.0.0-20180921000356-2f5d2388922f h1:QM2QVxvDoW9PFSPp/zy9FgxJLfaWTZlS61KEPtBwacM= +golang.org/x/net v0.0.0-20180921000356-2f5d2388922f/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f h1:wMNYb4v58l5UBM7MYRLPG6ZhfOqbKu7X5eyFl8ZhKvA= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= diff --git a/vendor/github.com/gobuffalo/packr/physical_file.go b/vendor/github.com/gobuffalo/packr/physical_file.go new file mode 100644 index 00000000..bf2d817a --- /dev/null +++ b/vendor/github.com/gobuffalo/packr/physical_file.go @@ -0,0 +1,13 @@ +package packr + +import "os" + +var _ File = physicalFile{} + +type physicalFile struct { + *os.File +} + +func (p physicalFile) FileInfo() (os.FileInfo, error) { + return os.Stat(p.Name()) +} diff --git a/vendor/github.com/gobuffalo/packr/shoulders.md b/vendor/github.com/gobuffalo/packr/shoulders.md index 6ec75dd3..38ec2a1b 100644 --- a/vendor/github.com/gobuffalo/packr/shoulders.md +++ b/vendor/github.com/gobuffalo/packr/shoulders.md @@ -5,14 +5,20 @@ github.com/gobuffalo/packr does not try to reinvent the wheel! Instead, it uses Thank you to the following **GIANTS**: -* [github.com/gobuffalo/envy](https://godoc.org/github.com/gobuffalo/envy) +* [github.com/pkg/errors](https://godoc.org/github.com/pkg/errors) -* [github.com/gobuffalo/packd](https://godoc.org/github.com/gobuffalo/packd) +* [github.com/spf13/cobra](https://godoc.org/github.com/spf13/cobra) -* [github.com/gobuffalo/packr](https://godoc.org/github.com/gobuffalo/packr) +* [github.com/spf13/pflag](https://godoc.org/github.com/spf13/pflag) -* [github.com/joho/godotenv](https://godoc.org/github.com/joho/godotenv) +* [github.com/stretchr/testify/assert](https://godoc.org/github.com/stretchr/testify/assert) -* [github.com/markbates/oncer](https://godoc.org/github.com/markbates/oncer) +* [github.com/stretchr/testify/require](https://godoc.org/github.com/stretchr/testify/require) -* [github.com/pkg/errors](https://godoc.org/github.com/pkg/errors) +* [github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew](https://godoc.org/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew) + +* [github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/difflib](https://godoc.org/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/difflib) + +* [golang.org/x/net/context](https://godoc.org/golang.org/x/net/context) + +* [golang.org/x/sync/errgroup](https://godoc.org/golang.org/x/sync/errgroup) diff --git a/vendor/github.com/gobuffalo/packr/version.go b/vendor/github.com/gobuffalo/packr/version.go index ccf638c4..537d484b 100644 --- a/vendor/github.com/gobuffalo/packr/version.go +++ b/vendor/github.com/gobuffalo/packr/version.go @@ -1,3 +1,3 @@ package packr -const Version = "v1.20.0" +const Version = "v1.13.7" diff --git a/vendor/github.com/gobuffalo/packr/virtual_file.go b/vendor/github.com/gobuffalo/packr/virtual_file.go new file mode 100644 index 00000000..955db8c7 --- /dev/null +++ b/vendor/github.com/gobuffalo/packr/virtual_file.go @@ -0,0 +1,57 @@ +package packr + +import ( + "bytes" + "fmt" + "os" + "time" +) + +var virtualFileModTime = time.Now() +var _ File = virtualFile{} + +type virtualFile struct { + *bytes.Reader + Name string + info fileInfo +} + +func (f virtualFile) FileInfo() (os.FileInfo, error) { + return f.info, nil +} + +func (f virtualFile) Close() error { + return nil +} + +func (f virtualFile) Write(p []byte) (n int, err error) { + return 0, fmt.Errorf("not implemented") +} + +func (f virtualFile) Readdir(count int) ([]os.FileInfo, error) { + return []os.FileInfo{f.info}, nil +} + +func (f virtualFile) Stat() (os.FileInfo, error) { + return f.info, nil +} + +func newVirtualFile(name string, b []byte) File { + return virtualFile{ + Reader: bytes.NewReader(b), + Name: name, + info: fileInfo{ + Path: name, + Contents: b, + size: int64(len(b)), + modTime: virtualFileModTime, + }, + } +} + +func newVirtualDir(name string) File { + var b []byte + v := newVirtualFile(name, b).(virtualFile) + v.info.isDir = true + return v +} diff --git a/vendor/github.com/gobuffalo/packr/walk.go b/vendor/github.com/gobuffalo/packr/walk.go index b1664d8b..21f2563d 100644 --- a/vendor/github.com/gobuffalo/packr/walk.go +++ b/vendor/github.com/gobuffalo/packr/walk.go @@ -5,11 +5,10 @@ import ( "path/filepath" "strings" - "github.com/gobuffalo/packd" "github.com/pkg/errors" ) -type WalkFunc = packd.WalkFunc +type WalkFunc func(string, File) error // Walk will traverse the box and call the WalkFunc for each file in the box/folder. func (b Box) Walk(wf WalkFunc) error { diff --git a/vendor/github.com/rubenv/sql-migrate/migrate.go b/vendor/github.com/rubenv/sql-migrate/migrate.go index 55f7e0ff..02f59f73 100644 --- a/vendor/github.com/rubenv/sql-migrate/migrate.go +++ b/vendor/github.com/rubenv/sql-migrate/migrate.go @@ -280,7 +280,7 @@ func (a AssetMigrationSource) FindMigrations() ([]*Migration, error) { // packr.Box that we need. type PackrBox interface { List() []string - Find(name string) ([]byte, error) + Bytes(name string) []byte } // Migrations from a packr box. @@ -313,10 +313,7 @@ func (p PackrMigrationSource) FindMigrations() ([]*Migration, error) { } if strings.HasSuffix(name, ".sql") { - file, err := p.Box.Find(item) - if err != nil { - return nil, err - } + file := p.Box.Bytes(item) migration, err := ParseMigration(name, bytes.NewReader(file)) if err != nil { @@ -650,8 +647,7 @@ func getMigrationDbMap(db *sql.DB, dialect string) (*gorp.DbMap, error) { err := db.QueryRow("SELECT NOW()").Scan(&out) if err != nil { if err.Error() == "sql: Scan error on column index 0: unsupported driver -> Scan pair: []uint8 -> *time.Time" || - err.Error() == "sql: Scan error on column index 0: unsupported Scan, storing driver.Value type []uint8 into type *time.Time" || - err.Error() == "sql: Scan error on column index 0, name \"NOW()\": unsupported Scan, storing driver.Value type []uint8 into type *time.Time" { + err.Error() == "sql: Scan error on column index 0: unsupported Scan, storing driver.Value type []uint8 into type *time.Time" { return nil, errors.New(`Cannot parse dates. Make sure that the parseTime option is supplied to your database connection. diff --git a/vendor/vendor.json b/vendor/vendor.json index 272e952c..35377c4c 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -149,10 +149,10 @@ "revisionTime": "2018-11-11T19:53:23Z" }, { - "checksumSHA1": "3VDhVe92VF1ZEx1W4RDOZNaEub8=", + "checksumSHA1": "GIaTlYXPnioIh7fkBEUnCfOBaPI=", "path": "github.com/gobuffalo/packr", - "revision": "04ea9bbf60d4f0e275bcd529eac2d1055db7396b", - "revisionTime": "2018-11-12T17:37:45Z" + "revision": "5a2cbb54c4e7d482e3f518c56f1f86f133d5204f", + "revisionTime": "2018-09-24T03:11:23Z" }, { "checksumSHA1": "g/V4qrXjUGG9B+e3hB+4NAYJ5Gs=", @@ -245,10 +245,10 @@ "revisionTime": "2018-03-11T21:45:15Z" }, { - "checksumSHA1": "0MwBZflejTXJSgMEGbFGpQPhcl4=", + "checksumSHA1": "N11d95+f/kzeTCb408INaeNcPCE=", "path": "github.com/rubenv/sql-migrate", - "revision": "ba2c6a7295c59448dbc195cef2f41df5163b3892", - "revisionTime": "2018-11-06T12:12:04Z" + "revision": "3f452fc0ebebbb784fdab91f7bc79a31dcacab5c", + "revisionTime": "2018-07-04T11:13:56Z" }, { "checksumSHA1": "rkHieYOGBsxJaDbC7vl/e4KSatw=",