From f2482a712ca499292e5c6a3deea02261de820457 Mon Sep 17 00:00:00 2001 From: Jonathan Miller <1+jmiller@noreply.git.mokoconsulting.tech> Date: Thu, 4 Jun 2026 12:31:29 +0000 Subject: [PATCH 1/2] chore: sync updates.xml 05.22.00 from main [skip ci] --- updates.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/updates.xml b/updates.xml index c910e7d8b8..2003cf8220 100644 --- a/updates.xml +++ b/updates.xml @@ -1,7 +1,7 @@ @@ -87,13 +87,13 @@ mokogitea application site - 05.21.00 + 05.22.00 2026-06-04 https://git.mokoconsulting.tech/MokoConsulting/MokoGitea/releases/tag/stable - https://git.mokoconsulting.tech/MokoConsulting/MokoGitea/releases/download/stable/mokogitea-05.21.00.zip + https://git.mokoconsulting.tech/MokoConsulting/MokoGitea/releases/download/stable/mokogitea-05.22.00.zip - 6c5772549d9f20dd888a0f6eae24d2645a1c5042578c370a9bba93650db62abd + 1da6f0829f87b98313f3cad6d25ce57ee2d5175a7f96a0eb29d63c24e50fc3e1 stable https://git.mokoconsulting.tech/MokoConsulting/MokoGitea/raw/branch/main/CHANGELOG.md Moko Consulting -- 2.52.0 From fb5002d3175e4d9bafc68afba3323f954a3a67c8 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Thu, 4 Jun 2026 07:37:42 -0500 Subject: [PATCH 2/2] fix(build): replace invalid UTF-8 character in API comment The em dash in the TODO comment was encoded as invalid UTF-8, causing a Go compiler error. Replace with ASCII hyphen. Co-Authored-By: Claude Opus 4.6 (1M context) --- routers/api/v1/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routers/api/v1/api.go b/routers/api/v1/api.go index 2dbd9e841b..cef9e8cd44 100644 --- a/routers/api/v1/api.go +++ b/routers/api/v1/api.go @@ -1655,7 +1655,7 @@ func Routes() *web.Router { // }) // }) // }) - // TODO: custom-fields API routes — handler not yet implemented + // TODO: custom-fields API routes - handler not yet implemented // m.Group("/custom-fields", func() { ... }) // m.Group("/issues/{index}/custom-fields", func() { ... }) }, repoAssignment(), checkTokenPublicOnly()) -- 2.52.0