Commit eb491e01 authored by Chris Molozian's avatar Chris Molozian
Browse files

Update sql-migrate to 'a32ed26'.

parent 435d73f8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -4,7 +4,8 @@ All notable changes to this project are documented below.
The format is based on [keep a changelog](http://keepachangelog.com) and this project uses [semantic versioning](http://semver.org).

## [Unreleased]

### Changed
- Update sql-migrate library to a32ed26.

## [3.2.0] - 2021-04-14
### Added
+3 −8
Original line number Diff line number Diff line
@@ -3,14 +3,12 @@ module github.com/heroiclabs/nakama/v3
go 1.16

require (
	github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect
	github.com/blevesearch/bleve v1.0.13
	github.com/cockroachdb/apd v1.1.0 // indirect
	github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d // indirect
	github.com/dgrijalva/jwt-go v3.2.1-0.20200107013213-dc14462fd587+incompatible
	github.com/dop251/goja v0.0.0-20210406175830-1b11a6af686d
	github.com/glycerine/go-unsnap-stream v0.0.0-20190901134440-81cf024a9e0a // indirect
	github.com/go-sql-driver/mysql v1.4.1 // indirect
	github.com/gobuffalo/packr v1.30.1 // indirect
	github.com/gofrs/uuid v0.0.0-20190510204422-abfe1881e60e
	github.com/golang/protobuf v1.4.3
@@ -22,26 +20,23 @@ require (
	github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
	github.com/jackc/pgx v3.5.0+incompatible
	github.com/jmhodges/levigo v1.0.0 // indirect
	github.com/lib/pq v1.2.0 // indirect
	github.com/m3db/prometheus_client_golang v0.8.1 // indirect
	github.com/m3db/prometheus_client_model v0.1.0 // indirect
	github.com/m3db/prometheus_common v0.1.0 // indirect
	github.com/m3db/prometheus_procfs v0.8.1 // indirect
	github.com/mattn/go-sqlite3 v1.10.0 // indirect
	github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
	github.com/pkg/errors v0.9.1
	github.com/rogpeppe/go-internal v1.3.1 // indirect
	github.com/rubenv/sql-migrate v0.0.0-20190902133344-8926f37f0bc1
	github.com/rubenv/sql-migrate v0.0.0-20210408115534-a32ed26c37ea
	github.com/satori/go.uuid v1.2.0 // indirect
	github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24 // indirect
	github.com/stretchr/testify v1.5.1
	github.com/stretchr/testify v1.6.1
	github.com/tecbot/gorocksdb v0.0.0-20190519120508-025c3cf4ffb4 // indirect
	github.com/tinylib/msgp v1.1.2 // indirect
	github.com/uber-go/tally v3.3.16+incompatible
	github.com/ziutek/mymysql v1.5.4 // indirect
	go.uber.org/atomic v1.6.0
	go.uber.org/zap v1.14.1
	golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
	golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a
	golang.org/x/net v0.0.0-20200925080053-05aa5d4ee321 // indirect
	golang.org/x/sys v0.0.0-20200926100807-9d91bd62050c // indirect
	google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154
+141 −0

File changed.

Preview size limit exceeded, changes collapsed.

+6 −0
Original line number Diff line number Diff line
*
!go.mod
!go.sum
!*.go
!sql-migrate/*.go
!sqlparse/*.go
+2 −0
Original line number Diff line number Diff line
.*.swp
*.test
.idea
/vendor/

/sql-migrate/test.db
/test.db
Loading