feat(rum): force minor version bump rum package #1402
Merged
Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
Context
Lerna will not bump the minor version of a package if there are no files modified within that specific package, even if the commit contain "feat(specific-package)"
That is understandable from a technical standpoint but not from a user standpoint, at least in the case of rum-core and rum
The upcoming release among other things will contain a new feature (the redirect span). The logic modified belongs to rum-core, so it's generating a minor bump in the package rum-core, but not in the one that users will download (apm-rum), so instead of 5.13.1 as it was generating it should create 5.14.0. to clearly highlight that contains a new feature.
Needless to say that it wasn't the end of the world, in the past we have done releases without taking that into consideration. Despite that, I believe we should start being more mindful of semantic versioning.
Changes
A dummy commit within the package rum, to force the minor versioning bump
cc: @vigneshshanmugam