Skip to content

espressif/cz-plugin-espressif

Repository files navigation

Espressif logo

Commitizen plugin Espressif

This is a plugin for Commitizen that makes it easy to create and maintain a well-organized and good-looking CHANGELOG.md. It also takes care of version bumping and helps you write commit messages that follow Espressif standards.

All of this with minimal config and setup, so your pyproject.toml file stays clean and simple.


Features

  • Can be almost zero-config but offers many customization options if your project needs it.
  • Predefined CHANGELOG template with default categories Breaking changes / New features / Bug fixes / Documentation / Code refactoring / Removals.
  • The CHANGELOG automatically displays commits and the authors of those commits.
  • The default order in the changelog categories lists commits with a scope first, followed by the rest, both groups sorted alphabetically.
  • Predefined Release Notes template that can be used in an automated release workflow.
  • cz commit command with default Espressif commit types, aligned with the Espressif pre-commit linter.
  • You can use pre-commit hook that triggers a local changelog update (Unreleased section) when version files change.

Compatibility

This plugin requires Python 3.9 or higher. It should run on pretty much any anything (Linux, Mac, Windows, amd64, aarch64).

If you encounter issues with a specific architecture or OS, please report it here, and we will try to address it as soon as possible.


Install

Install with pip or your favorite package manager:

pip install czespressif

