beachball icon indicating copy to clipboard operation
beachball copied to clipboard

Changelog missing for dependent while version in package.json did bump

Open Netail opened this issue 1 year ago • 0 comments

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.

Netail avatar Jun 15 '24 23:06 Netail