mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
* changeset version bump * fix: update changelog-config to support multi-line entries and restore full v3.48.0 CHANGELOG --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Hannes Rudolph <hrudolph@gmail.com>
18 lines
398 B
JavaScript
18 lines
398 B
JavaScript
const getReleaseLine = async (changeset) => {
|
|
const lines = changeset.summary
|
|
.split("\n")
|
|
.map((l) => l.trim())
|
|
.filter(Boolean)
|
|
return lines.map((line) => (line.startsWith("- ") ? line : `- ${line}`)).join("\n")
|
|
}
|
|
|
|
const getDependencyReleaseLine = async () => {
|
|
return ""
|
|
}
|
|
|
|
const changelogFunctions = {
|
|
getReleaseLine,
|
|
getDependencyReleaseLine,
|
|
}
|
|
|
|
module.exports = changelogFunctions
|