- 02 Dec, 2018 3 commits
-
-
romankl authored
right now the `closed_at` field for json responses is not filled during the `APIIssue` creation for api responses. For a closed issue you get a result like: ```json "state":"open","comments":0,"created_at":"2018-11-29T16:39:24+01:00", "updated_at":"2018-11-30T10:49:19+01:00","closed_at":null, "due_date":null,"pull_request":null} ``` which has no information about the closing date. (which exists in the db and ui) with this PR the result changes to this: ```json :null,"assignee":null,"assignees":null, "state":"closed", "comments":0,"created_at":"2018-11-29T16:43:05+01:00", "updated_at":"2018-12-02T19:17:05+01:00", "closed_at":"2018-12-02T19:17:05+01:00", "due_date":null,"pull_request":null} ``` fixes: https://github.com/go-gitea/gitea/issues/5446 Signed-off-by:
Roman <romaaan.git@gmail.com>
-
Lanre Adelowo authored
-
romankl authored
right now, the url is displayed with an anchor tag with no classes. If the url is really really long, the url will break out of the containing div and (depending on the url length) the browser shows the horizontal scrollbar. This pr makes use of the already existing css class `dont-break-out` which gives all the anchor the necessary properties to prevent the break. Another solution could be to introduce some classes like `text text-break-word`, but that would duplicate the `dont-break-out` class just for text elements that use the `text` class. fixes: https://github.com/go-gitea/gitea/issues/5416 Signed-off-by:
Roman <romaaan.git@gmail.com>
-
- 30 Nov, 2018 1 commit
-
-
Lunny Xiao authored
-
- 26 Nov, 2018 1 commit
-
-
Lauris BH authored
-
- 24 Nov, 2018 1 commit
-
-
Daniel Balko authored
Backported #5383 on v1.6: API: '/orgs/:org/repos': return private repos with read access (#5310) (#3829) (#5393) Signed-off-by:
Daniel Balko <inxonic+github@gmail.com>
-
- 23 Nov, 2018 1 commit
-
-
Lunny Xiao authored
* add changelog of v1.6.0 * improve changelog
-
- 21 Nov, 2018 1 commit
-
-
Lunny Xiao authored
-
- 18 Nov, 2018 1 commit
-
-
Florian Eitel authored
* 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
-
- 11 Nov, 2018 1 commit
-
-
Lunny Xiao authored
-
- 10 Nov, 2018 1 commit
-
-
Lauris BH authored
-
- 09 Nov, 2018 2 commits
-
-
Lunny Xiao authored
-
Lauris BH authored
-
- 08 Nov, 2018 2 commits
- 07 Nov, 2018 2 commits
- 04 Nov, 2018 2 commits
-
-
techknowlogick authored
-
zeripath authored
* 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
-
- 03 Nov, 2018 1 commit
-
-
kolaente authored
-
- 01 Nov, 2018 2 commits
-
-
Peter Hoffmann authored
* Added flags of default cmd CmdWeb to app-wide flags * If command *is* specified app-wide flags are ignored Backport of #5200 Signed-off-by:
Berengar W. Lehr <Berengar.Lehr@kompetenztest.de>
-
Lunny Xiao authored
This commit will reduce join star, repo_topic, topic tables on repo search, so that fix extra columns problem on mssql (#5136) (#5229) * This commit will reduce join star, repo_topic, topic tables on repo search, so that fix extra columns problem on mssql * fix tests
-
- 31 Oct, 2018 1 commit
-
-
Lunny Xiao authored
-
- 30 Oct, 2018 4 commits
-
-
Peter Hoffmann authored
* Updated dependency manager via `dep ensure -update code.gitea.io/sdk` * Gopkg.toml was not changed as sdk version is set to "master" * affects webhooks for: Delete, Fork, IssueComment, Release * also contains changes from go-gitea/go-sdk#125 and hence a swagger update Signed-off-by:
Berengar W. Lehr <Berengar.Lehr@kompetenztest.de> Resolves: #4732, #5173
-
Lunny Xiao authored
-
Kim "BKC" Carlbäcker authored
-
Lunny Xiao authored
* fix race on updatesize * fix more repoPath
-
- 29 Oct, 2018 2 commits
-
-
Rodrigo Villablanca Vásquez authored
-
Lunny Xiao authored
-
- 25 Oct, 2018 1 commit
-
-
Lunny Xiao authored
* fix sqlite lock * fix sqlite lock on getUnitType
-
- 23 Oct, 2018 1 commit
-
-
Jonas Franz authored
* Add comment replies Signed-off-by:
Jonas Franz <info@jonasfranz.software> * Use review.ID instead Signed-off-by:
Jonas Franz <info@jonasfranz.software>
-
- 22 Oct, 2018 1 commit
-
-
Filip Navara authored
`show` is keyword in MySQL and has to be quoted to reference a column name. Use grave accents (ASCII code 96) for quoting to match rest of the source code. It's non-standard SQL, but it's supported by SQLite and MySQL. Signed-off-by:
Filip Navara <navara@emclient.com>
-
- 18 Oct, 2018 1 commit
-
-
kolaente authored
+ Named groups in reges for easier group parsing
-
- 17 Oct, 2018 5 commits
-
-
BetaCat authored
-
GiteaBot authored
-
Lunny Xiao authored
* add change log for 1.6.0-rc1 * Fix some uppercases
-
GiteaBot authored
-
BetaCat authored
-
- 16 Oct, 2018 1 commit
-
-
Lauris BH authored
-
- 15 Oct, 2018 1 commit
-
-
BetaCat authored
-