Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all dependencies #5

Merged
merged 1 commit into from Sep 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/postgres/Dockerfile
@@ -1,4 +1,4 @@
FROM postgres:13.3-alpine
FROM postgres:14.0-alpine
ENV LANG en_US.utf8

# Custom initialization scripts
Expand Down
33 changes: 10 additions & 23 deletions go.mod
Expand Up @@ -4,36 +4,23 @@ go 1.15

require (
github.com/cockroachdb/apd v1.1.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/go-chi/chi/v5 v5.0.3
github.com/go-chi/chi v1.5.4
github.com/go-chi/cors v1.2.0
github.com/go-chi/render v1.0.1
github.com/go-openapi/loads v0.20.2
github.com/go-openapi/strfmt v0.20.1
github.com/go-openapi/validate v0.20.2
github.com/go-sql-driver/mysql v1.5.0 // indirect
github.com/gofrs/uuid v3.3.0+incompatible // indirect
github.com/go-openapi/loads v0.20.3
github.com/go-openapi/strfmt v0.20.3
github.com/go-openapi/validate v0.20.3
github.com/gofrs/uuid v4.0.0+incompatible // indirect
github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
github.com/jackc/pgx/v4 v4.11.0
github.com/jackc/pgx/v4 v4.11.0
github.com/jackc/pgx v3.6.2+incompatible
github.com/jmoiron/sqlx v1.3.4
github.com/lib/pq v1.8.0 // indirect
github.com/magiconair/properties v1.8.4 // indirect
github.com/lib/pq v1.10.2 // indirect
github.com/natefinch/lumberjack v2.0.0+incompatible
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/shopspring/decimal v1.2.0 // indirect
github.com/spf13/afero v1.4.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.1.3
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.7.1
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.9.0
github.com/unrolled/secure v1.0.9
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.16.0
golang.org/x/crypto v0.0.0-20200930160638-afb6bcd081ae // indirect
go.uber.org/zap v1.19.1
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/ini.v1 v1.61.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
)