--- title: "Generate Release Notes" ---
This is generated from the built in components of BuildMaster 2024.0, and may be different than what you have installed (especially if you have extensions); go to [Gear Icon] -> Administration -> Operations within your BuildMaster instance to see exactly what operations are available.

Generates an HTML file containing the BuildMaster release notes and/or issues from the application's issue tracking provider.

Script usage:

Generate-ReleaseNotes(
	Name: <text>,
	[IncludeReleaseNotes: <true/false>],
	[IncludeIssueSummary: <true/false>],
	[IncludeIssueDescriptions: <true/false>],
	[ClosedIssuesOnly: <true/false>],
	[CustomCss: <text>],
	[Overwrite: <true/false>]
);

This operation may be prefixed with Core::, although this is a built-in namespace and isn't really necessary.

Arguments:

NameFormatScript UsageUsage Notes
File name
text
Name
This argument is required.
Include release notes
true/false
IncludeReleaseNotes
Default value is "True".
Include issue summary
true/false
IncludeIssueSummary
Default value is "True".
Include issue descriptions
true/false
IncludeIssueDescriptions
Default value is "True".
Closed issues only
true/false
ClosedIssuesOnly
Custom CSS
text
CustomCss
Overwrite
true/false
Overwrite

Example:


# generates an HTML file containing this application's issues with descriptions along with release notes
Generate-ReleaseNotes(
    Name: notes.html
);