mirror of
https://github.com/conventional-commits/conventionalcommits.org.git
synced 2026-03-22 12:44:37 -05:00
What prefix to use for visual/content changes? #93
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @runofthemillgeek on GitHub (Mar 13, 2020).
I have two questions here:
@damianopetrungaro commented on GitHub (Mar 15, 2020):
It depends on the point of view of the commit.
If the change introduced, for example, new language support to the i18n then it'd be a
feat, otherwise, it may also be afixif there's typo.And the same principle is valid fot rhe second one as well :)
@runofthemillgeek commented on GitHub (Mar 16, 2020):
@damianopetrungaro Understand how it can be a
featfor i18n changes but if it's merely copy change that involves say a tone change and if I'm using tools like semantic release, that'd mean a major version bump and I think that's a little too much. What are your thoughts on that?@damianopetrungaro commented on GitHub (Mar 16, 2020):
You may also use improvement as type.
But from my point of view it is fix/feat or chore if it is not code related :)
@pushred commented on GitHub (Mar 28, 2020):
Personally I use
refactorfrom the Angular convention types for these changes. Since they are purely visual and lingual in nature they don't affectfeatif they are changes to something that already exists. If there's an accessibility issue or a typo,fixcan be warranted. Otherwise it's just iteration similar to code refactoring. It's a change but it doesn't affect functionality.@isotopeee commented on GitHub (Jul 1, 2020):
Thanks @sangeeth96 for raising this issue. I'm confused about this too. I intermittently use
choreandrefactortoo, but I guessrefactormakes more sense for both cases.