Skip to content

Commit d6ceb0c

Browse files
committed
Merge branch 'master' into make-upload-not-clone
2 parents d0d28c9 + da1edbf commit d6ceb0c

File tree

366 files changed

+42354
-1389
lines changed

Some content is hidden

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

366 files changed

+42354
-1389
lines changed

.drone.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ pipeline:
127127
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
128128
- apt-get install -y git-lfs
129129
- (sleep 1200 && (echo 'kill -ABRT $(pidof gitea) $(pidof integrations.sqlite.test)' | sh)) &
130+
- make test-sqlite-migration
130131
- make test-sqlite
131132
when:
132133
event: [ push, tag, pull_request ]
@@ -141,6 +142,7 @@ pipeline:
141142
commands:
142143
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
143144
- apt-get install -y git-lfs
145+
- make test-mysql-migration
144146
- make integration-test-coverage
145147
when:
146148
event: [ push, pull_request ]
@@ -157,6 +159,7 @@ pipeline:
157159
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
158160
- apt-get install -y git-lfs
159161
- (sleep 1200 && (echo 'kill -ABRT $(pidof gitea) $(pidof integrations.test)' | sh)) &
162+
- make test-mysql-migration
160163
- make test-mysql
161164
when:
162165
event: [ tag ]
@@ -172,6 +175,7 @@ pipeline:
172175
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
173176
- apt-get install -y git-lfs
174177
- (sleep 1200 && (echo 'kill -ABRT $(pidof gitea) $(pidof integrations.test)' | sh)) &
178+
- make test-pgsql-migration
175179
- make test-pgsql
176180
when:
177181
event: [ push, tag, pull_request ]
@@ -186,6 +190,7 @@ pipeline:
186190
commands:
187191
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
188192
- apt-get install -y git-lfs
193+
- make test-mssql-migration
189194
- make test-mssql
190195
when:
191196
event: [ push, tag, pull_request ]

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ indent_size = 8
1515
indent_style = tab
1616
indent_size = 4
1717

18-
[*.{less}]
18+
[*.less]
1919
indent_style = space
2020
indent_size = 4
2121

CHANGELOG.md

