4.1.1 • Published 1 year ago

conventional-changelog-beemo v4.1.1

Weekly downloads
457
License
MIT
Repository
-
Last release
1 year ago

conventional-changelog-beemo

Build Status npm version npm deps

conventional-changelog > beemo preset

Beemo's commit message guidelines and changelog structure.

Commit Message Format

The commit message format consists of a type, optional scope, and a message:

<type>: <message>
<type>(<scope>): <message>

Type

The type is a way to group commits and flag semver changes. The following types must be used when prefixing your commit message.

Major

  • break - A major breaking change.
  • release - Not a breaking change but bumps the major version.

Minor

  • new - Introduces a new feature.
  • update - Updates an existing feature.
  • feature - Both a new and update.

Patch

  • fix - Fixes existing functionality.
  • deps - Bumps dependencies.
  • docs - Updates documentation.
  • style - Updates visual styles, like CSS.
  • security - Improves security.
  • revert - Reverts previous or broken code.
  • misc - Catch all for commits that don't align with other types.

Skip

  • ci - Changes to the CI pipeline.
  • build - Changes to the build system.
  • test - Changes to tests or the testing framework.
  • internal - Internal changes not critical for the consumer.

Scope

The scope is optional but useful in defining granularity in a commit message. Scope is ideally used to target a specific feature or module within the project, for example: new(Button): Add a new Button component.

Scopes will appear in the changelog before each line item and accept the following characters: a-z, 0-9, -, ., ,, and spaces.

Message

The message contains a succinct description of the change:

  • Use the imperative, present tense: "change" not "changed" nor "changes".
  • Capitalize first letter of message.
  • Trailing punctuation (period) is not required.

Example

Given the following commit messages:

new(Button): Add new Button component
update(Modal,Tooltip): Refactor accessibility support
ci: Add DangerJS to pipeline
test: Add missing tests for a handful of files
fix(auth): Fixed a bug with the authentication flow

Would generate the following changelog:


1.2.3 - 2019-01-01

🚀 Updates

🐞 Fixes

  • auth Fixed a bug with the authentication flow (a1b2c3d)

🛠 Internals

  • Add DangerJS to pipeline (a1b2c3d)
  • Add missing tests for a handful of files (a1b2c3d)
4.1.1

1 year ago

4.1.0

1 year ago

4.0.0

1 year ago

3.0.1

3 years ago

3.0.0

3 years ago

2.1.0

4 years ago

2.0.0

5 years ago

1.6.0

6 years ago

1.5.3

6 years ago

1.5.2

6 years ago

1.5.1

6 years ago

1.5.0

6 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.3.0-0

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago

1.0.0-alpha.0

6 years ago