feat: accept CORS requests from parent domain
fix: removed unused vars in rootmux test fix: MaxAge increased to 30s for redirectAfterLogin cookie fix: do not exit on non existing ip location database fix: geolocation of ipv6 fix: do not set CORS headers when no request does not have origin header
No preview for this file type
... | ... | @@ -5,14 +5,11 @@ go 1.16 |
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/oschwald/maxminddb-golang v1.8.0 | ||
github.com/secure-io/sio-go v0.3.1 | ||
golang.org/x/crypto v0.0.0-20210415154028-4f45737414dc | ||
golang.org/x/net v0.0.0-20210420210106-798c2154c571 | ||
golang.org/x/oauth2 v0.0.0-20210413134643-5e61552d6c78 | ||
golang.org/x/sys v0.0.0-20210420205809-ac73e9fd8988 | ||
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a | ||
golang.org/x/net v0.0.0-20210521195947-fe42d452be8f | ||
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c | ||
golang.org/x/sys v0.0.0-20210521203332-0cec03c779c1 | ||
google.golang.org/appengine v1.6.7 // indirect | ||
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect | ||
) |
Please register or sign in to comment