Skip to content

Commit 5a8474d

Browse files
committed
Merge branch 'master' into user-repo-unit
2 parents dc8ef08 + 15614a8 commit 5a8474d

File tree

773 files changed

+254336
-12324
lines changed

Some content is hidden

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

773 files changed

+254336
-12324
lines changed

.changelog.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1+
# The full repository name
12
repo: go-gitea/gitea
3+
4+
# Service type (gitea or github)
5+
service: github
6+
7+
# Base URL for Gitea instance if using gitea service type (optional)
8+
# Default: https://gitea.com
9+
base-url:
10+
11+
# Changelog groups and which labeled PRs to add to each group
212
groups:
313
-
414
name: BREAKING
@@ -42,3 +52,6 @@ groups:
4252
-
4353
name: MISC
4454
default: true
55+
56+
# regex indicating which labels to skip for the changelog
57+
skip-labels: skip-changelog|backport\/.+

.drone.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,12 @@ services:
8686
pull: default
8787
image: gitea/test-openldap:latest
8888

89+
- name: elasticsearch
90+
pull: default
91+
environment:
92+
discovery.type: single-node
93+
image: elasticsearch:7.5.0
94+
8995
steps:
9096
- name: fetch-tags
9197
pull: default

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ extends:
44
- eslint-config-airbnb-base
55
- eslint:recommended
66

7+
ignorePatterns:
8+
- /web_src/js/vendor
9+
710
parserOptions:
811
ecmaVersion: 2020
912

@@ -15,7 +18,6 @@ env:
1518

1619
globals:
1720
__webpack_public_path__: true
18-
Clipboard: false
1921
CodeMirror: false
2022
Dropzone: false
2123
emojify: false
@@ -31,6 +33,7 @@ rules:
3133
default-case: [0]
3234
func-names: [0]
3335
import/extensions: [0]
36+
import/prefer-default-export: [0]
3437
max-len: [0]
3538
newline-per-chained-call: [0]
3639
no-alert: [0]

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ coverage.all
7373
/public/js
7474
/public/css
7575
/public/fomantic
76+
/public/img/svg
7677

7778
# Snapcraft
7879
snap/.snapcraft/
@@ -83,3 +84,6 @@ prime/
8384
*.snap-build
8485
*_source.tar.bz2
8586
.DS_Store
87+
88+
# Make evidence files
89+
/.make_evidence

.golangci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,6 @@ issues:
9595
- linters:
9696
- misspell
9797
text: '`Unknwon` is a misspelling of `Unknown`'
98+
- path: models/update.go
99+
linters:
100+
- unused

.stylelintrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
extends: stylelint-config-standard
22

3+
ignoreFiles:
4+
- web_src/less/vendor/**/*
5+
36
rules:
7+
at-rule-empty-line-before: null
48
block-closing-brace-empty-line-before: null
59
color-hex-length: null
610
comment-empty-line-before: null

CHANGELOG.md

