Skip to content

Commit c13e3c0

Browse files
authored
Merge pull request #47 from matthchr/feature/dependency-updates
Update go dependencies
2 parents 6c98ae0 + 67b98ea commit c13e3c0

File tree

2 files changed

+452
-139
lines changed

2 files changed

+452
-139
lines changed

azure-votes-postgresql/go.mod

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,36 @@
11
module github.com/Azure/azure-votes-postgresql
22

3-
go 1.17
3+
go 1.19
44

55
require (
6-
github.com/jackc/pgx/v4 v4.13.0
7-
github.com/pkg/errors v0.8.1
8-
github.com/spf13/cobra v0.0.5
9-
github.com/spf13/viper v1.4.0
6+
github.com/jackc/pgx/v4 v4.18.1
7+
github.com/pkg/errors v0.9.1
8+
github.com/spf13/cobra v1.7.0
9+
github.com/spf13/viper v1.16.0
1010
)
1111

1212
require (
13-
github.com/fsnotify/fsnotify v1.4.7 // indirect
13+
github.com/fsnotify/fsnotify v1.6.0 // indirect
1414
github.com/hashicorp/hcl v1.0.0 // indirect
15-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
15+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
1616
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
17-
github.com/jackc/pgconn v1.10.0 // indirect
17+
github.com/jackc/pgconn v1.14.0 // indirect
1818
github.com/jackc/pgio v1.0.0 // indirect
1919
github.com/jackc/pgpassfile v1.0.0 // indirect
20-
github.com/jackc/pgproto3/v2 v2.1.1 // indirect
21-
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
22-
github.com/jackc/pgtype v1.8.1 // indirect
23-
github.com/magiconair/properties v1.8.0 // indirect
24-
github.com/mitchellh/mapstructure v1.1.2 // indirect
25-
github.com/pelletier/go-toml v1.2.0 // indirect
26-
github.com/spf13/afero v1.1.2 // indirect
27-
github.com/spf13/cast v1.3.0 // indirect
28-
github.com/spf13/jwalterweatherman v1.0.0 // indirect
29-
github.com/spf13/pflag v1.0.3 // indirect
30-
golang.org/x/crypto v0.1.0 // indirect
31-
golang.org/x/sys v0.1.0 // indirect
32-
golang.org/x/text v0.4.0 // indirect
33-
gopkg.in/yaml.v2 v2.2.2 // indirect
20+
github.com/jackc/pgproto3/v2 v2.3.2 // indirect
21+
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
22+
github.com/jackc/pgtype v1.14.0 // indirect
23+
github.com/magiconair/properties v1.8.7 // indirect
24+
github.com/mitchellh/mapstructure v1.5.0 // indirect
25+
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
26+
github.com/spf13/afero v1.9.5 // indirect
27+
github.com/spf13/cast v1.5.1 // indirect
28+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
29+
github.com/spf13/pflag v1.0.5 // indirect
30+
github.com/subosito/gotenv v1.4.2 // indirect
31+
golang.org/x/crypto v0.9.0 // indirect
32+
golang.org/x/sys v0.11.0 // indirect
33+
golang.org/x/text v0.9.0 // indirect
34+
gopkg.in/ini.v1 v1.67.0 // indirect
35+
gopkg.in/yaml.v3 v3.0.1 // indirect
3436
)

0 commit comments

Comments
 (0)