Skip to content

Commit 55d6e3a

Browse files
author
Vic Shóstak
authored
Merge pull request #17 from create-go-app/dev
Update dependencies
2 parents 3069ceb + 21cf821 commit 55d6e3a

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ clean:
1111
security:
1212
gosec -quiet ./...
1313

14+
linter:
15+
golangci-lint run
16+
1417
test: security
1518
go test -cover ./...
1619

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ make docker.run
4545
| [stretchr/testify](https://github.com/stretchr/testify) | `v1.7.0` | tests |
4646
| [dgrijalva/jwt-go](https://github.com/dgrijalva/jwt-go) | `v3.2.0` | auth |
4747
| [joho/godotenv](https://github.com/joho/godotenv) | `v1.3.0` | config |
48-
| [jmoiron/sqlx](https://github.com/jmoiron/sqlx) | `v1.3.1` | database |
48+
| [jmoiron/sqlx](https://github.com/jmoiron/sqlx) | `v1.3.3` | database |
4949
| [jackc/pgx](https://github.com/jackc/pgx) | `v4.11.0` | database |
5050
| [swaggo/swag](https://github.com/swaggo/swag) | `v1.7.0` | utils |
5151
| [google/uuid](https://github.com/google/uuid) | `v1.2.0` | utils |
52-
| [go-playground/validator](https://github.com/go-playground/validator) | `v10.4.1` | utils |
52+
| [go-playground/validator](https://github.com/go-playground/validator) | `v10.5.0` | utils |
5353

5454
## 🗄 Template structure
5555

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ require (
66
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
77
github.com/auth0/go-jwt-middleware v1.0.0
88
github.com/dgrijalva/jwt-go v3.2.0+incompatible
9-
github.com/go-playground/validator/v10 v10.4.1
9+
github.com/go-playground/validator/v10 v10.5.0
1010
github.com/google/uuid v1.2.0
1111
github.com/gorilla/mux v1.8.0
1212
github.com/jackc/pgx/v4 v4.11.0
13-
github.com/jmoiron/sqlx v1.3.1
13+
github.com/jmoiron/sqlx v1.3.3
1414
github.com/joho/godotenv v1.3.0
1515
github.com/swaggo/http-swagger v1.0.0
1616
github.com/swaggo/swag v1.7.0

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ github.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8c
101101
github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8=
102102
github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no=
103103
github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA=
104-
github.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE=
105-
github.com/go-playground/validator/v10 v10.4.1/go.mod h1:nlOn6nFhuKACm19sB/8EGNn9GlaMV7XkbRSipzJ0Ii4=
104+
github.com/go-playground/validator/v10 v10.5.0 h1:X9rflw/KmpACwT8zdrm1upefpvdy6ur8d1kWyq6sg3E=
105+
github.com/go-playground/validator/v10 v10.5.0/go.mod h1:xm76BBt941f7yWdGnI2DVPFFg1UK3YY04qifoXU3lOk=
106106
github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w=
107107
github.com/go-sql-driver/mysql v1.5.0 h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=
108108
github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
@@ -221,8 +221,8 @@ github.com/jackc/puddle v1.1.0/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dv
221221
github.com/jackc/puddle v1.1.1/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=
222222
github.com/jackc/puddle v1.1.3/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=
223223
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k=
224-
github.com/jmoiron/sqlx v1.3.1 h1:aLN7YINNZ7cYOPK3QC83dbM6KT0NMqVMw961TqrejlE=
225-
github.com/jmoiron/sqlx v1.3.1/go.mod h1:2BljVx/86SuTyjE+aPYlHCTNvZrnJXghYGpNiXLBMCQ=
224+
github.com/jmoiron/sqlx v1.3.3 h1:j82X0bf7oQ27XeqxicSZsTU5suPwKElg3oyxNn43iTk=
225+
github.com/jmoiron/sqlx v1.3.3/go.mod h1:2BljVx/86SuTyjE+aPYlHCTNvZrnJXghYGpNiXLBMCQ=
226226
github.com/joho/godotenv v1.3.0 h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc=
227227
github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg=
228228
github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo=

0 commit comments

Comments
 (0)