Lines changed: 41 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,32 @@ 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.7.0-rc3](https://github.com/go-gitea/gitea/releases/tag/v1.7.0-rc3) - 2019-01-18
7+
## [1.7.1](https://github.com/go-gitea/gitea/releases/tag/v1.7.1) - 2019-01-31
88
* SECURITY
9-
* Do not display the raw OpenID error in the UI (#5705) (#5712)
10-
* When redirecting clean the path to avoid redirecting to external site (#5669) (#5679)
11-
* BUGFIX
12-
* Fix sqlite deadlock when assigning to a PR (#5640) (#5642)
13-
* Don't close issues via commits on non-default branch. (#5622) (#5643)
14-
* Fix commit page showing status for current default branch (#5650) (#5653)
15-
* Only count users own actions for heatmap contributions (#5647) (#5655)
16-
* Update xorm to fix issue postgresql dumping issues (#5680) (#5692)
17-
* Use correct value for "MSpan Structures Obtained" (#5706) (#5716)
18-
19-
## [1.6.4](https://github.com/go-gitea/gitea/releases/tag/v1.6.4) - 2019-01-15
20-
* BUGFIX
21-
* Fix SSH key now can be reused as public key after deleting as deploy key (#5671) (#5685)
22-
* When redirecting clean the path to avoid redirecting to external site (#5669) (#5703)
23-
* Fix to use correct value for "MSpan Structures Obtained" (#5706) (#5715)
24-
25-
## [1.7.0-rc2](https://github.com/go-gitea/gitea/releases/tag/v1.7.0-rc2) - 2019-01-04
26-
* SECURITY
27-
* Prevent DeleteFilePost doing arbitrary deletion (#5631)
9+
* Disable redirect for i18n (#5910) (#5916)
10+
* Only allow local login if password is non-empty (#5906) (#5908)
11+
* Fix go-get URL generation (#5905) (#5907)
12+
* BUGFIXES
13+
* Fix TLS errors when using acme/autocert for local connections (#5820) (#5826)
14+
* Request for public keys only if LDAP attribute is set (#5816) (#5819)
15+
* Fix delete correct temp directory (#5840) (#5839)
16+
* Fix an error while adding a dependency via UI (#5862) (#5876)
17+
* Fix null pointer in attempt to Sudo if not logged in (#5872) (#5884)
18+
* When creating new repository fsck option should be enabled (#5817) (#5885)
19+
* Prevent nil dereference in mailIssueCommentToParticipants (#5891) (#5895) (#5894)
20+
* Fix bug when read public repo lfs file (#5913) (#5912)
21+
* Respect value of REQUIRE_SIGNIN_VIEW (#5901) (#5915)
22+
* Fix compare button on upstream repo leading to 404 (#5877) (#5914)
23+
* DOCS
24+
* Added docs for the tree api (#5835)
25+
* MISC
26+
* Include Go toolchain to --version (#5832) (#5830)
2827

29-
## [1.6.3](https://github.com/go-gitea/gitea/releases/tag/v1.6.3) - 2019-01-04
28+
## [1.7.0](https://github.com/go-gitea/gitea/releases/tag/v1.7.0) - 2019-01-22
3029
* SECURITY
30+
* Do not display the raw OpenID error in the UI (#5705) (#5712)
31+
* When redirecting clean the path to avoid redirecting to external site (#5669) (#5679)
3132
* Prevent DeleteFilePost doing arbitrary deletion (#5631)
32-
* BUGFIX
33-
* Fix wrong text getting saved on editing second comment on an issue (#5608)
34-
35-
## [1.7.0-rc1](https://github.com/go-gitea/gitea/releases/tag/v1.7.0) - 2019-01-02
3633
* BREAKING
3734
* Restrict permission check on repositories and fix some problems (#5314)
3835
* Show only opened milestones on issues page milestone filter (#5051)
@@ -51,6 +48,13 @@ been added to each release, please refer to the [blog](https://blog.gitea.io).
5148
* Give user a link to create PR after push (#4716)
5249
* Add rebase with merge commit merge style (#3844) (#4052)
5350
* BUGFIXES
51+
* Disallow empty titles (#5785) (#5794)
52+
* Fix sqlite deadlock when assigning to a PR (#5640) (#5642)
53+
* Don't close issues via commits on non-default branch. (#5622) (#5643)
54+
* Fix commit page showing status for current default branch (#5650) (#5653)
55+
* Only count users own actions for heatmap contributions (#5647) (#5655)
56+
* Update xorm to fix issue postgresql dumping issues (#5680) (#5692)
57+
* Use correct value for "MSpan Structures Obtained" (#5706) (#5716)
5458
* Fix bug on modifying sshd username (#5624)
5559
* Delete tags in mirror which are removed for original repo. (#5609)
5660
* Fix wrong text getting saved on editing second comment on an issue. (#5608)
@@ -177,6 +181,18 @@ been added to each release, please refer to the [blog](https://blog.gitea.io).
177181
* Git-Trees API (#5403)
178182
* Only chown directories during docker setup if necessary. Fix #4425 (#5064)
179183

184+
## [1.6.4](https://github.com/go-gitea/gitea/releases/tag/v1.6.4) - 2019-01-15
185+
* BUGFIX
186+
* Fix SSH key now can be reused as public key after deleting as deploy key (#5671) (#5685)
187+
* When redirecting clean the path to avoid redirecting to external site (#5669) (#5703)
188+
* Fix to use correct value for "MSpan Structures Obtained" (#5706) (#5715)
189+
190+
## [1.6.3](https://github.com/go-gitea/gitea/releases/tag/v1.6.3) - 2019-01-04
191+
* SECURITY
192+
* Prevent DeleteFilePost doing arbitrary deletion (#5631)
193+
* BUGFIX
194+
* Fix wrong text getting saved on editing second comment on an issue (#5608)
195+
180196
## [1.6.2](https://github.com/go-gitea/gitea/releases/tag/v1.6.2) - 2018-12-21
181197
* SECURITY
182198
* Sanitize uploaded file names (#5571) (#5573)

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
###################################
33
#Build stage
4-
FROM golang:1.11-alpine3.8 AS build-env
4+
FROM golang:1.11-alpine3.9 AS build-env
55

66
ARG GITEA_VERSION
77
ARG TAGS="sqlite sqlite_unlock_notify"
@@ -18,7 +18,7 @@ WORKDIR ${GOPATH}/src/code.gitea.io/gitea
1818
RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \
1919
&& make clean generate build
2020

21-
FROM alpine:3.8
21+
FROM alpine:3.9
2222
LABEL maintainer="[email protected]"
2323

2424
EXPOSE 22 3000

0 commit comments

Comments
 (0)