You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case of this specific preset, whatBump() impacts the generated release notes because of a) commit object modification (which is a preset issue itself) b) hardcoded breakingHeaderPatternhere:
which ignores the breakingHeaderPattern value passed to parserOpts (which, I guess, makes sense as whatBump() is a separate function). If we could overwrite a function - we would be able to align parser and whatBump() logic on our end.
The text was updated successfully, but these errors were encountered:
Hi, currently we are able to overwrite
parserOpts
andwriterOpts
:release-notes-generator/lib/load-changelog-config.js
Lines 35 to 39 in 354354b
but we miss a capability to overwrite
whatBump()
function used by presets, e.g.conventional-changelog-conventionalcommits
:In case of this specific preset,
whatBump()
impacts the generated release notes because of a)commit
object modification (which is a preset issue itself) b) hardcodedbreakingHeaderPattern
here:which ignores the
breakingHeaderPattern
value passed toparserOpts
(which, I guess, makes sense aswhatBump()
is a separate function). If we could overwrite a function - we would be able to alignparser
andwhatBump()
logic on our end.The text was updated successfully, but these errors were encountered: