New Features
- Add support for using Markdown link syntax in footers
- Add .NET 8 support
- Remove support for .NET 6 and .NET 7
Bug Fixes
- Escape html tags in change log entry titles
- GitHub Integration: Update Octokit to fix integer overflow while getting issue or PR web url
Details
Add support for using Markdown link syntax in footers
When a footer's value is a valid Markdown link which's destination is a http or https address, replace the footer value with a link in the output.
- See Also: Automatic References - Markdown Links
- Pull Request: #437
- Commit:
27a9950
Add .NET 8 support
- Commit:
4e59bc2
Remove support for .NET 6 and .NET 7
.NET 6 and .NET 7 have reached their end-of-life.
Escape html tags in change log entry titles
If the title of a change log entry contains a HTML tag (e.g. <code>), escape the element in the output of all Markdown templates and the Html template
GitHub Integration: Update Octokit to fix integer overflow while getting issue or PR web url
GitHub's ids for PRs and issues now exceed int.MaxValue which caused an overflow exception in Octokit (which is sued to access the GitHub API)