CI/CD | |
Docs | |
Package | |
Meta |
Generate simple markdown changelogs for GitLab repositories. GitLab provides an API endpoint to generate Changelogs. However, this endpoint assumes that repository is using Git trailers in the commit message. If no Git trailers are found in the commit messages, the API endpoint returns nothing.
This is a huge problem for a lot of projects (including us) that do not use Git trailers. Although it is a good practice to use Git trailers we tend to forget them and it increases development time. Moreover we are more concerned to have MRs listed in the changelogs and we can tag MRs with labels that identify the type of MR. We can generate a changelog using these labels and group MRs according to the labels.
This is what this little package does to generate changelogs. In a nutshell, it does two things:
- Given a GitLab (upstream or self hosted) repository, an initial git reference or date, use the GitLab GraphQL API to return a DataFrame of all issue and MR activity for this time period.
- A CLI to render this activity as markdown, suitable for generating changelogs.
- gitlab-changelog-generator is a command line utility distributed as Python package to generate changelogs. However, it is mostly outdated and I could not make it work as of 2023.
- gitlab-changelog-generator is another tool to generate changelogs based on Ruby. However there has been no development since last few years.
- Users can configure the labels and their descriptions that they use in their projects
gitlab-activity
configuration supportspyproject.toml
for Python projects,package.json
for Node projects. For other projects, configuration can be included in a file.gitlab-activity.toml
in the root of the repository.- It can be integrated into CI release jobs to update the changelogs from last stable tag to current before making the release.
:::important
This tool is heavily inspired from github-activity developed by the folks at Jupyter project. All the credit should go to them and we thank them.
:::
The easiest way to install this package is via pip
:
pip install gitlab-activity
The easiest way to use gitlab-activity
to generate activity markdown is to use
the command-line interface. It takes the following form:
gitlab-activity -t [<group>/<repo>]
This will output a markdown with MRs activity since last tag.
:::tip
The Changelog
file of the current repository is being generated by gitlab-activity
. Have a look
into CI
file on how it is being done.
:::
All the CLI options can be configured via configuration file. An example config file can be used as a reference.
As stated above the configuration can be integrated into pyproject.toml
in
[tool.gitlab-activity]
section or package.json
in gitlab-activity
key.
The easiest way to run the test suite is using pytest
.
pytest