Skip to content

Commit 58acbc8

Browse files
committed
Merge remote-tracking branch 'upstream/master' into bucket
2 parents 838e1b0 + 7c8166d commit 58acbc8

File tree

420 files changed

+14875
-13197
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

420 files changed

+14875
-13197
lines changed

.golangci.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,6 @@ issues:
8686
- path: models/issue_comment_list.go
8787
linters:
8888
- dupl
89-
# "Destroy" is misspelled in github.com/go-macaron/session/session.go:213 so it's not our responsability to fix it
90-
- path: modules/session/virtual.go
91-
linters:
92-
- misspell
93-
text: '`Destory` is a misspelling of `Destroy`'
94-
- path: modules/session/memory.go
95-
linters:
96-
- misspell
97-
text: '`Destory` is a misspelling of `Destroy`'
9889
- linters:
9990
- misspell
10091
text: '`Unknwon` is a misspelling of `Unknown`'

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ This changelog goes through all the changes that have been made in each release
44
without substantial changes to our git log; to see the highlights of what has
55
been added to each release, please refer to the [blog](https://blog.gitea.io).
66

7+
## [1.9.2](https://github.com/go-gitea/gitea/releases/tag/v1.9.2) - 2019-08-22
8+
* BUGFIXES
9+
* Fix wrong sender when send slack webhook (#7918) (#7924)
10+
* Upload support text/plain; charset=utf8 (#7899)
11+
* Lfs/lock: round locked_at timestamp to second (#7872) (#7875)
12+
* Fix non existent milestone with 500 error (#7867) (#7873)
13+
* SECURITY
14+
* Fix No PGP signature on 1.9.1 tag (#7874)
15+
* Release built with go 1.12.9 to fix security fixes in golang std lib, ref: https://groups.google.com/forum/#!msg/golang-announce/oeMaeUnkvVE/a49yvTLqAAAJ
16+
* ENHANCEMENT
17+
* Fix pull creation with empty changes (#7920) (#7926)
18+
* BUILD
19+
* Drone/docker: prepare multi-arch release + provide arm64 image (#7571) (#7884)
20+
721
## [1.9.1](https://github.com/go-gitea/gitea/releases/tag/v1.9.1) - 2019-08-14
822
* BREAKING
923
* Add pagination for admin api get orgs and fix only list public orgs bug (#7742) (#7752)

cmd/dump.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import (
1717
"code.gitea.io/gitea/models"
1818
"code.gitea.io/gitea/modules/setting"
1919

20-
"github.com/Unknwon/cae/zip"
21-
"github.com/Unknwon/com"
20+
"github.com/unknwon/cae/zip"
21+
"github.com/unknwon/com"
2222
"github.com/urfave/cli"
2323
)
2424

cmd/serv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import (
2222
"code.gitea.io/gitea/modules/private"
2323
"code.gitea.io/gitea/modules/setting"
2424

25-
"github.com/Unknwon/com"
2625
"github.com/dgrijalva/jwt-go"
26+
"github.com/unknwon/com"
2727
"github.com/urfave/cli"
2828
)
2929

cmd/web.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import (
1818
"code.gitea.io/gitea/routers"
1919
"code.gitea.io/gitea/routers/routes"
2020

21-
"github.com/Unknwon/com"
2221
context2 "github.com/gorilla/context"
22+
"github.com/unknwon/com"
2323
"github.com/urfave/cli"
2424
"golang.org/x/crypto/acme/autocert"
2525
ini "gopkg.in/ini.v1"

contrib/pr/checkout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ import (
2727
"code.gitea.io/gitea/routers"
2828
"code.gitea.io/gitea/routers/routes"
2929

30-
"github.com/Unknwon/com"
3130
"github.com/go-xorm/xorm"
3231
context2 "github.com/gorilla/context"
32+
"github.com/unknwon/com"
3333
"gopkg.in/src-d/go-git.v4"
3434
"gopkg.in/src-d/go-git.v4/config"
3535
"gopkg.in/src-d/go-git.v4/plumbing"

docs/config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ params:
1818
description: Git with a cup of tea
1919
author: The Gitea Authors
2020
website: https://docs.gitea.io
21+
version: 1.9.2
2122

2223
menu:
2324
page:

docs/content/doc/installation/from-binary.en-us.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ the destination platform from the [downloads page](https://dl.gitea.io/gitea/),
2121
the URL and replace the URL within the commands below:
2222

2323
```sh
24-
wget -O gitea https://dl.gitea.io/gitea/1.8.3/gitea-1.8.3-linux-amd64
24+
wget -O gitea https://dl.gitea.io/gitea/{{< version >}}/gitea-{{< version >}}-linux-amd64
2525
chmod +x gitea
2626
```
2727

@@ -30,7 +30,7 @@ Gitea signs all binaries with a [GPG key](https://pgp.mit.edu/pks/lookup?op=vind
3030

3131
```sh
3232
gpg --keyserver pgp.mit.edu --recv 7C9E68152594688862D62AF62D9AE806EC1592E2
33-
gpg --verify gitea-1.8.3-linux-amd64.asc gitea-1.8.3-linux-amd64
33+
gpg --verify gitea-{{< version >}}-linux-amd64.asc gitea-{{< version >}}-linux-amd64
3434
```
3535

3636
## Test

docs/content/doc/installation/from-binary.fr-fr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ menu:
1818
Tous les binaires sont livrés avec le support de SQLite, MySQL et PostgreSQL, et sont construits avec les ressources incorporées. Gardez à l'esprit que cela peut être différent pour les versions antérieures. L'installation basée sur nos binaires est assez simple, il suffit de choisir le fichier correspondant à votre plateforme à partir de la [page de téléchargement](https://dl.gitea.io/gitea). Copiez l'URL et remplacer l'URL dans les commandes suivantes par la nouvelle:
1919

2020
```
21-
wget -O gitea https://dl.gitea.io/gitea/1.3.2/gitea-1.3.2-linux-amd64
21+
wget -O gitea https://dl.gitea.io/gitea/{{< version >}}/gitea-{{< version >}}-linux-amd64
2222
chmod +x gitea
2323
```
2424

docs/content/doc/installation/from-binary.zh-cn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ menu:
1818
所有下载均包括 SQLite, MySQL 和 PostgreSQL 的支持,同时所有资源均已嵌入到可执行程序中,这一点和老版本有所不同。 基于二进制的安装非常简单,只要从 [下载页面](https://dl.gitea.io/gitea) 选择对应平台,拷贝下载URL,执行以下命令即可(以Linux为例):
1919

2020
```
21-
wget -O gitea https://dl.gitea.io/gitea/1.3.2/gitea-1.3.2-linux-amd64
21+
wget -O gitea https://dl.gitea.io/gitea/{{< version >}}/gitea-{{< version >}}-linux-amd64
2222
chmod +x gitea
2323
```
2424

docs/content/doc/installation/from-binary.zh-tw.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ menu:
1818
所有的執行檔皆支援 SQLite, MySQL and PostgreSQL,且所有檔案都已經包在執行檔內,這一點跟之前的版本有所不同。關於執行檔的安裝方式非常簡單,只要從[下載頁面](https://dl.gitea.io/gitea)選擇相對應平台,複製下載連結,使用底下指令就可以完成了:
1919

2020
```
21-
wget -O gitea https://dl.gitea.io/gitea/1.3.2/gitea-1.3.2-linux-amd64
21+
wget -O gitea https://dl.gitea.io/gitea/{{< version >}}/gitea-{{< version >}}-linux-amd64
2222
chmod +x gitea
2323
```
2424

docs/content/doc/installation/from-source.en-us.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ To work with tagged releases, the following commands can be used:
5353

5454
```bash
5555
git branch -a
56-
git checkout v1.0
56+
git checkout v{{< version >}}
5757
```
5858

5959
To validate a Pull Request, first enable the new branch (`xyz` is the PR id;
@@ -63,14 +63,14 @@ for example `2663` for [#2663](https://github.com/go-gitea/gitea/pull/2663)):
6363
git fetch origin pull/xyz/head:pr-xyz
6464
```
6565

66-
To build Gitea from source at a specific tagged release (like v1.0.0), list the
66+
To build Gitea from source at a specific tagged release (like v{{< version >}}), list the
6767
available tags and check out the specific tag.
6868

6969
List available tags with the following.
7070

7171
```bash
7272
git tag -l
73-
git checkout v1.0.0 # or git checkout pr-xyz
73+
git checkout v{{< version >}} # or git checkout pr-xyz
7474
```
7575

7676
## Build

docs/content/doc/installation/from-source.fr-fr.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Si vous souhaitez compiler la dernière version stable, utilisez les étiquettes
3535

3636
```
3737
git branch -a
38-
git checkout v1.0
38+
git checkout v{{< version >}}
3939
```
4040

4141
Si vous souhaitez valider une demande d'ajout (_Pull request_), vous devez activer cette branche en premier :
@@ -44,11 +44,11 @@ Si vous souhaitez valider une demande d'ajout (_Pull request_), vous devez activ
4444
git fetch origin pull/xyz/head:pr-xyz # xyz is PR value
4545
```
4646

47-
Enfin, vous pouvez directement utiliser les versions étiquettées (ex : `v1.0.0`). Pour utiliser les étiquettes, vous devez lister les étiquettes disponibles et choisir une étiquette spécifique avec les commandes suivantes :
47+
Enfin, vous pouvez directement utiliser les versions étiquettées (ex : `v{{< version >}}`). Pour utiliser les étiquettes, vous devez lister les étiquettes disponibles et choisir une étiquette spécifique avec les commandes suivantes :
4848

4949
```
5050
git tag -l
51-
git checkout v1.0.0
51+
git checkout v{{< version >}}
5252
git checkout pr-xyz
5353
```
5454

docs/content/doc/installation/from-source.zh-cn.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ cd $GOPATH/src/code.gitea.io/gitea
3232

3333
```
3434
git branch -a
35-
git checkout v1.0
35+
git checkout v{{< version >}}
3636
```
3737

38-
最后,你也可以直接使用标签版本如 `v1.0.0`。你可以执行以下命令列出可用的版本并选择某个版本签出:
38+
最后,你也可以直接使用标签版本如 `v{{< version >}}`。你可以执行以下命令列出可用的版本并选择某个版本签出:
3939

4040
```
4141
git tag -l
42-
git checkout v1.0.0
42+
git checkout v{{< version >}}
4343
```
4444

4545
## 编译

docs/content/doc/installation/from-source.zh-tw.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ cd $GOPATH/src/code.gitea.io/gitea
3232

3333
```
3434
git branch -a
35-
git checkout v1.0
35+
git checkout v{{< version >}}
3636
```
3737

38-
最後您也可以直接編譯最新的標籤版本像是 `v1.0.0`,假如您想要從原始碼編譯,這方法是最合適的,在編譯標籤版本前,您需要列出當下所有標籤,並且直接切換到標籤版本,請使用底下指令::
38+
最後您也可以直接編譯最新的標籤版本像是 `v{{< version >}}`,假如您想要從原始碼編譯,這方法是最合適的,在編譯標籤版本前,您需要列出當下所有標籤,並且直接切換到標籤版本,請使用底下指令::
3939

4040
```
4141
git tag -l
42-
git checkout v1.0.0
42+
git checkout v{{< version >}}
4343
```
4444

4545
## 編譯

docs/content/doc/installation/with-docker.en-us.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Create a directory like `gitea` and paste the following content into a file name
3131
Note that the volume should be owned by the user/group with the UID/GID specified in the config file.
3232
If you don't give the volume correct permissions, the container may not start.
3333
Also be aware that the tag `:latest` will install the current development version.
34-
For a stable release you can use `:1` or specify a certain release like `:1.5.1`.
34+
For a stable release you can use `:1` or specify a certain release like `:{{< version >}}`.
3535

3636
```yaml
3737
version: "2"

docs/layouts/shortcodes/version.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{ .Site.Params.version }}

go.mod

Lines changed: 18 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,32 @@ module code.gitea.io/gitea
33
go 1.12
44

55
require (
6+
gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b
7+
gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76
8+
gitea.com/macaron/captcha v0.0.0-20190822015246-daa973478bae
9+
gitea.com/macaron/cors v0.0.0-20190821152825-7dcef4a17175
10+
gitea.com/macaron/csrf v0.0.0-20190822024205-3dc5a4474439
11+
gitea.com/macaron/i18n v0.0.0-20190822004228-474e714e2223
12+
gitea.com/macaron/inject v0.0.0-20190805023432-d4c86e31027a
13+
gitea.com/macaron/macaron v1.3.3-0.20190821202302-9646c0587edb
14+
gitea.com/macaron/session v0.0.0-20190821211443-122c47c5f705
15+
gitea.com/macaron/toolbox v0.0.0-20190822013122-05ff0fc766b7
616
github.com/PuerkitoBio/goquery v0.0.0-20170324135448-ed7d758e9a34
717
github.com/RoaringBitmap/roaring v0.4.7 // indirect
8-
github.com/Unknwon/cae v0.0.0-20160715032808-c6aac99ea2ca
9-
github.com/Unknwon/com v0.0.0-20190321035513-0fed4efef755
10-
github.com/Unknwon/i18n v0.0.0-20171114194641-b64d33658966
11-
github.com/Unknwon/paginater v0.0.0-20151104151617-7748a72e0141
1218
github.com/andybalholm/cascadia v0.0.0-20161224141413-349dd0209470 // indirect
1319
github.com/bgentry/speakeasy v0.1.0 // indirect
1420
github.com/blevesearch/bleve v0.0.0-20190214220507-05d86ea8f6e3
1521
github.com/blevesearch/blevex v0.0.0-20180227211930-4b158bb555a3 // indirect
1622
github.com/blevesearch/go-porterstemmer v0.0.0-20141230013033-23a2c8e5cf1f // indirect
1723
github.com/blevesearch/segment v0.0.0-20160105220820-db70c57796cc // indirect
1824
github.com/boombuler/barcode v0.0.0-20161226211916-fe0f26ff6d26 // indirect
19-
github.com/bradfitz/gomemcache v0.0.0-20160117192205-fb1f79c6b65a // indirect
2025
github.com/chaseadamsio/goorgeous v0.0.0-20170901132237-098da33fde5f
21-
github.com/couchbase/gomemcached v0.0.0-20181122193126-5125a94a666c // indirect
22-
github.com/couchbase/goutils v0.0.0-20180530154633-e865a1461c8a // indirect
2326
github.com/couchbase/vellum v0.0.0-20190111184608-e91b68ff3efe // indirect
24-
github.com/couchbaselabs/go-couchbase v0.0.0-20190117181324-d904413d884d // indirect
2527
github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d // indirect
2628
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect
2729
github.com/cznic/strutil v0.0.0-20181122101858-275e90344537 // indirect
2830
github.com/denisenkom/go-mssqldb v0.0.0-20190724012636-11b2859924c1
2931
github.com/dgrijalva/jwt-go v3.2.0+incompatible
30-
github.com/edsrzf/mmap-go v0.0.0-20170320065105-0bce6a688712 // indirect
3132
github.com/emirpasic/gods v1.12.0
3233
github.com/etcd-io/bbolt v1.3.2 // indirect
3334
github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a
@@ -42,15 +43,6 @@ require (
4243
github.com/gliderlabs/ssh v0.2.2
4344
github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd // indirect
4445
github.com/glycerine/goconvey v0.0.0-20190315024820-982ee783a72e // indirect
45-
github.com/go-macaron/binding v0.0.0-20160711225916-9440f336b443
46-
github.com/go-macaron/cache v0.0.0-20151013081102-561735312776
47-
github.com/go-macaron/captcha v0.0.0-20190710000913-8dc5911259df
48-
github.com/go-macaron/cors v0.0.0-20190309005821-6fd6a9bfe14e9
49-
github.com/go-macaron/csrf v0.0.0-20190131233648-3751b136073c
50-
github.com/go-macaron/i18n v0.0.0-20190131234336-56731837a73b
51-
github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191
52-
github.com/go-macaron/session v0.0.0-20190131233854-0a0a789bf193
53-
github.com/go-macaron/toolbox v0.0.0-20180818072302-a77f45a7ce90
5446
github.com/go-redis/redis v6.15.2+incompatible
5547
github.com/go-sql-driver/mysql v1.4.1
5648
github.com/go-xorm/xorm v0.7.4
@@ -68,15 +60,13 @@ require (
6860
github.com/klauspost/cpuid v0.0.0-20160302075316-09cded8978dc // indirect
6961
github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6 // indirect
7062
github.com/lafriks/xormstore v1.1.0
71-
github.com/lib/pq v1.1.1
63+
github.com/lib/pq v1.2.0
7264
github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
7365
github.com/lunny/levelqueue v0.0.0-20190217115915-02b525a4418e
74-
github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de // indirect
75-
github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af // indirect
7666
github.com/markbates/goth v1.49.0
7767
github.com/mattn/go-isatty v0.0.8
7868
github.com/mattn/go-oci8 v0.0.0-20190320171441-14ba190cf52d // indirect
79-
github.com/mattn/go-sqlite3 v1.10.0
69+
github.com/mattn/go-sqlite3 v1.11.0
8070
github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75
8171
github.com/microcosm-cc/bluemonday v0.0.0-20161012083705-f77f16ffc87a
8272
github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae // indirect
@@ -94,13 +84,15 @@ require (
9484
github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b // indirect
9585
github.com/shurcooL/sanitized_anchor_name v0.0.0-20160918041101-1dba4b3954bc // indirect
9686
github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
97-
github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d // indirect
98-
github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff // indirect
9987
github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2 // indirect
10088
github.com/stretchr/testify v1.3.0
10189
github.com/tecbot/gorocksdb v0.0.0-20181010114359-8752a9433481 // indirect
10290
github.com/tinylib/msgp v0.0.0-20180516164116-c8cf64dff200 // indirect
10391
github.com/tstranex/u2f v1.0.0
92+
github.com/unknwon/cae v0.0.0-20190822084630-55a0b64484a1
93+
github.com/unknwon/com v0.0.0-20190804042917-757f69c95f3e
94+
github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6
95+
github.com/unknwon/paginater v0.0.0-20151104151617-7748a72e0141
10496
github.com/urfave/cli v1.20.0
10597
github.com/willf/bitset v0.0.0-20180426185212-8ce1146b8621 // indirect
10698
github.com/yohcop/openid-go v0.0.0-20160914080427-2c050d2dae53
@@ -109,18 +101,14 @@ require (
109101
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
110102
golang.org/x/net v0.0.0-20190724013045-ca1201d0de80
111103
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
112-
golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3
104+
golang.org/x/sys v0.0.0-20190804053845-51ab0e2deafa
113105
golang.org/x/text v0.3.2
114-
golang.org/x/tools v0.0.0-20190731214159-1e85ed8060aa // indirect
115106
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
116107
gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175 // indirect
117-
gopkg.in/bufio.v1 v1.0.0-20140618132640-567b2bfa514e // indirect
118108
gopkg.in/editorconfig/editorconfig-core-go.v1 v1.3.0
119109
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
120-
gopkg.in/ini.v1 v1.42.0
110+
gopkg.in/ini.v1 v1.46.0
121111
gopkg.in/ldap.v3 v3.0.2
122-
gopkg.in/macaron.v1 v1.3.2
123-
gopkg.in/redis.v2 v2.3.2 // indirect
124112
gopkg.in/src-d/go-billy.v4 v4.3.2
125113
gopkg.in/src-d/go-git.v4 v4.13.1
126114
gopkg.in/stretchr/testify.v1 v1.2.2 // indirect

0 commit comments

Comments
 (0)