From 35cd30e96dafcd272a506c81f1fd1f0a4c6760cc Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Tue, 27 May 2025 00:13:08 -0700 Subject: [PATCH 1/2] Changelog for 1.24.0 --- CHANGELOG.md | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ef3ee859e96b..25787a49567de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ This changelog goes through 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.24.0-rc0](https://github.com/go-gitea/gitea/releases/tag/1.24.0-rc0) - 2025-04-28 +## [1.24.0](https://github.com/go-gitea/gitea/releases/tag/1.24.0) - 2025-05-26 * BREAKING * Make Gitea always use its internal config, ignore `/etc/gitconfig` (#33076) @@ -41,6 +41,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Improve pull request list API performance (#34052) * Cache GPG keys, emails and users when list commits (#34086) * Refactor Git Attribute & performance optimization (#34154) + * Performance optimization for tags synchronization (#34355) #34522 * ENHANCEMENTS * Code @@ -67,6 +68,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Workflow_dispatch use workflow from trigger branch (#33098) * Add action auto-scroll (#30057) * Add workflow_job webhook (#33694) + * Add a button editing action secret (#34462) * Pull Request * Auto expand "New PR" form (#33971) @@ -80,6 +82,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Show warning on navigation if currently editing comment or title (#32920) * Make tracked time representation display as hours (#33315) * Add No Results Prompt Message on Issue List Page (#33699) + * Add sort option recentclose for issues and pulls (#34525) #34539 * Packages * Link to nuget dependencies (#26554) @@ -216,6 +219,28 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Simplify context ref name (#33267) * BUGFIXES + * Fix some dropdown problems on the issue sidebar (#34308) #34327 + * Do not return archive download URLs in API if downloads are disabled (#34324) #34338 + * Fix LFS files being editable in web UI (#34356) #34362 + * Fix only text/* being viewable in web UI (#34374) #34378 + * Fix LFS file not stored in LFS when uploaded/edited via API or web UI (#34367) + * Grey out expired artifact on Artifacts list (#34314) #34404 + * Fix incorrect divergence cache after switching default branch (#34370) #34406 + * Refactor commit message rendering and fix bugs (#34412) #34414 + * Merge and tweak markup editor expander CSS (#34409) #34415 + * Fix GetUsersByEmails (#34423) #34425 + * Only git operations should update last changed of a repository (#34388) #34427 + * Fix comment textarea scroll issue in Firefox (#34438) #34446 + * Fix repo broken check (#34444) #34452 + * Fix remove org user failure on mssql (#34449) #34453 + * Fix Workflow run Not Found page (#34459) #34466 + * When updating comment, if the content is the same, just return and not update the databse (#34422) #34464 + * Fix project board view (#34470) #34475 + * Fix get / delete runner to use consistent http 404 and 500 status (#34480) #34488 + * Fix url validation in webhook add/edit API (#34492) #34496 + * Fix edithook api can not update package, status and workflow_job events (#34495) #34499 + * Fix ephemeral runner deletion (#34447) #34513 + * Don't display error log when .git-blame-ignore-revs doesn't exist (#34457) * Only allow admins to rename default/protected branches (#33276) * Improve "lock conversation" UI (#34207) * Fix incorrect file links (#34189) @@ -253,6 +278,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Fix Untranslated Text on Actions Page (#33635) * MISC + * Run integration tests against postgres 14 (#34514) #34536 * Enable addtional linters (#34085) * Enable testifylint rules (#34075) * Enable staticcheck QFxxxx rules (#34064) From 96a8c3b95cf2fd7b9bcd2c95074c925017648b49 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Wed, 28 May 2025 22:34:58 -0700 Subject: [PATCH 2/2] Fix typo --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25787a49567de..a9b3d10f1e467 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -234,7 +234,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Fix repo broken check (#34444) #34452 * Fix remove org user failure on mssql (#34449) #34453 * Fix Workflow run Not Found page (#34459) #34466 - * When updating comment, if the content is the same, just return and not update the databse (#34422) #34464 + * When updating comment, if the content is the same, just return and not update the database (#34422) #34464 * Fix project board view (#34470) #34475 * Fix get / delete runner to use consistent http 404 and 500 status (#34480) #34488 * Fix url validation in webhook add/edit API (#34492) #34496