-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
64 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.22-alpine | ||
FROM golang:1.23-alpine | ||
WORKDIR /myapp | ||
|
||
RUN apk add --no-cache gcc musl-dev | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
module myapp | ||
|
||
go 1.22 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/DATA-DOG/go-sqlmock v1.5.2 | ||
github.com/go-chi/chi/v5 v5.0.12 | ||
github.com/go-playground/validator/v10 v10.20.0 | ||
github.com/go-chi/chi/v5 v5.1.0 | ||
github.com/go-playground/validator/v10 v10.23.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/jackc/pgx/v5 v5.5.5 | ||
github.com/jackc/pgx/v5 v5.7.1 | ||
github.com/joeshaw/envdecode v0.0.0-20200121155833-099f1fc765bd | ||
github.com/pressly/goose/v3 v3.20.0 | ||
github.com/rs/xid v1.5.0 | ||
github.com/rs/zerolog v1.32.0 | ||
gorm.io/driver/postgres v1.5.7 | ||
gorm.io/gorm v1.25.10 | ||
github.com/pressly/goose/v3 v3.23.0 | ||
github.com/rs/xid v1.6.0 | ||
github.com/rs/zerolog v1.33.0 | ||
gorm.io/driver/postgres v1.5.10 | ||
gorm.io/gorm v1.25.12 | ||
) | ||
|
||
require ( | ||
github.com/gabriel-vasile/mimetype v1.4.3 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.7 // indirect | ||
github.com/go-playground/locales v0.14.1 // indirect | ||
github.com/go-playground/universal-translator v0.18.1 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect | ||
github.com/jackc/puddle/v2 v2.2.1 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect | ||
github.com/jackc/puddle/v2 v2.2.2 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/leodido/go-urn v1.4.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mfridman/interpolate v0.0.2 // indirect | ||
github.com/sethvargo/go-retry v0.2.4 // indirect | ||
github.com/sethvargo/go-retry v0.3.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/crypto v0.23.0 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
golang.org/x/crypto v0.29.0 // indirect | ||
golang.org/x/net v0.31.0 // indirect | ||
golang.org/x/sync v0.9.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/text v0.20.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters