From ef56dd11e6c824cb25884287d993f7efe0e5d211 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Sun, 7 Apr 2024 11:48:53 +0800 Subject: [PATCH 1/6] Add changelog for 1.21.11 --- CHANGELOG.md | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dd0ffaf51818..99b4317cdcdd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,24 @@ 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 been added to each release, please refer to the [blog](https://blog.gitea.com). -## [1.21.10](https://github.com/go-gitea/gitea/releases/tag/1.21.10) - 2024-03-25 +## [1.21.11](https://github.com/go-gitea/gitea/releases/tag/v1.21.11) - 2024-04-07 + +* BUGFIXES + * Fix close file in the Upload func (#30262) (#30269) + * Fix inline math blocks can't be preceeded/followed by alphanumerical characters (#30175) (#30250) + * Fix missing 0 prefix of GPG key id (#30245) (#30247) + * Include encoding in signature payload (#30174) (#30181) + * Move from `max( id )` to `max( index )` for latest commit statuses (#30076) (#30155) + * Load attachments for code comments (#30124) (#30126) + * Fix gitea doctor will remove repo-avatar files when execute command storage-archives (#30094) (#30120) + * Fix possible data race on tests (#30093) (#30108) + * Fix duplicate migrated milestones (#30102) (#30105) + * Fix panic for fixBrokenRepoUnits16961 (#30068) (#30100) + * Fix incorrect SVGs (#30087) +* MISC + * Update katex to 0.16.10 (#30089) + +## [1.21.10](https://github.com/go-gitea/gitea/releases/tag/v1.21.10) - 2024-03-25 * BUGFIXES * Fix Add/Remove WIP on pull request title failure (#29999) (#30066) @@ -14,7 +31,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Remove duplicate option in admin screen and now-unused translation keys (#28492) (#30024) * Fix manual merge form and 404 page templates (#30000) -## [1.21.9](https://github.com/go-gitea/gitea/releases/tag/1.21.9) - 2024-03-21 +## [1.21.9](https://github.com/go-gitea/gitea/releases/tag/v1.21.9) - 2024-03-21 * PERFORMANCE * Only do counting when count_only=true for repo dashboard (#29884) (#29905) @@ -47,7 +64,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Performance improvements for pull request list page (#29900) (#29972) * Fix bugs in rerunning jobs (#29983) (#29955) -## [1.21.8](https://github.com/go-gitea/gitea/releases/tag/1.21.8) - 2024-03-12 +## [1.21.8](https://github.com/go-gitea/gitea/releases/tag/v1.21.8) - 2024-03-12 * SECURITY * Only use supported sort orders for "/explore/users" page (#29430) (#29443) @@ -92,7 +109,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Fixing the issue when status checks per rule matches multiple actions (#29631) (#29655) * Improve contrast on blame timestamp, fix double border (#29482) (#29485) -## [1.21.7](https://github.com/go-gitea/gitea/releases/tag/1.21.7) - 2024-02-26 +## [1.21.7](https://github.com/go-gitea/gitea/releases/tag/v1.21.7) - 2024-02-26 * ENHANCEMENTS * Users with `read` permission of pull requests can be assigned too (#27263) (#29372) From 506a00cfff905a1f518dbbdf7175dc0687b7eae4 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Sun, 7 Apr 2024 12:01:09 +0800 Subject: [PATCH 2/6] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99b4317cdcdd0..92d65c81c41c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Fix duplicate migrated milestones (#30102) (#30105) * Fix panic for fixBrokenRepoUnits16961 (#30068) (#30100) * Fix incorrect SVGs (#30087) + * Refactor render (#30136) (#30315) * MISC * Update katex to 0.16.10 (#30089) From a823a85752dd210223e1457965b0b799e346849a Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Mon, 8 Apr 2024 09:34:04 +0800 Subject: [PATCH 3/6] Update CHANGELOG.md --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92d65c81c41c1..59ea1113d4510 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). ## [1.21.11](https://github.com/go-gitea/gitea/releases/tag/v1.21.11) - 2024-04-07 +* SECURITY + * Fix possible renderer security problem (#30136) (#30315) * BUGFIXES * Fix close file in the Upload func (#30262) (#30269) * Fix inline math blocks can't be preceeded/followed by alphanumerical characters (#30175) (#30250) @@ -18,7 +20,6 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Fix duplicate migrated milestones (#30102) (#30105) * Fix panic for fixBrokenRepoUnits16961 (#30068) (#30100) * Fix incorrect SVGs (#30087) - * Refactor render (#30136) (#30315) * MISC * Update katex to 0.16.10 (#30089) From 347bcaa3e546353f3879a01efe5980e7a423d96a Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Mon, 8 Apr 2024 16:22:10 +0800 Subject: [PATCH 4/6] Update CHANGELOG.md Co-authored-by: wxiaoguang --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59ea1113d4510..7d46b88f12e9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). ## [1.21.11](https://github.com/go-gitea/gitea/releases/tag/v1.21.11) - 2024-04-07 * SECURITY + * Use go1.21.9 to include Golang security fix * Fix possible renderer security problem (#30136) (#30315) * BUGFIXES * Fix close file in the Upload func (#30262) (#30269) From 3f042dbc91672832f2bb4978647ee35b3ad52a8b Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Wed, 10 Apr 2024 14:21:21 +0800 Subject: [PATCH 5/6] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d46b88f12e9b..8b447c98fb818 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,8 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Fix duplicate migrated milestones (#30102) (#30105) * Fix panic for fixBrokenRepoUnits16961 (#30068) (#30100) * Fix incorrect SVGs (#30087) + * Fix create commit status (#30225) #30340 + * Performance optimization for git push (#30104) #30354 * MISC * Update katex to 0.16.10 (#30089) From 894a2647695d5bc9065ea9fa70bc043112a6c298 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Wed, 10 Apr 2024 14:43:59 +0800 Subject: [PATCH 6/6] Fix lint markdown --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b447c98fb818..0129063940a8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,8 +21,8 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Fix duplicate migrated milestones (#30102) (#30105) * Fix panic for fixBrokenRepoUnits16961 (#30068) (#30100) * Fix incorrect SVGs (#30087) - * Fix create commit status (#30225) #30340 - * Performance optimization for git push (#30104) #30354 + * Fix create commit status (#30225) #30340 + * Performance optimization for git push (#30104) #30354 * MISC * Update katex to 0.16.10 (#30089)