Roo-Code/.changeset/changelog-config.js
github-actions[bot] 44df43063f
Changeset version bump (#11513)
* 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>
2026-02-17 14:25:31 -07:00

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