| 27 | |
| 28 | /** Release note generation. */ |
| 29 | export class ReleaseNotes { |
| 30 | static async forRange(git: GitClient, version: semver.SemVer, baseRef: string, headRef: string) { |
| 31 | const config = await getConfig([assertValidReleaseConfig]); |
| 32 | const commits = getCommitsForRangeWithDeduping(git, baseRef, headRef); |
nothing calls this directly
no outgoing calls
no test coverage detected