You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: Enhance release notes generation by adding linked PRs to work items and refactoring work item retrieval
* fix: Update release notes format to include detailed summaries and linked work items for better clarity
* docs: Add link to default template in README and clarify sample output format
* fix: Correct formatting of summary section in README for consistency
@@ -223,13 +221,50 @@ _Generated by [IeuanWalker.ReleaseNotesGenerator](https://marketplace.visualstud
223
221
tl.setResult(tl.TaskResult.Succeeded,`Release notes generated successfully with ${commits.length} commits, ${allPullRequests.length} PRs, and ${allWorkItems.length} work items`);
Copy file name to clipboardExpand all lines: README.md
+39-21Lines changed: 39 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,33 +51,38 @@ The extension analyses Git commits in a specified range, looking for merge commi
51
51
- `HEAD`or `HEAD~xx` (where `xx` is the number of commits before HEAD)
52
52
53
53
## Sample Output
54
+
The [default template](https://github.com/IeuanWalker/AzureDevops-GenerateReleaseNotes/blob/master/CommitRangeReleaseNotesTask/task/defaultTemplate.hbs) outputs the following format -
54
55
```markdown
55
-
# Release Notes
56
-
57
-
Generated on 7/1/2025 from v1.0.0 to HEAD
58
-
59
-
Repository: **MyProject**
56
+
## 📊 Summary
57
+
- **3** Pull Requests
58
+
- **5** Work Items
59
+
- **Tasks**: 2
60
+
- **Bugs**: 3
60
61
61
-
## Summary
62
-
- **3** Pull requests
63
-
- **5** work items
64
-
- **Tasks**: 2
65
-
- **Bugs**: 3
62
+
---
66
63
67
64
## 📋 Work Items
68
-
### Tasks
69
-
- [1234](https://dev.azure.com/org/project/_workitems/edit/1234) - Add user authentication by John Doe
70
-
- [1235](https://dev.azure.com/org/project/_workitems/edit/1235) - Implement dashboard by Jane Smith
| [1234](https://dev.azure.com/org/project/_workitems/edit/1234) | Add user authentication | John Doe | [42](https://dev.azure.com/org/project/_git/pullrequest/42) |
69
+
| [1235](https://dev.azure.com/org/project/_workitems/edit/1235) | Implement dashboard | Jane Smith | [43](https://dev.azure.com/org/project/_git/pullrequest/43) |
| [1236](https://dev.azure.com/org/project/_workitems/edit/1236) | Fix login validation | John Doe | [42](https://dev.azure.com/org/project/_git/pullrequest/42) |
75
+
| [1237](https://dev.azure.com/org/project/_workitems/edit/1237) | Resolve timeout issues | Jane Smith | [44](https://dev.azure.com/org/project/_git/pullrequest/44) |
76
+
| [1238](https://dev.azure.com/org/project/_workitems/edit/1238) | Fix null reference error | Bob Wilson | [44](https://dev.azure.com/org/project/_git/pullrequest/44) |
71
77
72
-
### Bugs
73
-
- [1236](https://dev.azure.com/org/project/_workitems/edit/1236) - Fix login validation by John Doe
74
-
- [1237](https://dev.azure.com/org/project/_workitems/edit/1237) - Resolve timeout issues by Jane Smith
75
-
- [1238](https://dev.azure.com/org/project/_workitems/edit/1238) - Fix null reference exception by Bob Wilson
78
+
---
76
79
77
80
## 🔀 Pull Requests
78
-
- [PR 42](https://dev.azure.com/org/project/_git/pullrequest/42) - Add user authentication feature by John Doe ([1234](https://dev.azure.com/org/project/_workitems/edit/1234), [1236](https://dev.azure.com/org/project/_workitems/edit/1236))
79
-
- [PR 43](https://dev.azure.com/org/project/_git/pullrequest/43) - Implement new dashboard by Jane Smith ([1235](https://dev.azure.com/org/project/_workitems/edit/1235))
80
-
- [PR 44](https://dev.azure.com/org/project/_git/pullrequest/44) - Bug fixes and improvements by Bob Wilson ([1237](https://dev.azure.com/org/project/_workitems/edit/1237), [1238](https://dev.azure.com/org/project/_workitems/edit/1238))
| [42](https://dev.azure.com/org/project/_git/pullrequest/42) | Add user authentication feature | John Doe | [1234](https://dev.azure.com/org/project/_workitems/edit/1234), [1236](https://dev.azure.com/org/project/_workitems/edit/1236) |
84
+
| [43](https://dev.azure.com/org/project/_git/pullrequest/43) | Implement new dashboard | Jane Smith | [1235](https://dev.azure.com/org/project/_workitems/edit/1235) |
85
+
| [44](https://dev.azure.com/org/project/_git/pullrequest/44) | Bug fixes and improvements | Bob Wilson |
81
86
```
82
87
83
88
## Template Customisation
@@ -89,7 +94,7 @@ Your template has access to the following data:
0 commit comments