Skip to content

Commit 68cf7a2

Browse files
committed
chore: upgrade go to 1.17
1 parent 89d1c06 commit 68cf7a2

File tree

2 files changed

+39
-14
lines changed

2 files changed

+39
-14
lines changed

go.mod

+39-12
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,69 @@
11
module github.com/filebrowser/filebrowser/v2
22

3-
go 1.16
3+
go 1.17
44

55
require (
6-
github.com/DataDog/zstd v1.4.0 // indirect
7-
github.com/Sereal/Sereal v0.0.0-20190430203904-6faf9605eb56 // indirect
86
github.com/asdine/storm v2.1.2+incompatible
97
github.com/caddyserver/caddy v1.0.3
108
github.com/dgrijalva/jwt-go v3.2.0+incompatible
119
github.com/disintegration/imaging v1.6.2
12-
github.com/dsnet/compress v0.0.1 // indirect
1310
github.com/dsoprea/go-exif/v3 v3.0.0-20201216222538-db167117f483
14-
github.com/golang/snappy v0.0.1 // indirect
1511
github.com/gorilla/mux v1.7.3
1612
github.com/gorilla/websocket v1.4.1
1713
github.com/maruel/natural v0.0.0-20180416170133-dbcb3e2e8cf1
1814
github.com/marusama/semaphore/v2 v2.4.1
1915
github.com/mholt/archiver v3.1.1+incompatible
2016
github.com/mitchellh/go-homedir v1.1.0
21-
github.com/nwaples/rardecode v1.0.0 // indirect
2217
github.com/pelletier/go-toml v1.6.0
23-
github.com/pierrec/lz4 v0.0.0-20190131084431-473cd7ce01a1 // indirect
2418
github.com/spf13/afero v1.2.2
2519
github.com/spf13/cobra v0.0.5
26-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
2720
github.com/spf13/pflag v1.0.5
2821
github.com/spf13/viper v1.6.1
2922
github.com/stretchr/testify v1.6.1
3023
github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce
31-
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
32-
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
3324
go.etcd.io/bbolt v1.3.3
3425
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37
3526
golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8
27+
gopkg.in/natefinch/lumberjack.v2 v2.0.0
28+
gopkg.in/yaml.v2 v2.3.0
29+
)
30+
31+
require (
32+
github.com/DataDog/zstd v1.4.0 // indirect
33+
github.com/Sereal/Sereal v0.0.0-20190430203904-6faf9605eb56 // indirect
34+
github.com/cenkalti/backoff v2.1.1+incompatible // indirect
35+
github.com/davecgh/go-spew v1.1.1 // indirect
36+
github.com/dsnet/compress v0.0.1 // indirect
37+
github.com/dsoprea/go-logging v0.0.0-20200517223158-a10564966e9d // indirect
38+
github.com/dsoprea/go-utility/v2 v2.0.0-20200717064901-2fccff4aa15e // indirect
39+
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect
40+
github.com/fsnotify/fsnotify v1.4.7 // indirect
41+
github.com/go-acme/lego v2.5.0+incompatible // indirect
42+
github.com/go-errors/errors v1.1.1 // indirect
43+
github.com/golang/geo v0.0.0-20200319012246-673a6f80352d // indirect
44+
github.com/golang/snappy v0.0.1 // indirect
45+
github.com/google/uuid v1.1.1 // indirect
46+
github.com/hashicorp/hcl v1.0.0 // indirect
47+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
48+
github.com/klauspost/cpuid v1.2.0 // indirect
49+
github.com/magiconair/properties v1.8.1 // indirect
50+
github.com/mholt/certmagic v0.6.2-0.20190624175158-6a42ef9fe8c2 // indirect
51+
github.com/miekg/dns v1.1.3 // indirect
52+
github.com/mitchellh/mapstructure v1.1.2 // indirect
53+
github.com/nwaples/rardecode v1.0.0 // indirect
54+
github.com/pierrec/lz4 v0.0.0-20190131084431-473cd7ce01a1 // indirect
55+
github.com/pmezard/go-difflib v1.0.0 // indirect
56+
github.com/spf13/cast v1.3.0 // indirect
57+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
58+
github.com/subosito/gotenv v1.2.0 // indirect
59+
github.com/ulikunitz/xz v0.5.6 // indirect
60+
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
61+
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
3662
golang.org/x/net v0.0.0-20200528225125-3c3fba18258b // indirect
3763
golang.org/x/sys v0.0.0-20200523222454-059865788121 // indirect
3864
golang.org/x/text v0.3.2 // indirect
3965
google.golang.org/appengine v1.5.0 // indirect
40-
gopkg.in/natefinch/lumberjack.v2 v2.0.0
41-
gopkg.in/yaml.v2 v2.3.0
66+
gopkg.in/ini.v1 v1.51.0 // indirect
67+
gopkg.in/square/go-jose.v2 v2.2.2 // indirect
68+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
4269
)

go.sum

-2
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T
101101
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
102102
github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=
103103
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
104-
github.com/jessevdk/go-flags v1.4.0 h1:4IU2WS7AumrZ/40jfhf4QVDMsQwqA7VEHozFRrGARJA=
105104
github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI=
106105
github.com/jimstudt/http-authentication v0.0.0-20140401203705-3eca13d6893a/go.mod h1:wK6yTYYcgjHE1Z1QtXACPDjcFJyBskHEdagmnq3vsP8=
107106
github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo=
@@ -302,7 +301,6 @@ gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bl
302301
gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
303302
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
304303
gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
305-
gopkg.in/yaml.v2 v2.2.7 h1:VUgggvou5XRW9mHwD/yXxIYSMtY0zoKQf/v226p2nyo=
306304
gopkg.in/yaml.v2 v2.2.7/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
307305
gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=
308306
gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

0 commit comments

Comments
 (0)