mirror of https://github.com/go-gitea/gitea.git
parent
f677ed628b
commit
d551152582
77
CHANGELOG.md
77
CHANGELOG.md
|
@ -4,46 +4,17 @@ This changelog goes through all the changes that have been made in each release
|
||||||
without substantial changes to our git log; to see the highlights of what has
|
without substantial changes to our git log; to see the highlights of what has
|
||||||
been added to each release, please refer to the [blog](https://blog.gitea.io).
|
been added to each release, please refer to the [blog](https://blog.gitea.io).
|
||||||
|
|
||||||
## [1.13.0-rc2](https://github.com/go-gitea/gitea/releases/tag/v1.13.0-rc2) - 2020-11-10
|
## [1.13.0](https://github.com/go-gitea/gitea/releases/tag/v1.13.0) - 2020-12-01
|
||||||
* ENHANCEMENTS
|
|
||||||
* Return the full rejection message and errors in flash errors (#13221) (#13237)
|
|
||||||
* Remove PAM from auth dropdown when unavailable (#13276) (#13281)
|
|
||||||
* BUGFIXES
|
|
||||||
* Fix Italian language file parsing error (#13156)
|
|
||||||
* Show outdated comments in pull request (#13148) (#13162)
|
|
||||||
* Fix parsing of pre-release git version (#13169) (#13172)
|
|
||||||
* Fix diff skipping lines (#13154) (#13155)
|
|
||||||
* When handling errors in storageHandler check underlying error (#13178) (#13193)
|
|
||||||
* Fix size and clickable area on file table back link (#13205) (#13207)
|
|
||||||
* Add better error checking for inline html diff code (#13251)
|
|
||||||
* Fix initial commit page & binary munching problem (#13249) (#13258)
|
|
||||||
* Fix migrations from remote Gitea instances when configuration not set (#13229) (#13273)
|
|
||||||
* Store task errors following migrations and display them (#13246) (#13287)
|
|
||||||
* Fix bug isEnd detection on getIssues/getPullRequests (#13299) (#13301)
|
|
||||||
* When the git ref is unable to be found return broken pr (#13218) (#13303)
|
|
||||||
* Ensure topics added using the API are added to the repository (#13285) (#13302)
|
|
||||||
* Fix avatar autogeneration (#13233) (#13282)
|
|
||||||
* Add migrated pulls to pull request task queue (#13331) (#13334)
|
|
||||||
* Issue comment reactions should also check pull type on API (#13349) (#13350)
|
|
||||||
* Fix links to repositories in /user/setting/repos (#13360) (#13362)
|
|
||||||
* Remove obsolete change of email on profile page (#13341) (#13347)
|
|
||||||
* Fix scrolling to resolved comment anchors (#13343) (#13371)
|
|
||||||
* Storage configuration support `[storage]` (#13314) (#13379)
|
|
||||||
* When creating line diffs do not split within an html entity (#13357) (#13375) (#13425) (#13427)
|
|
||||||
* Fix reactions on code comments (#13390) (#13401)
|
|
||||||
* Add missing full names when DEFAULT_SHOW_FULL_NAME is enabled (#13424)
|
|
||||||
* Replies to outdated code comments should also be outdated (#13217) (#13433)
|
|
||||||
* Fix panic bug in handling multiple references in commit (#13486) (#13487)
|
|
||||||
* Prevent panic on git blame by limiting lines to 4096 bytes at most (#13470) (#13491)
|
|
||||||
|
|
||||||
## [1.13.0-rc1](https://github.com/go-gitea/gitea/releases/tag/v1.13.0-rc1) - 2020-10-14
|
|
||||||
|
|
||||||
* SECURITY
|
* SECURITY
|
||||||
|
* Add Allow-/Block-List for Migrate & Mirrors (#13610) (#13776)
|
||||||
|
* Prevent git operations for inactive users (#13527) (#13536)
|
||||||
|
* Disallow urlencoded new lines in git protocol paths if there is a port (#13521) (#13524)
|
||||||
* Mitigate Security vulnerability in the git hook feature (#13058)
|
* Mitigate Security vulnerability in the git hook feature (#13058)
|
||||||
* Disable DSA ssh keys by default (#13056)
|
* Disable DSA ssh keys by default (#13056)
|
||||||
* Set TLS minimum version to 1.2 (#12689)
|
* Set TLS minimum version to 1.2 (#12689)
|
||||||
* Use argon as default password hash algorithm (#12688)
|
* Use argon as default password hash algorithm (#12688)
|
||||||
* BREAKING
|
* BREAKING
|
||||||
|
* Set RUN_MODE prod by default (#13765) (#13767)
|
||||||
* Don't replace underscores in auto-generated IDs in goldmark (#12805)
|
* Don't replace underscores in auto-generated IDs in goldmark (#12805)
|
||||||
* Add Primary Key to Topic and RepoTopic tables (#12639)
|
* Add Primary Key to Topic and RepoTopic tables (#12639)
|
||||||
* Disable password complexity check default (#12557)
|
* Disable password complexity check default (#12557)
|
||||||
|
@ -103,6 +74,40 @@ been added to each release, please refer to the [blog](https://blog.gitea.io).
|
||||||
* Add endpoint for Branch Creation (#11607)
|
* Add endpoint for Branch Creation (#11607)
|
||||||
* Add pagination headers on endpoints that support total count from database (#11145)
|
* Add pagination headers on endpoints that support total count from database (#11145)
|
||||||
* BUGFIXES
|
* BUGFIXES
|
||||||
|
* Fix bogus http requests on diffs (#13760) (#13761)
|
||||||
|
* Show 'owner' tag for real owner (#13689) (#13743)
|
||||||
|
* Validate email before inserting/updating (#13475) (#13666)
|
||||||
|
* Fix issue/pull request list assignee filter (#13647) (#13651)
|
||||||
|
* Gitlab migration support for subdirectories (#13563) (#13591)
|
||||||
|
* Fix logic for preferred license setting (#13550) (#13557)
|
||||||
|
* Add missed sync branch/tag webhook (#13538) (#13556)
|
||||||
|
* Migration won't fail on non-migrated reactions (#13507)
|
||||||
|
* Fix Italian language file parsing error (#13156)
|
||||||
|
* Show outdated comments in pull request (#13148) (#13162)
|
||||||
|
* Fix parsing of pre-release git version (#13169) (#13172)
|
||||||
|
* Fix diff skipping lines (#13154) (#13155)
|
||||||
|
* When handling errors in storageHandler check underlying error (#13178) (#13193)
|
||||||
|
* Fix size and clickable area on file table back link (#13205) (#13207)
|
||||||
|
* Add better error checking for inline html diff code (#13251)
|
||||||
|
* Fix initial commit page & binary munching problem (#13249) (#13258)
|
||||||
|
* Fix migrations from remote Gitea instances when configuration not set (#13229) (#13273)
|
||||||
|
* Store task errors following migrations and display them (#13246) (#13287)
|
||||||
|
* Fix bug isEnd detection on getIssues/getPullRequests (#13299) (#13301)
|
||||||
|
* When the git ref is unable to be found return broken pr (#13218) (#13303)
|
||||||
|
* Ensure topics added using the API are added to the repository (#13285) (#13302)
|
||||||
|
* Fix avatar autogeneration (#13233) (#13282)
|
||||||
|
* Add migrated pulls to pull request task queue (#13331) (#13334)
|
||||||
|
* Issue comment reactions should also check pull type on API (#13349) (#13350)
|
||||||
|
* Fix links to repositories in /user/setting/repos (#13360) (#13362)
|
||||||
|
* Remove obsolete change of email on profile page (#13341) (#13347)
|
||||||
|
* Fix scrolling to resolved comment anchors (#13343) (#13371)
|
||||||
|
* Storage configuration support `[storage]` (#13314) (#13379)
|
||||||
|
* When creating line diffs do not split within an html entity (#13357) (#13375) (#13425) (#13427)
|
||||||
|
* Fix reactions on code comments (#13390) (#13401)
|
||||||
|
* Add missing full names when DEFAULT_SHOW_FULL_NAME is enabled (#13424)
|
||||||
|
* Replies to outdated code comments should also be outdated (#13217) (#13433)
|
||||||
|
* Fix panic bug in handling multiple references in commit (#13486) (#13487)
|
||||||
|
* Prevent panic on git blame by limiting lines to 4096 bytes at most (#13470) (#13491)
|
||||||
* Show original author's reviews on pull summary box (#13127)
|
* Show original author's reviews on pull summary box (#13127)
|
||||||
* Update golangci-lint to version 1.31.0 (#13102)
|
* Update golangci-lint to version 1.31.0 (#13102)
|
||||||
* Fix line break for MS teams webhook (#13081)
|
* Fix line break for MS teams webhook (#13081)
|
||||||
|
@ -172,6 +177,10 @@ been added to each release, please refer to the [blog](https://blog.gitea.io).
|
||||||
* Fix Enter not working in SimpleMDE (#11564)
|
* Fix Enter not working in SimpleMDE (#11564)
|
||||||
* Fix bug about can't skip commits base on base branch (#11555)
|
* Fix bug about can't skip commits base on base branch (#11555)
|
||||||
* ENHANCEMENTS
|
* ENHANCEMENTS
|
||||||
|
* Only Return JSON for responses (#13511) (#13565)
|
||||||
|
* Use existing analyzer module for language detection for highlighting (#13522) (#13551)
|
||||||
|
* Return the full rejection message and errors in flash errors (#13221) (#13237)
|
||||||
|
* Remove PAM from auth dropdown when unavailable (#13276) (#13281)
|
||||||
* Add HostCertificate to sshd_config in Docker image (#13143)
|
* Add HostCertificate to sshd_config in Docker image (#13143)
|
||||||
* Save TimeStamps for Star, Label, Follow, Watch and Collaboration to Database (#13124)
|
* Save TimeStamps for Star, Label, Follow, Watch and Collaboration to Database (#13124)
|
||||||
* Improve error feedback for duplicate deploy keys (#13112)
|
* Improve error feedback for duplicate deploy keys (#13112)
|
||||||
|
|
Loading…
Reference in New Issue