Skip to content

Commit 2611d8e

Browse files
committed
bump tusd and make CORS configurable
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
1 parent e5f7cc6 commit 2611d8e

File tree

5 files changed

+743
-29
lines changed

5 files changed

+743
-29
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Bugfix: make tusd CORS headers configurable
2+
3+
We bumped tusd to 1.13.0 and made CORS headers configurable via mapstructure.
4+
5+
https://github.com/cs3org/reva/pull/4507

go.mod

+9-9
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/CiscoM31/godata v1.0.7
1010
github.com/Masterminds/sprig v2.22.0+incompatible
1111
github.com/armon/go-radix v1.0.0
12-
github.com/aws/aws-sdk-go v1.44.181
12+
github.com/aws/aws-sdk-go v1.45.1
1313
github.com/beevik/etree v1.2.0
1414
github.com/bluele/gcache v0.0.2
1515
github.com/c-bata/go-prompt v0.2.6
@@ -43,7 +43,7 @@ require (
4343
github.com/google/go-github v17.0.0+incompatible
4444
github.com/google/renameio/v2 v2.0.0
4545
github.com/google/uuid v1.4.0
46-
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
46+
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
4747
github.com/hashicorp/go-hclog v1.3.1
4848
github.com/hashicorp/go-plugin v1.4.5
4949
github.com/huandu/xstrings v1.3.2
@@ -75,7 +75,7 @@ require (
7575
github.com/studio-b12/gowebdav v0.0.0-20221015232716-17255f2e7423
7676
github.com/test-go/testify v1.1.4
7777
github.com/thanhpk/randstr v1.0.4
78-
github.com/tus/tusd v1.10.1
78+
github.com/tus/tusd v1.13.0
7979
github.com/wk8/go-ordered-map v1.0.0
8080
go-micro.dev/v4 v4.9.0
8181
go.etcd.io/etcd/client/v3 v3.5.7
@@ -89,12 +89,12 @@ require (
8989
golang.org/x/crypto v0.15.0
9090
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1
9191
golang.org/x/oauth2 v0.13.0
92-
golang.org/x/sync v0.2.0
92+
golang.org/x/sync v0.3.0
9393
golang.org/x/sys v0.14.0
9494
golang.org/x/term v0.14.0
9595
golang.org/x/text v0.14.0
96-
google.golang.org/genproto v0.0.0-20230526203410-71b5a4ffd15e
97-
google.golang.org/grpc v1.56.2
96+
google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5
97+
google.golang.org/grpc v1.57.0
9898
google.golang.org/protobuf v1.31.0
9999
)
100100

@@ -119,7 +119,7 @@ require (
119119
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
120120
github.com/davecgh/go-spew v1.1.1 // indirect
121121
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
122-
github.com/dustin/go-humanize v1.0.0 // indirect
122+
github.com/dustin/go-humanize v1.0.1 // indirect
123123
github.com/emirpasic/gods v1.18.1 // indirect
124124
github.com/fatih/color v1.14.1 // indirect
125125
github.com/fsnotify/fsnotify v1.6.0 // indirect
@@ -219,8 +219,8 @@ require (
219219
golang.org/x/time v0.3.0 // indirect
220220
golang.org/x/tools v0.9.3 // indirect
221221
google.golang.org/appengine v1.6.8 // indirect
222-
google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc // indirect
223-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect
222+
google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5 // indirect
223+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230807174057-1744710a1577 // indirect
224224
gopkg.in/ini.v1 v1.67.0 // indirect
225225
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
226226
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect

0 commit comments

Comments
 (0)