Skip to content

Commit 4136762

Browse files
Merge branch 'master' into remote-internal-token
2 parents cfe8054 + 830ae61 commit 4136762

File tree

297 files changed

+12761
-4816
lines changed

Some content is hidden

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

297 files changed

+12761
-4816
lines changed

.drone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ pipeline:
252252
branch: [ master ]
253253

254254
static:
255-
image: karalabe/xgo-latest:latest
255+
image: techknowlogick/xgo:latest
256256
pull: true
257257
environment:
258258
TAGS: bindata sqlite sqlite_unlock_notify

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ 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.2](https://github.com/go-gitea/gitea/releases/tag/v1.7.2) - 2019-02-14
8+
* BUGFIXES
9+
* Remove all CommitStatus when a repo is deleted (#5940) (#5941)
10+
* Fix notifications on pushing with deploy keys by setting hook environment variables (#5935) (#5944)
11+
* Silence console logger in gitea serv (#5887) (#5943)
12+
* Handle milestone webhook events for issues and PR (#5947) (#5955)
13+
* Show user who created the repository instead of the organization in action feed (#5948) (#5956)
14+
* Fix ssh deploy and user key constraints (#1357) (#5939) (#5966)
15+
* Fix bug when deleting a linked account will removed all (#5989) (#5990)
16+
* Fix empty ssh key importing in ldap (#5984) (#6009)
17+
* Fix metrics auth token detection (#6006) (#6017)
18+
* Create repository on organisation by default on its dashboard (#6026) (#6048)
19+
* Make sure labels are actually returned in API (#6053) (#6059)
20+
* Switch to more recent build of xgo (#6070) (#6072)
21+
* In basic auth check for tokens before call UserSignIn (#5725) (#6083)
22+
723
## [1.7.1](https://github.com/go-gitea/gitea/releases/tag/v1.7.1) - 2019-01-31
824
* SECURITY
925
* Disable redirect for i18n (#5910) (#5916)

Gopkg.lock

Lines changed: 29 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ ignored = ["google.golang.org/appengine*"]
1515
name = "code.gitea.io/sdk"
1616

1717
[[constraint]]
18-
# branch = "master"
19-
revision = "c74e08f039e56cef576e4336382b2a2d12d9e026"
18+
revision = "05d86ea8f6e30456949f612cf68cf4a27ce8c9c5"
2019
name = "github.com/blevesearch/bleve"
21-
#Not targetting v0.7.0 since standard where use only just after this tag
2220

2321
[[constraint]]
2422
revision = "12dd70caea0268ac0d6c2707d0611ef601e7c64e"
@@ -97,8 +95,8 @@ ignored = ["google.golang.org/appengine*"]
9795
version = "1.31.1"
9896

9997
[[constraint]]
100-
name = "gopkg.in/ldap.v2"
101-
version = "2.4.1"
98+
name = "gopkg.in/ldap.v3"
99+
version = "3.0.1"
102100

103101
[[constraint]]
104102
name = "gopkg.in/macaron.v1"
@@ -108,11 +106,6 @@ ignored = ["google.golang.org/appengine*"]
108106
name = "gopkg.in/testfixtures.v2"
109107
version = "2.0.0"
110108

111-
[[override]]
112-
name = "github.com/boltdb/bolt"
113-
revision = "ccd680d8c1a0179ac3d68f692b01e1a1589cbfc7"
114-
source = "github.com/go-gitea/bolt"
115-
116109
[[override]]
117110
branch = "master"
118111
name = "golang.org/x/oauth2"

custom/conf/app.ini.sample

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ MAX_FILES = 5
6969
; List of prefixes used in Pull Request title to mark them as Work In Progress
7070
WORK_IN_PROGRESS_PREFIXES=WIP:,[WIP]
7171

72+
[repository.issue]
73+
; List of reasons why a Pull Request or Issue can be locked
74+
LOCK_REASONS=Too heated,Off-topic,Resolved,Spam
75+
7276
[ui]
7377
; Number of repositories that are displayed on one explore page
7478
EXPLORE_PAGING_NUM = 20
@@ -351,6 +355,11 @@ DEFAULT_KEEP_EMAIL_PRIVATE = false
351355
; Default value for AllowCreateOrganization
352356
; Every new user will have rights set to create organizations depending on this setting
353357
DEFAULT_ALLOW_CREATE_ORGANIZATION = true
358+
; Either "public", "limited" or "private", default is "public"
359+
; Limited is for signed user only
360+
; Private is only for member of the organization
361+
; Public is for everyone
362+
DEFAULT_ORG_VISIBILITY = public
354363
; Default value for EnableDependencies
355364
; Repositories will use dependencies by default depending on this setting
356365
DEFAULT_ENABLE_DEPENDENCIES = true

docs/content/doc/advanced/config-cheat-sheet.en-us.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`.
7171
- `WORK_IN_PROGRESS_PREFIXES`: **WIP:,\[WIP\]**: List of prefixes used in Pull Request
7272
title to mark them as Work In Progress
7373

74+
### Repository - Issue (`repository.issue`)
75+
- `LOCK_REASONS`: **Too heated,Off-topic,Resolved,Spam**: A list of reasons why a Pull Request or Issue can be locked
76+
7477
## UI (`ui`)
7578

7679
- `EXPLORE_PAGING_NUM`: **20**: Number of repositories that are shown in one explore page.
@@ -147,7 +150,7 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`.
147150
- `PATH`: **data/gitea.db**: For SQLite3 only, the database file path.
148151
- `LOG_SQL`: **true**: Log the executed SQL.
149152
- `DB_RETRIES`: **10**: How many ORM init / DB connect attempts allowed.
150-
- `DB_RETRY_BACKOFF`: **3s*: time.Duration to wait before trying another ORM init / DB connect attempt, if failure occured.
153+
- `DB_RETRY_BACKOFF`: **3s**: time.Duration to wait before trying another ORM init / DB connect attempt, if failure occured.
151154

152155
## Indexer (`indexer`)
153156

@@ -203,12 +206,13 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`.
203206
- `CAPTCHA_TYPE`: **image**: \[image, recaptcha\]
204207
- `RECAPTCHA_SECRET`: **""**: Go to https://www.google.com/recaptcha/admin to get a secret for recaptcha.
205208
- `RECAPTCHA_SITEKEY`: **""**: Go to https://www.google.com/recaptcha/admin to get a sitekey for recaptcha.
206-
- `DEFAULT_ENABLE_DEPENDENCIES`: **true** Enable this to have dependencies enabled by default.
207-
- `ENABLE_USER_HEATMAP`: **true** Enable this to display the heatmap on users profiles.
209+
- `DEFAULT_ENABLE_DEPENDENCIES`: **true**: Enable this to have dependencies enabled by default.
210+
- `ENABLE_USER_HEATMAP`: **true**: Enable this to display the heatmap on users profiles.
208211
- `EMAIL_DOMAIN_WHITELIST`: **\<empty\>**: If non-empty, list of domain names that can only be used to register
209212
on this instance.
210213
- `SHOW_REGISTRATION_BUTTON`: **! DISABLE\_REGISTRATION**: Show Registration Button
211-
- `AUTO_WATCH_NEW_REPOS`: **true** Enable this to let all organisation users watch new repos when they are created
214+
- `AUTO_WATCH_NEW_REPOS`: **true**: Enable this to let all organisation users watch new repos when they are created
215+
- `DEFAULT_ORG_VISIBILITY`: **public**: Set default visibility mode for organisations, either "public", "limited" or "private".
212216

213217
## Webhook (`webhook`)
214218

docs/content/doc/features/comparison.en-us.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ _Symbols used in table:_
8181
| Related issues ||||||||
8282
| Confidential issues ||||||||
8383
| Comment reactions ||||||||
84-
| Lock Discussion | |||||||
84+
| Lock Discussion | |||||||
8585
| Batch issue handling ||||||||
8686
| Issue Boards ||||||||
8787
| Create new branches from issues ||||||||

0 commit comments

Comments
 (0)