From 79a22fd8ae1b0b0a700d717efa2a31ce3fc9d1a8 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Thu, 3 Apr 2025 12:35:17 -0700 Subject: [PATCH 1/4] Release not for v1.23.7 --- CHANGELOG.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c112483325ca..47e05d4f2407c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,27 @@ 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.23.7](https://github.com/go-gitea/gitea/releases/tag/1.23.7) - 2025-04-03 + +* Enhancements + * Add a config option to block "expensive" pages for anonymous users (#34024) (#34071) +* BUGFIXES + * Return default avatar url when user id is zero rather than updating database (#34094) (#34095) + * Add additional ReplaceAll in pathsep to cater for different pathsep (#34061) (#34070) + * Try to fix check-attr bug (#34029) (#34033) + * Git client will follow 301 but 307 (#34005) (#34010) + * Fix markdown frontmatter rendering (#34102) (#34107) + * Add new CLI flags to set name and scopes when creating a user with access token (#34080) (#34103) + * Do not show 500 error when default branch doesn't exist (#34096) (#34097) + * Hide activity contributors, recent commits and code frequrency left tabs if there is no code permission (#34053) (#34065) + * Simplify emoji rendering (#34048) (#34049) + * Adjust the layout of the toolbar on the Issues/Projects page (#33667) (#34047) + * Pull request updates will also trigger code owners review requests (#33744) (#34045) + * Fix org repo creation being limited by user limits (#34030) (#34044) + * Fix git client accessing renamed repo (#34034) (#34043) + * Fix the issue with error message logging for the `check-attr` command on Windows OS. (#34035) (#34036) + * Polyfill WeakRef (#34025) (#34028) + ## [1.23.6](https://github.com/go-gitea/gitea/releases/tag/v1.23.6) - 2025-03-24 * SECURITY From 343f007d8b3b2aa2619cd47bb33d05bb0047d7ee Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Fri, 4 Apr 2025 16:22:28 -0700 Subject: [PATCH 2/4] Update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47e05d4f2407c..8a6a6bc41573b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,11 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Enhancements * Add a config option to block "expensive" pages for anonymous users (#34024) (#34071) + * Also check default ssh-cert location for host (#34099) (#34100) (#34116) * BUGFIXES + * Fix discord webhook 400 status code when description limit is exceeded (#34084) (#34124) + * Get changed files based on merge base when checking `pull_request` actions trigger (#34106) (#34120) + * Fix invalid version in RPM package path (#34112) (#34115) * Return default avatar url when user id is zero rather than updating database (#34094) (#34095) * Add additional ReplaceAll in pathsep to cater for different pathsep (#34061) (#34070) * Try to fix check-attr bug (#34029) (#34033) From c43c44ddd36ec94cee2d6191eaacc8942e42ab68 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Mon, 7 Apr 2025 11:30:10 -0700 Subject: [PATCH 3/4] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a6a6bc41573b..9e66b3f1b22bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ been added to each release, please refer to the [blog](https://blog.gitea.com). * Add additional ReplaceAll in pathsep to cater for different pathsep (#34061) (#34070) * Try to fix check-attr bug (#34029) (#34033) * Git client will follow 301 but 307 (#34005) (#34010) + * Fix block expensive for 1.23 (#34127) * Fix markdown frontmatter rendering (#34102) (#34107) * Add new CLI flags to set name and scopes when creating a user with access token (#34080) (#34103) * Do not show 500 error when default branch doesn't exist (#34096) (#34097) From c95909e7a1e226493317114f69fcc3ebdb083df3 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Mon, 7 Apr 2025 11:31:02 -0700 Subject: [PATCH 4/4] update date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e66b3f1b22bb..476c9d68e9176 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.23.7](https://github.com/go-gitea/gitea/releases/tag/1.23.7) - 2025-04-03 +## [1.23.7](https://github.com/go-gitea/gitea/releases/tag/1.23.7) - 2025-04-07 * Enhancements * Add a config option to block "expensive" pages for anonymous users (#34024) (#34071)