summaryrefslogtreecommitdiffstats
path: root/vendor/gitea.com
diff options
context:
space:
mode:
author6543 <6543@obermui.de>2020-02-28 10:51:18 +0100
committerGitHub <noreply@github.com>2020-02-28 10:51:18 +0100
commit8d2059a20184842d9a7a573d285956dd998d42c4 (patch)
treeea957536a3d71dc9a98b793fe9b0e8c89252ea12 /vendor/gitea.com
parent694f44660f51aa2e8be920c49461380b7db64755 (diff)
downloadgitea-8d2059a20184842d9a7a573d285956dd998d42c4.tar.gz
gitea-8d2059a20184842d9a7a573d285956dd998d42c4.zip
update: macaron cores,gzip,session (#10522)
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'vendor/gitea.com')
-rw-r--r--vendor/gitea.com/macaron/cors/cors.go3
-rw-r--r--vendor/gitea.com/macaron/gzip/.drone.yml24
-rw-r--r--vendor/gitea.com/macaron/gzip/README.md19
-rw-r--r--vendor/gitea.com/macaron/session/go.mod2
-rw-r--r--vendor/gitea.com/macaron/session/go.sum4
5 files changed, 48 insertions, 4 deletions
diff --git a/vendor/gitea.com/macaron/cors/cors.go b/vendor/gitea.com/macaron/cors/cors.go
index ed00df1e7b..2d0613f2bc 100644
--- a/vendor/gitea.com/macaron/cors/cors.go
+++ b/vendor/gitea.com/macaron/cors/cors.go
@@ -151,7 +151,8 @@ func CORS(options ...Options) macaron.Handler {
}
})
if reqOptions {
- ctx.Status(200) // return response
+ ctx.Resp.WriteHeader(200) // return response
+ return
}
}
}
diff --git a/vendor/gitea.com/macaron/gzip/.drone.yml b/vendor/gitea.com/macaron/gzip/.drone.yml
new file mode 100644
index 0000000000..e55afaac04
--- /dev/null
+++ b/vendor/gitea.com/macaron/gzip/.drone.yml
@@ -0,0 +1,24 @@
+kind: pipeline
+name: go1-1-2
+
+steps:
+- name: test
+ image: golang:1.12
+ environment:
+ GOPROXY: https://goproxy.cn
+ commands:
+ - go build -v
+ - go test -v -race -coverprofile=coverage.txt -covermode=atomic
+
+---
+kind: pipeline
+name: go1-1-3
+
+steps:
+- name: test
+ image: golang:1.13
+ environment:
+ GOPROXY: https://goproxy.cn
+ commands:
+ - go build -v
+ - go test -v -race -coverprofile=coverage.txt -covermode=atomic \ No newline at end of file
diff --git a/vendor/gitea.com/macaron/gzip/README.md b/vendor/gitea.com/macaron/gzip/README.md
new file mode 100644
index 0000000000..e09c4a9d8c
--- /dev/null
+++ b/vendor/gitea.com/macaron/gzip/README.md
@@ -0,0 +1,19 @@
+# gzip
+
+Middleware gzip provides gzip comparess middleware for [Macaron](https://gitea.com/macaron/macaron).
+
+### Installation
+
+ go get gitea.com/macaron/gzip
+
+## Getting Help
+
+- [API Reference](https://godoc.org/gitea.com/macaron/gzip)
+
+## Credits
+
+This package is a modified version of [go-macaron gzip](github.com/go-macaron/gzip).
+
+## License
+
+This project is under the Apache License, Version 2.0. See the [LICENSE](LICENSE) file for the full license text. \ No newline at end of file
diff --git a/vendor/gitea.com/macaron/session/go.mod b/vendor/gitea.com/macaron/session/go.mod
index 626199661d..e161b8e165 100644
--- a/vendor/gitea.com/macaron/session/go.mod
+++ b/vendor/gitea.com/macaron/session/go.mod
@@ -6,7 +6,7 @@ require (
gitea.com/macaron/macaron v1.3.3-0.20190821202302-9646c0587edb
github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668
github.com/couchbase/gomemcached v0.0.0-20190515232915-c4b4ca0eb21d // indirect
- github.com/couchbase/goutils v0.0.0-20190315194238-f9d42b11473b // indirect
+ github.com/couchbase/goutils v0.0.0-20191018232750-b49639060d85 // indirect
github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7
github.com/cupcake/rdb v0.0.0-20161107195141-43ba34106c76 // indirect
github.com/edsrzf/mmap-go v1.0.0 // indirect
diff --git a/vendor/gitea.com/macaron/session/go.sum b/vendor/gitea.com/macaron/session/go.sum
index dc7dc6f34a..38d5f5f226 100644
--- a/vendor/gitea.com/macaron/session/go.sum
+++ b/vendor/gitea.com/macaron/session/go.sum
@@ -8,8 +8,8 @@ github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668 h1:U/lr3Dgy4WK
github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668/go.mod h1:H0wQNHz2YrLsuXOZozoeDmnHXkNCRmMW0gwFWDfEZDA=
github.com/couchbase/gomemcached v0.0.0-20190515232915-c4b4ca0eb21d h1:XMf4E1U+b9E3ElF0mjvfXZdflBRZz4gLp16nQ/QSHQM=
github.com/couchbase/gomemcached v0.0.0-20190515232915-c4b4ca0eb21d/go.mod h1:srVSlQLB8iXBVXHgnqemxUXqN6FCvClgCMPCsjBDR7c=
-github.com/couchbase/goutils v0.0.0-20190315194238-f9d42b11473b h1:bZ9rKU2/V8sY+NulSfxDOnXTWcs1rySqdF1sVepihvo=
-github.com/couchbase/goutils v0.0.0-20190315194238-f9d42b11473b/go.mod h1:BQwMFlJzDjFDG3DJUdU0KORxn88UlsOULuxLExMh3Hs=
+github.com/couchbase/goutils v0.0.0-20191018232750-b49639060d85 h1:0WMIDtuXCKEm4wtAJgAAXa/qtM5O9MariLwgHaRlYmk=
+github.com/couchbase/goutils v0.0.0-20191018232750-b49639060d85/go.mod h1:BQwMFlJzDjFDG3DJUdU0KORxn88UlsOULuxLExMh3Hs=
github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7 h1:1XjEY/gnjQ+AfXef2U6dxCquhiRzkEpxZuWqs+QxTL8=
github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7/go.mod h1:mby/05p8HE5yHEAKiIH/555NoblMs7PtW6NrYshDruc=
github.com/cupcake/rdb v0.0.0-20161107195141-43ba34106c76 h1:Lgdd/Qp96Qj8jqLpq2cI1I1X7BJnu06efS+XkhRoLUQ=