This is an automated email from the ASF dual-hosted git repository.

dsmiley pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git

commit be771e3eb5f26a85546a01892cc4ef8080429aa3
Author: David Smiley <[email protected]>
AuthorDate: Sun May 31 09:51:33 2026 -0400

    changes2html.py: fix for github nicknames with hyphens (#4481)
    
    (cherry picked from commit 4862cdd810c21f5f07317613de87fb81b9f5e2db)
---
 gradle/documentation/changes-to-html/changes2html.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle/documentation/changes-to-html/changes2html.py 
b/gradle/documentation/changes-to-html/changes2html.py
index 8ecb4832b22..1d52618834e 100755
--- a/gradle/documentation/changes-to-html/changes2html.py
+++ b/gradle/documentation/changes-to-html/changes2html.py
@@ -213,7 +213,7 @@ class HTMLGenerator:
         # Extract markdown link: [text](url)
         markdown_link_match = re.search(r'\[([^\]]+)\]\(([^)]+)\)', 
author_text)
         # Extract GitHub handle: @username
-        github_match = re.search(r'@(\w+)', author_text)
+        github_match = re.search(r'@([\w-]+)', author_text)
 
         if markdown_link_match:
             # Has markdown link

Reply via email to