Then add this snippet to `pyproject.toml:

[tool.commitizen]
   name            = "czespressif"
   bump_message    = 'change(bump): release $current_version β†’ $new_version [skip-ci]'

And verify that installation and setup was successful by showing the example.

cz example

Tip

You can also add it to your project dev dependencies (suggested) and run the sync command (pipenv sync, pip-sync, poetry install, ...).

commitizen itself is in the plugin's dependencies, so pip will take care of everything.

Warning

Don't try to install it system-wide with pipx, it probably not going to work as you expect.


Usage

Create Changelog file

If a changelog already exists in your project, make sure you have staged or committed its latest version.

This command turns your old changelog into a nicely organized template based on the Keep a Changelog standard.

cz changelog

Bump Release version

Is better to first run:

cz bump --dry-run

This only shows the future version and the part of the changelog that will be updated. When all ok, do the same without --dry-run flag.

GitHub Action for Automated Release Creation

In automated scenarios, such as GitHub Actions workflows, you may want to create project releases automatically. This can be easily achieved by parsing the changelog to extract the "Release notes" relevant to the current release.

In this repository, there is a GitHub workflow (.github/workflows/create-release.yml) that follows this strategy. To trigger a release, the repository admin simply needs to push a release tag to the origin (GitHub). This triggers the workflow, which builds all Python binaries for all combinations of Python versions, operating systems, and architectures. It then parses the changelog to extract the release notes (only the section related to the current release, without any headers, footers, etc.), creates a GitHub release, and uploads the binaries both to the GitHub release and the PyPI registry.

The following command generates the changelog for the release version v4.8.0, using the internal template for release notes and writing the partial changelog to a file:

cz changelog v4.8.0 --template="RELEASE_NOTES.md.j2" --file-name="Release_notes.md"

Release notes custom footer: You can append a custom footer to the end of the release notes snippet. For example, if you want to include a link to something important for your project, or maybe some GitHub badges, and so on, you can do that.

You can check example without a footer (default) and example with a custom footer.

Important

Note that the custom template for release notes is part of the czespressif plugin, not the target (your project) repository. Any custom settings you define for the changelog locally in the project configuration will also apply to the release notes. For example, if you change the order of sections in the changelog, the release notes will reflect that change as well.

This approach ensures consistent visual styling and allows repository admins to configure everything in one place.

Tip

You can check the implementation of this command in the GitHub workflow .github/workflows/create-release.yml if you're interested.

Create commit messages

In case anyone actually prefers this way of creating commit messages, the command in this plugin is aligned with the Espressif commit linter and DangerJS linters.:

cz commit
? Select the type of change you are committing (Use arrow keys)
 » feat                     ✨ A new feature
   fix                      πŸ› A bug fix
   change                   πŸ—οΈ A change made to the codebase.
   docs                     πŸ“– Documentation only change
   test                     🚦  Adding missing or correcting existing tests
   ci                       βš™οΈ Changes to CI configuration files and scripts
   refactor                 πŸ”§ A changeset neither fixing a bug nor adding a feature
   revert                   πŸ”™ Revert one or more commits
   remove                   πŸ—‘οΈ Removing code or files

Examples of good commit messages

If you are unsure about the commit message standard, run:

cz example

This will bring up a complete example of good commit messages and commit schema in the terminal.


Configuration

Config is accepted in pyproject.toml (priority, following example), .cz.toml, .cz.json, cz.json, .cz.yaml, cz.yaml, and cz.toml.

Minimal setup

Tip

Try to be minimalistic with custom configs. The best approach is to keep the defaults, so all Espressif projects maintain the same look and feel. Also, you will save yourself troubles with non-standard setups.

[tool.commitizen]
   name            = "czespressif"
   bump_message    = 'change(bump): release $current_version β†’ $new_version [skip-ci]'

Optimal setup

[tool.commitizen]
  name            = "czespressif"
  bump_message    = 'change(bump): release $current_version β†’ $new_version [skip-ci]'

  # see commitizen docs, following are standard configs
  annotated_tag = true
  changelog_merge_prerelease = true
  tag_format = "v$version"
  update_changelog_on_bump = true
  version                    = "1.2.3"
  version_files              = ["<src>/__init__.py:__version__"]
  version_provider           = "commitizen"

Additional configurable parameters

[tool.commitizen]
    ...

    # - Section emojis in the changelog, emojis in CLI command `cz commit` -
    # Default: true; false = do not display emojis
    # Note: Emojis are never added in the commit messages.
    use_emoji = false

    # - Custom text of changelog title -
    # Note: "" (empty string) disables title
    changelog_title = "Our changelog"

    # - Custom text of changelog header -
    # Note: "" (empty string) disables header
    changelog_header = "This is our changelog.\nAll cool things we do are here.\n\nPlease read it."

    # - Custom text of changelog footer -
    # Note: "" (empty string) disables footer
    changelog_footer = "This is the end of our changelog.\n\nMore cool things are coming."

    # - Horizontal lines between release sections in the changelog -
    # Default: true; false = removes lines
    changelog_section_line = false  # default (true); false = removes horizontal lines between releases

    # - Section "Unreleased" in the changelog -
    # Default: true; false = removes section Unreleased, keeps only releases
    changelog_unreleased = false

    # - Authors of the changes (commits) in the changelog -
    # Default: true; false = do not display authors
    changelog_show_authors = false

    # - Commit numbers (short SHA) in the changelog -
    # Default: true; false = do not display commit numbers
    changelog_show_commits = false

    # - Change orders in which sections displays in the changelog -
    # Default: this example is default
    change_type_order = [ # with enabled emojis
        '🚨 Breaking changes',
        '✨ New features',
        'πŸ› Bug fixes',
        'πŸ“– Documentation',
        'πŸ”§ Code refactoring',
        'πŸ—‘οΈ Removals',
        'πŸ—οΈ Changes',  # in default not in the changelog
        'βš™οΈ CI and project settings',    # in default not in the changelog
        '🚦 Testing',  # in default not in the changelog
        'πŸ”™ Reverted',  # in default not in the changelog
    ]

    change_type_order = [  # same thing, with disabled emojis
        'Breaking changes',
        'New features',
        'Bug fixes',
        'Documentation',
        'Code refactoring',
        'Removals',
        'Changes',  # in default not in the changelog
        'CI and project settings',  # in default not in the changelog
        'Testing',  # in default not in the changelog
        'Reverted',  # in default not in the changelog
    ]

    # - Redefine which types are shown in the changelog -
    # Note: You need to list here ALL types that you want to have in the changelog - included default ones
    # Note: The order in this list doesn't matter β€” if you want to change the sections' order too, use with "change_type_order."
    types_in_changelog = ["feat", "fix", "refactor", "style", "ci"]


    # - Custom text that you can append to release notes output -
    # Default: Null (in default there is no custom footer )
    release_notes_footer = """Thanks to <FILL OUT CONTRIBUTORS>, and others for contributing to this release!"""

    # - Add extra commit types for 'cz commit' and to the changelog (sections) -
    # Note: If you are working with custom commit types, ensure your commit linter and PR/MR linter is set same way
    [[tool.commitizen.extra_types]]
        type        = "style"
        heading     = "Code Style"
        emoji       = "🎨"
        description = "Changes that do not affect the meaning of the code (white-space, formatting, etc.)"
        bump        = "PATCH"
        changelog   = true

Solving Troubles

The plugin czespressif has commitizen as its dependency, so users only need to install czespressif, and that will automatically install the proper version of commitizen. This plugin requires at least version 3.29 of commitizen to work properly. Older versions either cause errors like this:

The committer has not been found in the system.

Try running 'pip install czespressif'

... or czespressif plugin partially works but behaves in weird and unexpected ways.

If you encounter this error, it probably means that you have a conflicting version of commitizen installed on your system, and this old version is prioritized in your system path.

You can copy and paste this snippet into your terminal to check if this is the case:

clear;if command -v cz &> /dev/null; then
    cz_version=$(cz version | awk '{print $NF}')
    if [ "$(printf '%s\n' "3.29" "$cz_version" | sort -V | head -n1)" = "3.29" ]; then
        echo "Commitizen version $cz_version is OK."
    else
        echo "Commitizen version $cz_version is too old. Found at $(which cz)."
        echo "Please uninstall it with 'pip uninstall commitizen' or 'pipx uninstall commitizen'."
    fi
else
    echo "No Commitizen found, but you are not in a virtual environment."
    echo "Consider creating/activating a virtual environment first and installing by 'pip install czespressif'."
fi

Tip

For each Python project, use a virtual environment. If you install everything with pip to the system Python, you risk running into unsolvable dependency issues and possibly breaking some system tools.

If your project isn’t a Python project and you don’t care about python virtual envs, at least ensure you don’t have multiple outdated versions of some Python packages, such as commitizen in this case.


Pre-commit hook

To automatically keep your changelog's "Unreleased" section up to date, add the following to your .pre-commit-config.yaml file:

- repo: https://github.com/espressif/cz-plugin-espressif
  rev: ''
  hooks:
    - id: update-changelog
      files: ^pyproject\.toml$ # Runs only if file with version changes

Next, run the following command to fetch the latest version (rev:):

pre-commit autoupdate --repo https://github.com/espressif/cz-plugin-espressif

Contributing

We welcome contributions from the community! Please read the Contributing Guide to learn how to get involved.


License

This PROJECT is licensed under the Apache 2.0 License.


Credits

This was inspired by the project Emotional, created by Axel H. / @noirbizarre.

  • If you are looking for similar and customizable plugin for projects outside Espressif organization, you should definitely try Emotional.

  • If you are learning Python and want to write clean and well-organized, pro-level code, you should definitely check out Emotional.