Lines changed: 68 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,76 @@ 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.11.0-RC2](https://github.com/go-gitea/gitea/releases/tag/v1.11.0-rc2) - 2020-01-18
7+
## [1.11.0](https://github.com/go-gitea/gitea/releases/tag/v1.11.0) - 2020-02-10
88
* BREAKING
9+
* Fix followers and following tabs in profile (#10202) (#10203)
910
* Make CertFile and KeyFile relative to CustomPath (#9868) (#9874)
11+
* Remove unused endpoints (#9538)
12+
* Prefix all user-generated IDs in markup (#9477)
13+
* Enforce Gitea environment for pushes (#8982)
14+
* Hide some user information via API if user have not enough permissions (#8655)
15+
* Move startpage/homepage translation to crowdin (#8596)
1016
* SECURITY
1117
* Never allow an empty password to validate (#9682) (#9683)
1218
* Prevent redirect to Host (#9678) (#9679)
19+
* Swagger hide search field (#9554)
20+
* Add "search" to reserved usernames (#9063)
21+
* Switch to fomantic-ui (#9374)
22+
* Only serve attachments when linked to issue/release and if accessible by user (#9340)
23+
* FEATURES
24+
* Webhooks should only show sender if it makes sense (#9601)
25+
* Provide Default messages for merges (#9393)
26+
* Add description to labels on create issue (#9392)
27+
* Graceful Queues: Issue Indexing and Tasks (#9363)
28+
* Default NO_REPLY_ADDRESS to DOMAIN (#9325)
29+
* Allow FCGI over unix sockets (#9298)
30+
* Graceful: Xorm, RepoIndexer, Cron and Others (#9282)
31+
* Add API for Reactions (#9220)
32+
* Graceful: Cancel Process on monitor pages & HammerTime (#9213)
33+
* Graceful: Allow graceful restart for unix sockets (#9113)
34+
* Graceful: Allow graceful restart for fcgi (#9112)
35+
* Sign protected branches (#8993)
36+
* Add Graceful shutdown for Windows and hooks for shutdown of goroutines (#8964)
37+
* Add Gitea icon to Emojis (#8950)
38+
* Expand/Collapse Files and Blob Excerpt while Reviewing/Comparing code (#8924)
39+
* Allow Custom Reactions (#8886)
40+
* Close/reopen issues by keywords in titles and comments (#8866)
41+
* Allow incompletely specified Time Formats (#8816)
42+
* Prevent upload (overwrite) of lfs locked file (#8769)
43+
* Template Repositories (#8768)
44+
* Add /milestones endpoint (#8733)
45+
* Make repository management section handle lfs locks (#8726)
46+
* Respect LFS File Lock on UI (#8719)
47+
* Add team option to grant rights for all organization repositories (#8688)
48+
* Enabling and disabling the commit button to prevent empty commits (web editor) (#8590)
49+
* Add setting to disable BASIC authentication (#8586)
50+
* Expose db.SetMaxOpenConns and allow non MySQL dbs to set conn pool params (#8528)
51+
* Allow Protected Branches to Whitelist Deploy Keys (#8483)
52+
* Push to create repo (#8419)
53+
* Sign merges, CRUD, Uncyclo and Repository initialisation with gpg key (#7631)
54+
* Add basic repository lfs management (#7199)
1355
* BUGFIXES
56+
* Fix code-expansion arc-green theme bug (#10180) (#10185)
57+
* Prevent double wait-group decrement (#10170) (#10175)
58+
* Allow emoji on review head comments (#10159) (#10174)
59+
* Fix issue/pull link (#10158) (#10173)
60+
* Fix push-create SSH bugs (#10145) (#10151)
61+
* Prevent DeleteUser API abuse (#10125) (#10128)
62+
* Fix issues/pulls dashboard paging error (#10114) (#10115)
63+
* Add button to revert SimpleMDE to plain textarea (#10099) (#10102)
64+
* Fix branch page pull request title and link error (#10092) (#10097)
65+
* Fix PR API: Only try to get HeadBranch if HeadRepo exist (#10029) (#10088)
66+
* Update topics repo count when deleting repository (#10051) (#10081)
67+
* Show pull icon on pull requests (#10061) (#10062)
68+
* Fix milestone API state parameter unhandled (#10049) (#10052)
69+
* Move to using a temporary repo for pushing new PRs (#10009) (#10042)
70+
* Fix wiki raw view on sub path (#10002) (#10040)
71+
* Ensure that feeds are appropriately restricted (#10018) (#10019)
72+
* Sanitize credentials in mirror form (#9975) (#9991)
73+
* Close related pull requests when deleting head repository or head branch (#9927) (#9974)
74+
* Switch to use -f instead of -F for sendmail (#9961) (#9970)
75+
* Fix file rename/copy not supported by indexer (#9965) (#9967)
76+
* Fix repo indexer not updating upon push (#9957) (#9963)
1477
* Don't convert ellipsis in markdown (#9905) (#9937)
1578
* Fixed repo link in generated comment for cross repository dependency (#9863) (#9935)
1679
* Check if diff actually contains sections when rendering (#9926) (#9933)
@@ -24,7 +87,6 @@ been added to each release, please refer to the [blog](https://blog.gitea.io).
2487
* Allow hyphen in language name (#9873) (#9880)
2588
* Ensure that 2fa is checked on reset-password (#9857) (#9876)
2689
* Fix issues/pulls dependencies problems (#9842) (#9864)
27-
* Explicitly refer to PR in squash-merge commit message in case of external tracker (#9844) (#9855)
2890
* Fix markdown anchor links (#9673) (#9840)
2991
* Allow assignee on Pull Creation when Issue Unit is deactivated (#9836) (#9837)
3092
* Fix download file wrong content-type (#9825) (#9834)
@@ -53,53 +115,6 @@ been added to each release, please refer to the [blog](https://blog.gitea.io).
53115
* Add HTML URL to API Issues (#9654) (#9661)
54116
* Add PR review webhook to Telegram (#9653) (#9655)
55117
* Use filepath.IsAbs instead of path.IsAbs (#9651) (#9652)
56-
* TRANSLATION
57-
* Fix Korean locales (#9761) (#9780)
58-
* BUILD
59-
* Fix webpack polyfills (#9735) (#9738)
60-
* MISC
61-
* Backport Locales [2020-01-14] (#9773)
62-
63-
## [1.11.0-RC1](https://github.com/go-gitea/gitea/releases/tag/v1.11.0-rc1) - 2020-01-07
64-
* BREAKING
65-
* Remove unused endpoints (#9538)
66-
* Prefix all user-generated IDs in markup (#9477)
67-
* Enforce Gitea environment for pushes (#8982)
68-
* Hide some user information via API if user have no enough permission (#8655)
69-
* Move startpage/homepage translation to crowdin (#8596)
70-
* FEATURES
71-
* Webhooks should only show sender if it makes sense (#9601)
72-
* Provide Default messages for merges (#9393)
73-
* Add description to labels on create issue (#9392)
74-
* Graceful Queues: Issue Indexing and Tasks (#9363)
75-
* Default NO_REPLY_ADDRESS to DOMAIN (#9325)
76-
* Allow FCGI over unix sockets (#9298)
77-
* Graceful: Xorm, RepoIndexer, Cron and Others (#9282)
78-
* Add API for Reactions (#9220)
79-
* Graceful: Cancel Process on monitor pages & HammerTime (#9213)
80-
* Graceful: Allow graceful restart for unix sockets (#9113)
81-
* Graceful: Allow graceful restart for fcgi (#9112)
82-
* Sign protected branches (#8993)
83-
* Add Graceful shutdown for Windows and hooks for shutdown of goroutines (#8964)
84-
* Add Gitea icon to Emojis (#8950)
85-
* Expand/Collapse Files and Blob Excerpt while Reviewing/Comparing code (#8924)
86-
* Allow Custom Reactions (#8886)
87-
* Close/reopen issues by keywords in titles and comments (#8866)
88-
* Allow incompletely specified Time Formats (#8816)
89-
* Prevent upload (overwrite) of lfs locked file (#8769)
90-
* Template Repositories (#8768)
91-
* Add /milestones endpoint (#8733)
92-
* Make repository management section handle lfs locks (#8726)
93-
* Respect LFS File Lock on UI (#8719)
94-
* Add team option to grant rights for all organization repositories (#8688)
95-
* Enabling and disabling the commit button to prevent empty commits (web editor) (#8590)
96-
* Add setting to disable BASIC authentication (#8586)
97-
* Expose db.SetMaxOpenConns and allow non MySQL dbs to set conn pool params (#8528)
98-
* Allow Protected Branches to Whitelist Deploy Keys (#8483)
99-
* Push to create repo (#8419)
100-
* Sign merges, CRUD, Uncyclo and Repository initialisation with gpg key (#7631)
101-
* Add basic repository lfs management (#7199)
102-
* BUGFIXES
103118
* Disable remove button on repository teams when have access to all (#9640)
104119
* Clean up old references on branch delete (#9614)
105120
* Hide public repos owned by private orgs (#9609)
@@ -231,6 +246,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.io).
231246
* Fix migrate mirror 500 bug (#8526)
232247
* Fix password complexity regex for special characters (on master) (#8525)
233248
* ENHANCEMENTS
249+
* Explicitly refer to PR in squash-merge commit message in case of external tracker (#9844) (#9855)
234250
* Add a /user/login landing page option (#9622)
235251
* Some more e-mail notification fixes (#9596)
236252
* Add branch protection option to block merge on requested changes. (#9592)
@@ -347,12 +363,6 @@ been added to each release, please refer to the [blog](https://blog.gitea.io).
347363
* wiki - add 'write' 'preview' buttons to wiki edit like in issues (#7241)
348364
* Change target branch for pull request (#6488)
349365
* Display PR commits and diffs using base repo rather than forked (#3648)
350-
* SECURITY
351-
* Swagger hide search field (#9554)
352-
* Add "search" to reserved usernames (#9063)
353-
* Switch to fomantic-ui (#9374)
354-
* Only serve attachments when linked to issue/release and if accessible by user (#9340)
355-
* Hide credentials when submitting migration through API (#9102)
356366
* TESTING
357367
* Add debug option to serv to help debug problems (#9492)
358368
* Fix the intermittent TestGPGGit failures (#9360)
@@ -366,10 +376,12 @@ been added to each release, please refer to the [blog](https://blog.gitea.io).
366376
* Update Github Migration Tests (#8893) (#8938)
367377
* Update heatmap fixtures to restore tests (#8615)
368378
* TRANSLATION
379+
* Fix Korean locales (#9761) (#9780)
369380
* Fix placeholders in the error message (#9060)
370381
* Fix spelling of admin.users.max_repo_creation (#8934)
371382
* Improve german translation of homepage (#8549)
372383
* BUILD
384+
* Fix webpack polyfills (#9735) (#9738)
373385
* Update gitea.com/macaron to 1.4.0 (#9608)
374386
* Upgrade lato fonts to v16. (#9498)
375387
* Update alpine to 3.11 (#9440)
@@ -400,6 +412,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.io).
400412
* Update the provided gitea.service to mention socket activation (#8531)
401413
* Doc added how to setup email (#8520)
402414
* MISC
415+
* Backport Locales [2020-01-14] (#9773)
403416
* Add translatable Powered by Gitea text in footer (#9600)
404417
* Add contrib/environment-to-ini (#9519)
405418
* Remove unnecessary loading of settings in update hook (#9496)

0 commit comments

Comments
 (0)