-
-
Notifications
You must be signed in to change notification settings - Fork 276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Content to be added or fixed #515
Comments
Here's what I'm thinking: |
I'm good with 1. @woile what do you think? |
I think alternatives like the I do think we should update the docs to reflect the current behavior (fix, refactor and perf are patch, not everything). Regarding option 1, it would be a breaking change. So we should be very careful. I personally have some conflicts with using just feat and fix. Here some thought to discuss:
I would like to be more compliant with the spec, but the current setup has been working fine for me. Thoughts? |
The most important tasks would be to
This would match the current (author-intended) behavior of the package.
The purpose of
The primary purpose of To answer your questions:
Regarding 1 & 2: A performance improvement could either be a feature or a fix.
For this, I use scope to identify the nature of the change so that I as the author can choose whether it should bump MINOR or PATCH, rather than always force it to a particular kind of change:
I am also of the opinion that documentation should be treated like code and it is perhaps more valuable than your code base (no one will use something with bad documentation or poor/no examples).
I mention the above because it is confusing that one would have a separate Regarding 3: This is where a 3rd option, like
Refactors should never bump versions, otherwise they are not refactors. If in refactoring you add something or modify something, then those constitute a MINOR and PATCH bump, respectively. ConclusionMy practice will be to only use def questions(self) -> Questions:
questions: Questions = [
{
"name": "prefix",
"type": "list",
"message": "Select the type of change you are committing",
"choices": [
{
"value": "🎉 feat",
"name": "🎉 feat: (Bumps MINOR) Add/remove an item/feature",
},
{
"value": "🔨 fix",
"name": "🔨 fix: (Bumps PATCH) Fix/modify an existing item/feature",
},
{
"value": "➗ refactor",
"name": "➗ refactor: (Bumps nothing) Reorganizes item(s) without add features or modifying behavior.",
},
],
},
... ASIDE: I dislike the use of Limiting choices to 4 (breaking change = MAJOR, addition/removal = MINOR, modification = PATCH, nothing = nothing (refactor)) will make developers think more consciously about the kind of changes they are making. I think things like ADDITION: GitHub (and GitLab) offer the ability to post |
The tl;dr for me is
|
@Lee-W @woile Would also be good to add to the docs whether configuration files extend existing behavior or completely override it. As it stands, I don't know if I need to specify all items listed in the configuration table or only some. e.g. After digging through the docs, for customizing through classes, I found
but there are no such instructions for customizing through a config file. I don't know what I must config and what is optional. |
@Lee-W @woile Lastly, I also want to say "THANK YOU!!!" for this great package! 🎉 Below is my
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
Since this project adheres to [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/), the change types
here match those in the commit messages:
- `Feat` for added/removed/deprecated features
- `Fix` for changed/modified items
- `Refactor` for changes not affecting behavior
My TOML Configuration:[tool.commitizen]
name = "cz_customize"
version = "0.2.0"
version_files = [
"my_proj/__version__.py",
"pyproject.toml:version"
]
update_changelog_on_bump = true
changelog_start_rev = '0.2.0'
annotated_tag = true
tag_format = "$version"
[tool.commitizen.customize]
message_template = "{{change_type}}({{scope}}){% if is_breaking_change == true %}!{% endif %}: {{subject}}{% if body %}\n\n{{body}}{% endif %}{% if footer %}\n\n{% if is_breaking_change == true %}BREAKING CHANGE: {% endif %}{{footer}}{% endif %}"
schema_pattern = '(feat|fix|refactor|bump)(\(\S+\))?!?:(\s.*)'
bump_pattern = '^(feat|fix)(\(.+\))?(!)?'
bump_map = { break = "MAJOR", feat = "MINOR", fix = "PATCH" }
change_type_order = ["BREAKING CHANGE", "feat", "fix"]
commit_parser = '(?P<change_type>feat|fix|refactor)(?:\((?P<scope>[^()\r\n]*)\)|\()?(?P<breaking>!)?:\s(?P<message>.*)?'
changelog_pattern = '^(feat|fix|refactor)?(!)?'
[[toml.commitizen.customize.change_type_map]]
"feat" = "Feat"
"fix" = "Fix"
"refactor" = "Refactor"
[[tool.commitizen.customize.questions]]
name = "change_type"
type = "list"
message = "Select the type of change you are committing"
choices = [
{ value = "feat", name = "feat: (Bumps MINOR) Add/remove an item/feature" },
{ value = "fix", name = "fix: (Bumps PATCH) Fix/modify an existing item/feature" },
{ value = "refactor", name = "refactor: (Bumps nothing) Reorganizes item(s); not a 'feat' or 'fix'" },
]
[[tool.commitizen.customize.questions]]
name = "scope"
type = "input"
message = "Scope. Enter the scope of the change, category first (docs/test/ci/build/perf), followed by class or file name if applicable (comma-separted, no spaces):\n"
[[tool.commitizen.customize.questions]]
name = "subject"
type = "input"
message = "Subject. Enter the short summary of the change (imperative tone, lowercase, no period):\n"
[[tool.commitizen.customize.questions]]
name = "is_breaking_change"
type = "confirm"
message = "Is this a BREAKING CHANGE (backwards incompatible)? (Bumps MAJOR; default: N):\n"
default = false
[[tool.commitizen.customize.questions]]
name = "body"
type = "input"
message = "Body. Enter complete details about the change (use full sentences with proper grammar): (press [enter] to skip):\n"
[[tool.commitizen.customize.questions]]
name = "footer"
type = "input"
message = "Footer. Reference any Issues this change addresses. If a BREAKING CHANGE, enter details. (press [enter] to skip):\n" |
@woile @Lee-W I've had some time to investigate and practice with The following are several great articles related to semantic versioning (perhaps well-known by now):
These articles opened my eyes to Hyrum's Law, which indicates you cannot guarantee a priori what changes will break end-user code. You can only guarantee what changes will break your API (i.e. how you claim your library is intended to be used) up to the tests contained within your test suite. This has significant implications for dependency managers (like The above has been a source of tension in the community:
The comment I like the most is Brett Cannon's epiphany:
What is understated here is that the community implicitly understands major versions to be long-lived branches. When a
I believe the For example, this is how library maintainers should treat the following and understand their end-user contract to be:
Donald states this well:
Additional Excellent Points
|
Type
URL
https://commitizen-tools.github.io/commitizen/bump/
Description
Problem
The docs state "
fix
+everything else" bumpsPATCH
of the version string per the defaultcommit_map
.However, this is not the case:
commitizen/commitizen/defaults.py
Lines 78 to 80 in 7916511
Only
fix
,refactor
, andperf
bumpPATCH
, leaving outdocs
,style
,test
,build
, andci
, which don't bump any part of the version.Not only are the docs incorrect, but this is out of step with Conventional Commits 1.0.0. Additional commit types are permitted by the specification (e.g.
commitizen
appears to be using the Angular Convention by default), but no guidance on version bumping is given for these addition types. Where a commit type bumps or does not bump a version, this should be explicitly stated (e.g. the commit message instructions forfix
hasCorrelates with PATCH in SemVer
, but notrefactor
orperf
, leaving one to believe these do nothing).Recommendations:
(PREFERRED; Conventional Commit spec): Only
feature
andfix
should be in the defaultcommit_map
per Conventional Commits 1.0.0.refactor
andperf
should not bumpPATCH
. The Angular typesrefactor
,perf
,docs
,style
,test
,build
, andci
should be removed from the default commit types.(ALTERNATIVE; Angular Convention, but with explicit messaging):
refactor
andperf
should not bumpPATCH
. The commit message instructions forrefactor
,perf
,docs
,style
,test
,build
, andci
should addCorrelates with no version bump in SemVer
. In addition, the docs should clearly state the Angular Convention commit types are included incz c
by default.Tasks:
The text was updated successfully, but these errors were encountered: