summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update Changelog (#18047)v1.15.8zeripath2021-12-203-4/+8
|
* Fix delete u2f keys bug (#18042)Lunny Xiao2021-12-202-3/+3
| | | | Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
* Move POST /{username}/action/{action} to simply POST /{username} (#18045) ↵zeripath2021-12-203-7/+5
| | | | | | | | | | | | | | (#18046) Backport #18045 The current code unfortunately requires that `action` be a reserved repository name as it prevents posts to change the settings for action repositories. However, we can simply change action handler to work on POST /{username} instead. Fix #18037 Signed-off-by: Andrew Thornton <art27@cantab.net>
* Reset Session ID on login (#18018) (#18041)zeripath2021-12-2011-31/+148
| | | | | | | | | | Backport #18018 When logging in the SessionID should be reset and the session cleaned up. Also logs the user in on completion of linking account Signed-off-by: Andrew Thornton <art27@cantab.net>
* Prevent off-by-one error on comments on newly appended lines (#18029) (#18035)zeripath2021-12-202-0/+53
| | | | | | | | | | | | | | | | | | | | | | | | * Prevent off-by-one error on comments on newly appended lines (#18029) Backport #18029 There was a bug in CutDiffAroundLine whereby if a file without a terminal new line has a patch which appends lines to it and a comment is placed on one of those lines the comment diff will be a line out of place. This fixes CutDiffAroundLine to simply ignore the missing terminal newline - however, we should really improve this rendering to add a marker to say that there was a previously missing terminal newline. Fix #17875 Signed-off-by: Andrew Thornton <art27@cantab.net> * Apply suggestions from code review Co-authored-by: KN4CK3R <admin@oldschoolhack.me> Co-authored-by: KN4CK3R <admin@oldschoolhack.me> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
* Changelog 1.15.8 (#18026)zeripath2021-12-202-2/+17
| | | | | | | | | | | | | | | | | | | | | ## [1.15.8](https://github.com/go-gitea/gitea/releases/tag/v1.15.8) - 2021-12-19 * BUGFIXES * Reset locale on login (#18023) (#18025) * Fix reset password email template (#17025) (#18022) * Fix outType on gitea dump (#18000) (#18016) * Ensure complexity, minlength and isPwned are checked on password setting (#18005) (#18015) * Fix rename notification bug (#18011) * Prevent double decoding of % in url params (#17997) (#18001) * Prevent hang in git cat-file if the repository is not a valid repository (Partial #17991) (#17992) * Prevent deadlock in create issue (#17970) (#17982) * TESTING * Use non-expiring key. (#17984) (#17985) Signed-off-by: Andrew Thornton <art27@cantab.net> * Update CHANGELOG.md Co-authored-by: 6543 <6543@obermui.de>
* Stop printing 03d after escaped characters in logs (#18030) (#18034)zeripath2021-12-191-1/+1
| | | | | | | | | | Backport #18030 Strangely a weird bug was present in the log escaping code whereby any escaped character would gain 03d - this was due to a mistake in the format string where it should have read %03o but read instead %o03d. This has led to spurious 03d trailing characters on these escaped characters! Signed-off-by: Andrew Thornton <art27@cantab.net>
* Reset locale on login (#18023) (#18025)zeripath2021-12-191-0/+33
| | | | | | | | | | | Backport #18023 Although we reset the locale in a number of places there were several ways of logging in that were missing the same code. Fix #18020 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Gusted <williamzijl7@hotmail.com>
* Fix reset password email template (#17025) (#18022)zeripath2021-12-181-1/+1
|
* backport: fix outType on gitea dump (#18016)Gusted2021-12-181-2/+5
| | | | | - Backport from #18000 Co-authored-by: techknowlogick <techknowlogick@gitea.io>
* Fix rename notification bug (#18011)Lunny Xiao2021-12-172-2/+4
|
* Ensure complexity, minlength and ispwned are checked on password setting ↵zeripath2021-12-173-1/+25
| | | | | | | | | | | | | (#18005) (#18015) Backport #18005 It appears that there are several places that password length, complexity and ispwned are not currently been checked when changing passwords. This PR adds these. Fix #17977 Signed-off-by: Andrew Thornton <art27@cantab.net>
* Prevent hang in git cat-file if the repository is not a valid repository ↵zeripath2021-12-1710-2/+150
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (Partial #17991) (#17992) * Prevent hang in git cat-file if the repository is not a valid repository (Partial #17991) Unfortunately it appears that if git cat-file is run in an invalid repository it will hang until stdin is closed. This will result in deadlocked /pulls pages and dangling git cat-file calls if a broken repository is tried to be reviewed or pulls exists for a broken repository. Signed-off-by: Andrew Thornton <art27@cantab.net> * placate lint Signed-off-by: Andrew Thornton <art27@cantab.net> * fix compilation bug Signed-off-by: Andrew Thornton <art27@cantab.net> * Add the missing directories to the testrepos * fixup! Add the missing directories to the testrepos * and ensure that all of the other places have the objects directories too Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
* Prevent double decoding of % in url params (#17997) (#18001)zeripath2021-12-1613-7/+47
|
* Prevent deadlock in create issue (#17970) (#17982)zeripath2021-12-141-1/+6
|
* Use non-expiring key. (#17984) (#17985)KN4CK3R2021-12-141-125/+78
|
* Changelog for v1.15.7 (#17871)v1.15.7Lunny Xiao2021-12-021-0/+31
| | | | | | * Changelog for v1.15.7 Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de>
* Check if column exist before rename if exist, just return with no error ↵Lunny Xiao2021-12-021-0/+24
| | | | | | | | | | | (#17870) (#17882) * Check if column exist before rename if exist, just return with no error * Also check if errors column exist * Add comment for migration * Fix sqlite test
* fix 500 error while use a reserved name in org rename (#17878) (#17881)a10121127962021-12-022-4/+1
| | | | | fix #17876 Signed-off-by: a1012112796 <1012112796@qq.com>
* Fix user primary email changed (#17840)Lunny Xiao2021-11-286-14/+58
|
* Use correct user on releases (#17818)Gusted2021-11-261-2/+2
| | | | - Backport #17806
* Fixed commit count (#17698) (#17790)KN4CK3R2021-11-267-29/+32
| | | | | | | | | | * Fixed commit count (#17698) Added "Tag" label. Unified branch, tag and commit name. * Keep 1.15 behaviour. * Removed locale change.
* Preserve color when inverting emojis (#17799)silverwind2021-11-241-1/+1
| | | Fixes: https://github.com/go-gitea/gitea/issues/17795
* backport: use correct sender on title change (#17792)Gusted2021-11-241-1/+1
|
* Fix close issue but time watcher still running (#17761)Lunny Xiao2021-11-236-94/+151
| | | | | | | | | * Fix bug * Update models/issue_stopwatch.go Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: zeripath <art27@cantab.net>
* Return 400 but not 500 when request archive with wrong format (#17691) (#17700)Lunny Xiao2021-11-204-9/+72
| | | | * Return 400 but not 500 when request archive with wrong format (#17691) * Remove bundle because it's not in this version
* Fix Migrate Description - backport (#17727)99rgosse2021-11-191-0/+1
|
* Fix bug when project board get open issue number (#17703) (#17726)Lunny Xiao2021-11-191-1/+3
| | | | | | | Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
* Fix bug when read mysql database max lifetime (#17682) (#17690)Lunny Xiao2021-11-171-2/+2
|
* Backport #17649, fix database deadlock when update issue labels (#17665)wxiaoguang2021-11-171-12/+11
|
* Fix golangci-lint warnings (#17598 et al) (#17668)Gusted2021-11-1696-64/+139
| | | | | | | | | Backport #17598 Backport #17606 Backport #17608 Backport #17609 - Since https://gitea.com/gitea/test-env/pulls/10 the golangci-lint has been upgraded and is erroring about new warnings in the code, this PR fixes those warnings.
* Fix bug on detect issue/comment writer (#17592)Lunny Xiao2021-11-091-1/+1
|
* backport(1.15): Fix stats upon searching issues (#17578)Gusted2021-11-082-5/+47
| | | | | | - Backport of https://github.com/go-gitea/gitea/pull/17566 Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: zeripath <art27@cantab.net>
* Remove appSubUrl from pasted images (#17572) (#17588)zeripath2021-11-081-2/+2
| | | | | | | | | | | | Backport #17572 * Remove appSubUrl from pasted images Since we fixed the url base for the links in repositories we no longer need to add the appsuburl to pasted image links. Fix #17057 Signed-off-by: Andrew Thornton <art27@cantab.net>
* backport(1.15): make `ParsePatch` more robust (#17580)Gusted2021-11-082-1/+29
| | | - Backport of https://github.com/go-gitea/gitea/pull/17573
* Only allow webhook to send requests to allowed hosts (#17482) (#17510)wxiaoguang2021-11-069-26/+285
| | | | | | | | Backport #17482 * Only allow webhook to send requests to allowed hosts (backport #17482) * use ALLOWED_HOST_LIST=* for default to keep the legacy behavior in 1.15.x
* Escape issue titles in comments list (#17555) (#17556)zeripath2021-11-051-1/+1
| | | | | Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* backport(1.15): Use correct defaultValue for stracktrace (#17557)Gusted2021-11-051-1/+1
| | | - Backporting https://github.com/go-gitea/gitea/pull/17552
* Fix zero created time bug on commit api (#17547)Lunny Xiao2021-11-051-4/+6
| | | Co-authored-by: zeripath <art27@cantab.net>
* Show correct "No" icon (#17538)delvh2021-11-041-1/+1
|
* Fix database keyword quote problem on migration v161 (#17523)Lunny Xiao2021-11-031-1/+12
| | | * support rerun migration v161
* fix email with + when active (#17518) (#17520)Lunny Xiao2021-11-032-1/+3
| | | Co-authored-by: zeripath <art27@cantab.net>
* Stop double encoding blame commit messages (#17498) (#17500)zeripath2021-10-311-2/+1
| | | | | | | | | | | | | Backport #17498 The call to html.EscapeString in routers/web/repo/blame.go:renderBlame is extraneous as the commit message is now rendered by the template. The template will correctly escape strings - therefore we are currently double escaping. This PR fixes this. Fix #17492 Signed-off-by: Andrew Thornton <art27@cantab.net>
* Quote the table name in CountOrphanedObjects (#17487) (#17488)zeripath2021-10-301-1/+1
| | | | | | | | | | Backport #17487 CountOrphanedObjects needs to quote the table it is joining with as this table may be `user`. Fix #17485 Signed-off-by: Andrew Thornton <art27@cantab.net>
* Run Migrate in Install rather than just SyncTables (#17475) (#17486)zeripath2021-10-302-4/+24
| | | | | | | | | | | | | | | | | Backport #17475 The underlying problem in #17328 appears to be that users are re-running the install page during upgrades. The function that tests and creates the db did not intend for this and thus instead the migration scripts being run - a simple sync tables occurs. This then causes a weird partially migrated DB which causes, in this release cycle, the duplicate column in task table error. It is likely the cause of some weird partial migration errors in other cycles too. This PR simply ensures that the migration scripts are also run at this point too. Fix #17328 Signed-off-by: Andrew Thornton <art27@cantab.net>
* Fix login redirection links (#17473)qwerty2872021-10-281-1/+1
|
* Changelog 1.15.6 (#17457)v1.15.6zeripath2021-10-281-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Changelog 1.15.6 Unforunately #17435 is a somewhat critical bug and therefore we should really release 1.15.6 as soon as possible. ## [1.15.6](https://github.com/go-gitea/gitea/releases/tag/v1.15.6) - 2021-10-27 * BUGFIXES * Prevent panic in serv.go with Deploy Keys (#17434) (#17435) * Fix CSV render error (#17406) (#17431) * Read expected buffer size (#17409) (#17430) Signed-off-by: Andrew Thornton <art27@cantab.net> * Add 17456 and its backport Signed-off-by: Andrew Thornton <art27@cantab.net> * Add 17464 Signed-off-by: Andrew Thornton <art27@cantab.net> * Add final pr * Update date Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Make commit-statuses popup show correctly (#17447) (#17466)wxiaoguang2021-10-282-3/+19
| | | | | Backport #17447 Close #17443
* Add integration tests for private.NoServCommand and private.ServCommand ↵zeripath2021-10-281-0/+154
| | | | | | | | | | | | | | (#17456) (#17463) Backport #17456 modules/private/serv.go has two major functions that are missing testcases to ensure that Deploy and normal SSH keys work correctly. This PR adds some basic integration tests for these. Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de>
* Ensure that restricted users can access repos for which they are members ↵zeripath2021-10-284-4/+67
| | | | | | | | | | | | | | | | | | | (#17460) (#17464) Backport #17460 There is a small bug in the way that repo access is checked in repoAssignment: Accessibility is checked by checking if the user has a marked access to the repository instead of checking if the user has any team granted access. This PR changes this permissions check to use HasAccess() which does the correct test. There is also a fix in the release api ListReleases where it should return draft releases if the user is a member of a team with write access to the releases. The PR also adds a testcase. Signed-off-by: Andrew Thornton <art27@cantab.net>