Bump activesupport from 6.1.7.1 to 7.0.4.3 (#135)
Bumps activesupport from 6.1.7.1 to 7.0.4.3.
updated-dependencies:
- dependency-name: activesupport dependency-type: indirect …
Signed-off-by: dependabot[bot] support@github.com Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Finch 🐦
Finch is a configurable tool designed to make tracking the history and evolution of a product simple and easy to automate. It transforms a project’s Git commit messages into well-formatted version changelogs — tailored to your team’s specific needs.
Table of Contents
Why is it called ‘Finch’?
The name Finch is derived from the purpose of the application itself — tracking the evolution of a product. Because evolution is at the core of Finch, it seemed appropriate to name it after an evolutionary landmark, Darwin’s finches.
Philosophy
We strongly believe in the importance of a good changelog. We also know changelogs can occasionally end up A) overlooked/untimely and B) difficult to maintain in terms of styling/approach as different team-members are managing a given release. It was these issues, and the desire to automate them for our team, which led to the creation of Finch. We believe that well-formed and intentional Git commit messages can serve as the underlying data for powering an automated and hassle-free changelog system. Through the use of some relatively minor commit-message discipline — and according to whatever conventions your team would like to use — Finch can help you automate your internal and external-facing changelogs, providing as much detail or polish as is desired.
Installation
Finch is available via multiple installation methods:
brew tap namolnad/formulae
brew install --formula finch
Finch.pkg
file and follow the on-screen instructionsbrew install mint
mint install namolnad/finch
make install
from the root of the cloned directory. This will install and link the Finch binary and will place a template config file at the following location$HOME/.finch/template.config.yml
Usage
Finch requires a commit message
[tag] commit message
convention (we use square brackets surrounding our tags) which it utilizes to determine an appropriate section into which a given commit should be placed.Example commit messages
To generate a changelog you must run the
compare
command. Ifcompare
is passed no arguments, Finch will first look for the two most recent semantically-versioned branches then the two most recent semantically-versioned git tags. You can also explicitly pass two versions by using the--versions
option and passing 2 version arguments (branch or tag). Other accepted argurments are:--no-show-version
)--release-manager
)--project-dir
) if Finch is not called from project directory--git-log
). Must be received in format:git log --left-right --graph --cherry-pick --oneline --format=format:'&&&%H&&& - @@@%s@@@###%ae###' --date=short OLD_VERSION...NEW_VERSION
--no-fetch
).--build-number
) Takes precedence over build number command in config. Example output:6.19.1 (6258)
In many cases it may be easiest to create a new shell function when your shell startup files are sourced, such as the following:
Configuration
View Finch’s configurable components in this configuration template.
Config file location
Finch searches for a hidden
.finch
directory containing aconfig.yml
file. The.finch
directory can be placed in either the home, current, or project directories. Alternatively, if you provide a custom path through a--config
argument or an env variable, Finch will look for a valid configuration file at the included path. Finch also allows for private config files in case you prefer to keep portions of your config outside your version-control sytem. See the search behavior below.Config format
config.yml
should be a valid YAML file in the same format as this config template. (Note: Not all keys need to be included as Finch uses default values where needed. You can see an example config at any time by runningfinch config show-example
.Config merging and search behavior
Finch will start with a default configuration and will search several paths for valid configuration files to override existing values. Any non-empty elements included in later configuration files will override their existing counterparts. Empty or omitted config file components will be ignored.
The config search paths will be executed in the following manner:
--config
argumentFINCH_CONFIG
Env var ORconfig.yml
, then forconfig.private.yml
)--project-dir
argumentNotes
Contributing
See CONTRIBUTING.md
Example output
License
Finch is released under the MIT License