@@ -91,10 +91,10 @@ def filter_commits_by_date(commits):
9191
9292def categorize_commits (commits ):
9393 categories = {
94+ "New Architecture-specific changes" : [],
9495 "Reliability" : [],
9596 "New Features" : [],
9697 "Breaking Changes" : [],
97- "New Architecture-specific changes" : [],
9898 "Other" : []
9999 }
100100
@@ -103,14 +103,14 @@ def categorize_commits(commits):
103103 "Reliability" : ["fix" , "bug" , "error" , "issue" , "crash" , "fault" , "defect" , "patch" ],
104104 "New Features" : ["feature" , "add" , "implement" , "introduce" , "support" , "enable" ],
105105 "Breaking Changes" : ["break" , "remove" , "deprecated" , "incompatible" , "remove support" , "change api" ],
106- "New Architecture-specific changes" : ["fabric" , "arch" , "architecture" , "refactor" , "restructure" , "modularize" ]
106+ "New Architecture-specific changes" : ["[fabric]" , " fabric" , "arch" , "architecture" , "refactor" , "restructure" , "modularize" ]
107107 }
108108
109109 for commit in commits :
110110 message = commit ['commit' ]['message' ]
111111 sha = commit ['sha' ]
112112 url = commit ['html_url' ]
113- entry = f"- { message .splitlines ()[0 ]} [{ sha [:7 ]} ]({ url } )"
113+ entry = f"- { message .splitlines ()[0 ]} [{ message . splitlines ()[ 0 ] } · microsoft/react-native-windows@ { sha [:7 ]} (github.com) ]({ url } )"
114114 msg_lower = message .lower ()
115115
116116 # Track which categories matched to avoid multiple assignments
0 commit comments