beachball
beachball copied to clipboard
Changelog missing for dependent while version in package.json did bump
Sumary
When we have 2 packages;
{
"name": "foo",
"version": "0.1.0",
"dependencies": {
"bar": "*",
}
}
{
"name": "bar",
"version": "0.1.0",
}
And if we beachball bump with only a change file for the bar package, it bumps versions for both packages, but only updates the CHANGELOG file for the packages which had a change file. (In this case only the CHANGELOG of bar)
Expected
Both packages have been version-bumped, so both CHANGELOGs should be updated.
Current
Only the CHANGELOG of the package which had a specific change file got updated.