mirror of
https://github.com/go-gitea/gitea.git
synced 2025-12-15 21:45:35 +08:00
This PR contains multiple fixes. The most important of which is:
* Prevent hang in git cat-file if the repository is not a valid repository
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.
Fix #14734
Fix #9271
Fix #16113
Otherwise there are a few small other fixes included which this PR was initially intending to fix:
* Fix panic on partial compares due to missing PullRequestWorkInProgressPrefixes
* Fix links on pulls pages due to regression from #17551 - by making most /issues routes match /pulls too - Fix #17983
* Fix links on feeds pages due to another regression from #17551 but also fix issue with syncing tags - Fix #17943
* Add missing locale entries for oauth group claims
* Prevent NPEs if ColorFormat is called on nil users, repos or teams.
|
||
|---|---|---|
| .. | ||
| activity.go | ||
| attachment.go | ||
| blame.go | ||
| branch.go | ||
| commit.go | ||
| compare.go | ||
| download.go | ||
| editor_test.go | ||
| editor.go | ||
| http_test.go | ||
| http.go | ||
| issue_content_history.go | ||
| issue_dependency.go | ||
| issue_label_test.go | ||
| issue_label.go | ||
| issue_lock.go | ||
| issue_stopwatch.go | ||
| issue_test.go | ||
| issue_timetrack.go | ||
| issue_watch.go | ||
| issue.go | ||
| lfs.go | ||
| main_test.go | ||
| middlewares.go | ||
| migrate.go | ||
| milestone.go | ||
| projects_test.go | ||
| projects.go | ||
| pull_review.go | ||
| pull.go | ||
| release_test.go | ||
| release.go | ||
| repo.go | ||
| search.go | ||
| setting_protected_branch.go | ||
| setting.go | ||
| settings_test.go | ||
| tag.go | ||
| topic.go | ||
| view.go | ||
| webhook.go | ||
| wiki_test.go | ||
| wiki.go | ||