aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Show review summary in pull requests (#5132)kolaente2018-11-228-2/+179
|
* support envs on external render commands (#5278)Lunny Xiao2018-11-201-5/+17
|
* add api for user to create org (#5268)Lunny Xiao2018-11-204-0/+137
| | | | | | | | | | | | | | | | * add api for user to create org * remove unused blank line on the swagger file end * fix create and add test * fix tests * fix routes of create org API * fix bug * add copyright heads
* dont' send assign webhooks when creating issue (#5365)Lunny Xiao2018-11-201-4/+5
|
* app.ini.sample: add ENABLE_USER_HEATMAP default config (#5362)Antoine GIRARD2018-11-201-0/+2
| | | Doc: https://github.com/go-gitea/gitea/blob/b97af15de67b04fd259bd70a4abbc873f12e9491/docs/content/doc/advanced/config-cheat-sheet.en-us.md#service-service
* Add raw blob endpoint to get objects by SHA ID (#5334)Peter Hoffmann2018-11-186-2/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Add raw blob endpoint This should make it possible to download raw blobs directly from /:repo/:username/raw/blob/:sha1 URLs. * fix: Make it work * As an SHA-ID is no path getRefNameFromPath can't be used to verify file specifying parameter * added relevant change in go-gitea/git #132 Signed-off-by: Berengar W. Lehr <Berengar.Lehr@kompetenztest.de> * Update Gopkg.lock Can't update all vendors due to errors Signed-off-by: Berengar W. Lehr <Berengar.Lehr@kompetenztest.de> * style: Add Gitea copyright header * feat: Added integration test for /repo/u/r/raw/blob * fix: correct year in copyright header
* [skip ci] Updated translations via CrowdinGiteaBot2018-11-181-0/+1
|
* Migration fixes for gogs (0.11.66) to gitea (1.6.0) #5318 (#5341)Florian Eitel2018-11-182-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | * Remove field from migration to support upgrades from older version That will ensure the field does not get queried in the Select if it does not exist yet: ``` [I] [SQL] SELECT "id", "repo_id", "index", "poster_id", "name", "content", "milestone_id", "priority", "assignee_id", "is_closed", "is_pull", "num_comments", "ref", "deadline_unix", "created_unix", "updated_unix [...itea/routers/init.go:60 GlobalInit()] [E] Failed to initialize ORM engine: migrate: do migrate: pq: column "ref" does not exist ``` see #5318 * Skip remove stale watcher migration if not required Otherwise the migration will fail if executed from a older database version without multiple IssueWatch feature. ``` 2018/11/11 23:51:14 [I] [SQL] SELECT DISTINCT "issue_watch"."user_id", "issue"."repo_id" FROM "issue_watch" INNER JOIN issue ON issue_watch.issue_id = issue.id WHERE (issue_watch.is_watching = $1) LIMIT 50 []int [...itea/routers/init.go:60 GlobalInit()] [E] Failed to initialize ORM engine: migrate: do migrate: pq: relation "issue_watch" does not exist ``` see #5318
* Set ACL on uploads (#5344)techknowlogick2018-11-161-0/+3
| | | To support https://github.com/go-gitea/infrastructure/pull/39
* [skip ci] Updated translations via CrowdinGiteaBot2018-11-161-0/+1
|
* added the ability to set labels on the "edit pull request" api (#5347)Lucien Kerl2018-11-161-0/+12
| | | Signed-off-by: Lucien Kerl <lucien.kerl@wuerth-it.com>
* Implement pasting image from clipboard for browsers that supports that (#5317)Lauris BH2018-11-141-0/+82
|
* [skip ci] Updated translations via CrowdinGiteaBot2018-11-151-1/+2
|
* Block registration based on email domain (#5157)Lanre Adelowo2018-11-147-0/+106
| | | * implement email domain whitelist
* Remove x/net/context vendor by using std package (#5202)Antoine GIRARD2018-11-1040-641/+1489
| | | | | | | | | | | | * Update dep github.com/markbates/goth * Update dep github.com/blevesearch/bleve * Update dep golang.org/x/oauth2 * Fix github.com/blevesearch/bleve to c74e08f039e56cef576e4336382b2a2d12d9e026 * Update dep golang.org/x/oauth2
* Fix create team, update team missing units (#5188)Lunny Xiao2018-11-107-2/+128
|
* [skip ci] Updated translations via CrowdinGiteaBot2018-11-091-17/+18
|
* Fix file edit change preview functionality (#5300)Lauris BH2018-11-092-4/+2
|
* [skip ci] Updated translations via CrowdinGiteaBot2018-11-0911-11/+0
|
* fix bug when users have serval teams with different units on different ↵Lunny Xiao2018-11-092-1/+11
| | | | repositories (#5307)
* Add option to disable automatic mirror syncing. (#5242)Jonas Bröms2018-11-083-4/+13
| | | Setting the interval to 0 will disable to automatic syncing.
* Fix U2F if gitea is configured in subpath (#5302)Lauris BH2018-11-081-9/+9
|
* Fix typo in configuration (#5295)Patrick Lühne2018-11-081-1/+1
| | | Signed-off-by: Patrick Lühne <patrick@luehne.de>
* [skip ci] Updated translations via CrowdinGiteaBot2018-11-072-1/+9
|
* Remove maxlines option for file logger (#5282)Lauris BH2018-11-072-22/+3
|
* Prometheus endpoint (#5256)Stanislav2018-11-04112-2973/+24655
| | | | | | | | | | | | | | | | | | | | | | | | | | * Add prometheus collector and route * dep ensure -add github.com/prometheus/client_golang/prometheus * dep ensure -update github.com/golang/protobuf * add metrics to reserved usernames * add comment head in metrics package * fix style imports * add metrics settings * add bearer token check * mapping metrics configs * fix lint * update config cheat sheet * update conf sample, typo fix
* Clean up docs (#5274)techknowlogick2018-11-043-5/+9
| | | | | | | | | | | | * make docs more clear * make docs more clear * Add analytics * Update customizing-gitea.en-us.md * Update app.ini.sample
* 1.6.0-rc2 changelog (#5276)techknowlogick2018-11-041-0/+17
|
* Add zeripath to maintainers (#5273)zeripath2018-11-041-0/+1
|
* Fix #5226 by adding CSRF checking to api reqToken and add CSRF to the POST ↵zeripath2018-11-035-10/+32
| | | | | | | | | | header for deadline (#5250) * Add CSRF checking to reqToken and place CSRF in the post for deadline creation Fixes #5226, #5249 * /api/v1/admin/users routes should have reqToken middleware
* Update gitignore list (#5258)Antoine GIRARD2018-11-0377-157/+765
| | | | | | | | * update gitignore * Handle symlink in tar * Add some logs
* Fixed wrong api request url for instances running in subfolders (#5247)kolaente2018-11-031-1/+1
|
* Fixed heatmap not working in mssql (#5248)kolaente2018-11-011-2/+4
|
* Update golang version in Dockerfile (#5246)Stanislav2018-11-011-1/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2018-11-011-9/+9
|
* Create AuthorizedKeysCommand (#5236)zeripath2018-11-017-19/+136
|
* Keys API changes (#4960)zeripath2018-10-316-14/+276
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add private information to the deploy keys api This commit adds more information to the deploy keys to allow for back reference in to the main keys list. It also adds information about the repository that the key is referring to. Signed-off-by: Andrew Thornton <art27@cantab.net> * Add private information to the user keys API This adjusts the keys API to give out private information to user keys if the current user is the owner or an admin. Signed-off-by: Andrew Thornton <art27@cantab.net> * Add ability to search keys by fingerprint This commit adds the functionality to search ssh-keys by fingerprint of the ssh-key. Deploy keys per repository can also be searched. There is no current clear API point to allow search of all deploy keys by fingerprint or keyID. Signed-off-by: Andrew Thornton <art27@cantab.net> * Add integration test
* fix: Accept web-command cli flags if web-command is commited (#5200)Peter Hoffmann2018-10-311-1/+1
| | | | | | | | | | | | | | | * fix: Accept web-command cli flags if web-command is commited * Added flags of default cmd CmdWeb to app-wide flags * If command *is* specified app-wide flags are ignored Resolves: #5065 Signed-off-by: Berengar W. Lehr <Berengar.Lehr@kompetenztest.de> * Removed style breaking newline * broken windows need to be fixed * provides requested change
* Update API link in README (#5241)Jonas Bröms2018-10-311-1/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2018-10-311-0/+7
|
* fix compatibility heatmap with mysql 8 (#5232)Stanislav2018-10-311-1/+1
|
* Add command for migrating database (#4954)Robert Ștefan2018-10-302-0/+53
|
* Add changelog for 1.5.3 release (#5227)Lauris BH2018-10-301-0/+4
|
* Fix issue where ecdsa and other key types are not synced from LDAP (#5092) ↵Jerry Jacobs2018-10-302-1/+4
| | | | | | | | | | (#5094) * Fix issue where ecdsa and other key types are not synced from LDAP authentication provider fixes #5092 * integrations/auth_ldap_test.go: Add Hermes Conrad new ecdsa-sha2-nistp256 publickey fingerprint * integrations/auth_ldap_test.go: Use ssh-keygen -lf <filename> -E sha256
* Fix markdown image with link (#4675)L.E.R2018-10-302-22/+21
| | | | | | | | | | * Fix markdown image with link * Add gitea copyright notice * add a test for markdown image with link * remove svg related variables
* This commit will reduce join star, repo_topic, topic tables on repo search, ↵Lunny Xiao2018-10-302-37/+17
| | | | | | | | so that fix extra columns problem on mssql (#5136) * This commit will reduce join star, repo_topic, topic tables on repo search, so that fix extra columns problem on mssql * fix tests
* Generate random password (#5023)Lanre Adelowo2018-10-301-2/+32
| | | | | | | | * add random-password flag * run make fmt * add length cli flag rather than use a default value
* only chown directories during docker setup if necessary. Fix #4425 (#5064)Fabian Braun2018-10-301-1/+4
| | | Signed-off-by: Fabian Braun <fabian-braun@mailbox.org>
* [skip ci] Updated translations via CrowdinGiteaBot2018-10-301-0/+1
|
* Add AutoHead functionality. (#5186)zeripath2018-10-301-0/+1
| | | Fixes #5153