Skip to content

Commit baf9d61

Browse files
committed
Bump go versions and fix some scripts
1 parent 80d61ab commit baf9d61

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+4831
-3812
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,17 @@ Built with:
1212
# Local Development
1313
## Requirements
1414
* Docker
15-
* Go 1.12+
15+
* Go 1.19+
16+
* Node
17+
* Yarn
18+
* React
19+
* Mysql
20+
* Flyway
1621

1722
## Running
1823
```bash
1924
go mod download
25+
yarn --cwd "ui" install
2026

2127
./scripts/run.sh
2228
```

db/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.7'
22
services:
33
db:
4-
image: mysql:5.7
4+
image: mariadb:10.10
55
restart: always
66
environment:
77
MYSQL_DATABASE: 'db'

go.mod

+38-10
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,53 @@
11
module github.com/iplay88keys/my-recipe-library
22

3-
go 1.12
3+
go 1.19
44

55
require (
6+
cloud.google.com/go/cloudsqlconn v1.2.0
67
code.cloudfoundry.org/go-envstruct v1.5.0
78
github.com/DATA-DOG/go-sqlmock v1.4.1
8-
github.com/GoogleCloudPlatform/cloudsql-proxy v1.17.0
9-
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect
109
github.com/alicebob/miniredis v2.5.0+incompatible
1110
github.com/dgrijalva/jwt-go v3.2.0+incompatible
1211
github.com/elliotchance/redismock v1.5.3
1312
github.com/go-redis/redis v6.15.8+incompatible
14-
github.com/go-sql-driver/mysql v1.5.0
15-
github.com/gomodule/redigo v2.0.0+incompatible // indirect
13+
github.com/go-sql-driver/mysql v1.7.0
1614
github.com/gorilla/mux v1.7.3
17-
github.com/myesui/uuid v1.0.0 // indirect
18-
github.com/onsi/ginkgo v1.11.0
19-
github.com/onsi/gomega v1.9.0
20-
github.com/stretchr/testify v1.6.1
15+
github.com/onsi/ginkgo/v2 v2.8.1
16+
github.com/onsi/gomega v1.26.0
17+
github.com/stretchr/testify v1.8.1
2118
github.com/twinj/uuid v1.0.0
19+
golang.org/x/crypto v0.0.0-20220926161630-eccd6366d1be
20+
)
21+
22+
require (
23+
cloud.google.com/go/compute v1.14.0 // indirect
24+
cloud.google.com/go/compute/metadata v0.2.3 // indirect
25+
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect
26+
github.com/davecgh/go-spew v1.1.1 // indirect
27+
github.com/go-logr/logr v1.2.3 // indirect
28+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
29+
github.com/golang/protobuf v1.5.2 // indirect
30+
github.com/gomodule/redigo v2.0.0+incompatible // indirect
31+
github.com/google/go-cmp v0.5.9 // indirect
32+
github.com/google/uuid v1.3.0 // indirect
33+
github.com/googleapis/enterprise-certificate-proxy v0.2.1 // indirect
34+
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
35+
github.com/myesui/uuid v1.0.0 // indirect
36+
github.com/pmezard/go-difflib v1.0.0 // indirect
37+
github.com/stretchr/objx v0.5.0 // indirect
2238
github.com/yuin/gopher-lua v0.0.0-20200603152657-dc2b0ca8b37e // indirect
23-
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
39+
go.opencensus.io v0.24.0 // indirect
40+
golang.org/x/net v0.6.0 // indirect
41+
golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 // indirect
42+
golang.org/x/sys v0.5.0 // indirect
43+
golang.org/x/text v0.7.0 // indirect
44+
golang.org/x/time v0.3.0 // indirect
45+
google.golang.org/api v0.109.0 // indirect
46+
google.golang.org/appengine v1.6.7 // indirect
47+
google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc // indirect
48+
google.golang.org/grpc v1.51.0 // indirect
49+
google.golang.org/protobuf v1.28.1 // indirect
2450
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
51+
gopkg.in/stretchr/testify.v1 v1.2.2 // indirect
52+
gopkg.in/yaml.v3 v3.0.1 // indirect
2553
)

go.sum

+980-47
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)