Skip to main content

No project description provided

Project description

Conventional With Data

A branch of conventionalish with an added data prefix.

Patch Commitizen's Conventional Commits implementation with additional prefixes.

QUESTIONS = [
    ("fix", "A bug fix", "x", PATCH),
    ("feat", "A new feature", "f", MINOR),
    ("data", "Changes to non-code input (data, blog content, models, etc.)", "a", PATCH),
    ("docs", "Documentation only changes", "d", None),
    ("style", "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)", "s", None),
    ("refactor", "A code change that neither fixes a bug nor adds a feature", "r", PATCH),
    ("perf", "A code change that improves performance", "p", PATCH),
    ("test", "Adding missing or correcting existing tests", "t", None),
    ("build", "Changes that affect the build system or external dependencies (example scopes: pip, docker, npm)", "b", None),
    ("ci", "Changes to our CI configuration files and scripts (example scopes: GitLabCI)", "c", None)
]

By default, Commitizen will use its Conventional Commits implementation, so when you run cz commit, you will get a choice of

  • fix:
  • feat:
  • docs:
  • style:
  • refactor:
  • perf:
  • test:
  • build:
  • ci:

Commitizen has a robust system for building your own commit patterns, and it's great if you want to start from scratch. But if you want to make a small change to the defaults and keep the nice prompts, commit-message linting, and changelog-building provided by Commitizen, you will have to create or update six patterns or regexps. This script inherits from ConventionalCommitsCz and patches in new choices and associated properties. FWIW, despite the ish in the name conventionalish, these changes will still meet the Conventional Commits standard (at least as much as Commitizen does) as long as the feat: and fix: prefixes remain.

Should you want to accomplish this by hand:

  1. inherit from ConventionalCommitsCz
  2. overload .questions() # for commit prompts
  3. overload .schema_pattern() # for commit-message linting

Will your addition affect versioning?

  1. overload .bump_pattern # for commitizen bump
  2. overload .bump_map # for commitizen bump
  3. overload .commit_parser # for commitizen changelog
  4. overload .change_type_map # for commitizen changelog
  5. overload .changelog_pattern # for commitizen changelog

Usage

To make these changes using a script:

  1. clone this project into your project root
  2. edit the QUESTIONS value at the top of questions.py. The default value will give near-identical behavior to the Commitizen default.
  3. install conventionalish in your project venv (poetry add .\conventionalish; pip install .\conventionalish; ...) or upload to PyPi with a new name.
  4. run with cz -n cz_conventionalish or add the following to pyproject.toml
[tool.commitizen]
name = "cz_conventionalish"

Troubleshooting, Q&A

I updated the file, but Commitizen doesn't recognize the changes.

This is an installed package, depending how you installed it, you may need to:

  1. delete any commitizenish/build or commitizenish/egg-info directories
  2. uninstall
  3. reinstall

How can I change the project name (conventionalish)?

  1. change the name of this folder after you clone it
  2. update the line name="conventionalish" in conventionalish/pyproject.toml to name="new_folder_name"

How can I change the commit-rule name (cz_conventionalish)?

  1. change the filename conventionalish/cz_conventionalish.py to conventionalish/cz_new_name.py
  2. change the line { include = "cz_conventionalish.py" } in conventionalish/pyproject.toml to { include = "cz_new_name.py" }

Author

Shay Hill (shay_public@hotmail.com)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

conventional_with_data-0.1.1.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

conventional_with_data-0.1.1-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

Details for the file conventional_with_data-0.1.1.tar.gz.

File metadata

  • Download URL: conventional_with_data-0.1.1.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.1 CPython/3.11.0 Windows/10

File hashes

Hashes for conventional_with_data-0.1.1.tar.gz
Algorithm Hash digest
SHA256 d67e28a980d1cda98ebc46ec86571e146e1f212e0be0f45fa0f54a88b672289b
MD5 6602b41f36b7848f9ce0858b0d7503df
BLAKE2b-256 4ee3d7977b29ba78a993ded941b9d297fe0c81de0beb2035ef0703600709e633

See more details on using hashes here.

File details

Details for the file conventional_with_data-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for conventional_with_data-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 927488f05e9ecd554370124d56d006a2b1c97419fd0ba7bb6cd7697deb152c4d
MD5 07f1b3438d2aced23c6849d52c474691
BLAKE2b-256 f799c35397a77479d4ddbe83c9a10ad436e7f6f7414a47b3063300c3fc07b466

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page