Skip to content

Commit 68ffb7a

Browse files
authored
Merge branch 'main' into wait-on-empty
2 parents cff032f + a2df265 commit 68ffb7a

File tree

143 files changed

+166
-13755
lines changed

Some content is hidden

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

143 files changed

+166
-13755
lines changed

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,56 @@ 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.14.2](https://github.com/go-gitea/gitea/releases/tag/v1.14.2) - 2021-05-09
8+
9+
* API
10+
* Make change repo settings work on empty repos (#15778) (#15789)
11+
* Add pull "merged" notification subject status to API (#15344) (#15654)
12+
* BUGFIXES
13+
* Ensure that ctx.Written is checked after issues(...) calls (#15797) (#15798)
14+
* Use pulls in commit graph unless pulls are disabled (#15734 & #15740 & #15774) (#15775)
15+
* Set GIT_DIR correctly if it is not set (#15751) (#15769)
16+
* Fix bug where repositories appear unadopted (#15757) (#15767)
17+
* Not show `ref-in-new-issue` pop when issue was disabled (#15761) (#15765)
18+
* Drop back to use IsAnInteractiveSession for SVC (#15749) (#15762)
19+
* Fix setting version table in dump (#15753) (#15759)
20+
* Fix close button change on delete in simplemde area (#15737) (#15747)
21+
* Defer closing the gitrepo until the end of the wrapped context functions (#15653) (#15746)
22+
* Fix some ui bug about draft release (#15137) (#15745)
23+
* Only log Error on getLastCommitStatus error to let pull list still be visible (#15716) (#15715)
24+
* Move tooltip down to allow selection of Remove File on error (#15672) (#15714)
25+
* Fix setting redis db path (#15698) (#15708)
26+
* Fix DB session cleanup (#15697) (#15700)
27+
* Fixed several activation bugs (#15473) (#15685)
28+
* Delete references if repository gets deleted (#15681) (#15684)
29+
* Fix orphaned objects deletion bug (#15657) (#15683)
30+
* Delete protected branch if repository gets removed (#15658) (#15676)
31+
* Remove spurious set name from eventsource.sharedworker.js (#15643) (#15652)
32+
* Not update updated uinx for `git gc` (#15637) (#15641)
33+
* Fix commit graph author link (#15627) (#15630)
34+
* Fix webhook timeout bug (#15613) (#15621)
35+
* Resolve panic on failed interface conversion in migration v156 (#15604) (#15610)
36+
* Fix missing storage init (#15589) (#15598)
37+
* If the default branch is not present do not report error on stats indexing (#15546 & #15583) (#15594)
38+
* Fix lfs management find (#15537) (#15578)
39+
* Fix NPE on view commit with notes (#15561) (#15573)
40+
* Fix bug on commit graph (#15517) (#15530)
41+
* Send size to /avatars if requested (#15459) (#15528)
42+
* Prevent migration 156 failure if tag commit missing (#15519) (#15527)
43+
* ENHANCEMENTS
44+
* Display conflict-free merge messages for pull requests (#15773) (#15796)
45+
* Exponential Backoff for ByteFIFO (#15724) (#15793)
46+
* Issue list alignment tweaks (#15483) (#15766)
47+
* Implement delete release attachments and update release attachments' name (#14130) (#15666)
48+
* Add placeholder text to deploy key textarea (#15575) (#15576)
49+
* Project board improvements (#15429) (#15560)
50+
* Repo branch page: label size, PR ref, new PR button alignment (#15363) (#15365)
51+
* MISC
52+
* Fix webkit calendar icon color on arc-green (#15713) (#15728)
53+
* Performance improvement for last commit cache and show-ref (#15455) (#15701)
54+
* Bump unrolled/render to v1.1.0 (#15581) (#15608)
55+
* Add ETag header (#15370) (#15552)
56+
757
## [1.14.1](https://github.com/go-gitea/gitea/releases/tag/v1.14.1) - 2021-04-15
858

959
* BUGFIXES

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,10 @@ errcheck:
282282

283283
.PHONY: revive
284284
revive:
285-
GO111MODULE=on $(GO) run -mod=vendor build/lint.go -config .revive.toml -exclude=./vendor/... ./... || exit 1
285+
@hash revive > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
286+
GO111MODULE=off $(GO) get -u github.com/mgechev/revive; \
287+
fi
288+
@revive -config .revive.toml -exclude=./vendor/... ./...
286289

287290
.PHONY: misspell-check
288291
misspell-check:

build.go

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,6 @@ package main
1010
// These libraries will not be included in a normal compilation.
1111

1212
import (
13-
// for lint
14-
_ "github.com/mgechev/dots"
15-
_ "github.com/mgechev/revive/formatter"
16-
_ "github.com/mgechev/revive/lint"
17-
_ "github.com/mgechev/revive/rule"
18-
_ "github.com/mitchellh/go-homedir"
19-
_ "github.com/pelletier/go-toml"
20-
2113
// for embed
2214
_ "github.com/shurcooL/vfsgen"
2315

0 commit comments

Comments
 (0)