Open
Description
Description
Consider a monorepo with multiple projects (e.g. proja
and projb
), each project with its own .cz.toml
file. Commits are scoped according to project, e.g:
fix(proja): some fix in proja
fix(projb): some fix in projb
The changelog for proja
, should ignore all commits except those scoped with proja
.
Possible Solution
This could be achieved by setting scope = proja
in the proja/.cz.toml
file, or by running cz changelog --scope proja
. This means that only commit messages with the specified scope will be considered when generating the changelog.
Additional context
No response
Additional context
No response
Activity
Lee-W commentedon Jul 22, 2022
I'm might not be a user of this feature but I'm ok with it. @woile What do you think?
woile commentedon Jul 22, 2022
I like the idea, it's quite interesting. I think we should also have a stance on how to use commitizen with a monorepo. If you create multiple changelogs, are you also supposed to create multiple tags?
I understand that with this feature we could create a changelog per package, but what happens with tags and version management should also be answered.
zbitouzakaria commentedon Aug 17, 2023
+1 for this. Been trying to use commitizen in a monorepo setup, without much success..
From what I understand,
git
tags can be organized in directories and files, e.gc.f. https://stackoverflow.com/a/56558343
Would love for this to become a reality!
grahamhar commentedon Feb 28, 2024
I am looking at using commitizen in a monorepo too and I hit issues when trying to do this by using different
tag_format
to allow different tags to work. I discovered there is an issue where the change log is not generated due to the tag names in the changeling file not matching other tags with the same version name in them (I am going to do a PR which should fix this).While testing the fix locally I found the issue with commits from different components where then included in the changeling which made them hard to understand. I have solved this issue by using a custom config with
changelog_pattern
set to include the component name.If it is useful I can try to create an example repo layout to demonstrate this
woile commentedon Feb 29, 2024
That'd be really nice, I'd like to see an example with what we currently have
grahamhar commentedon Feb 29, 2024
@woile so this isn't strictly with what we have now it would need the fix I am proposing for changelog generation with tag_format in #995 that I have raised. I used that version to do all the tag/changlogs in this repo.
I kept it simple just using 2 directories each with an independent config. Be great to hear your thoughts on this approach.
woile commentedon Mar 1, 2024
Looks really clever! I like how you use the pattern to define which commits go to which changelog. Most "monorepo" tools end up behaving like that (
cargo
,npm workspaces
, etc)Some thoughts:
I'm thinking that we could experiment in a new package for monorepos with cz.
Where at the root of your project, you add a
.cz.toml
withand then run:
and it goes to each member and bumps and creates changelog, if necessary.
To identify if things have changed, one option is to use
get_commits
args from commitizen and filter per folder.Example on commitizen repo:
We could try adding a new config parameter to commitizen to bump based on files changed 🤔
grahamhar commentedon Mar 1, 2024
Our CI validates that the commits only have files for the component in the scope, build fails so that doesn't get to trunk and won't be released.
We are also quite strict keeping PRs scoped to one component, then the component with changes is the only ones built and released.
The idea of adding some of this logic to commitizen is interesting, my thought was to leave that detection to the build toolset and use commitizen for version bump/conventional commit validation. The idea looks interesting and I might have a play around with it.
noirbizarre commentedon Mar 5, 2024
I like this idea. For monorepos it's a game changer.
I think both aspect are needed:
Having the ability to generate scope-based changelog (including a scope prefix handling to be able to handle things like
feat(proj-a/scope):
with--scope "proj-a/*"
.Project having this kind of workflow often rely on tag in the form of
component-a-vX.Y.Z
but tag pattern is already properly handledAlexeySanko commentedon May 24, 2024
PR for tag template - #692
Let's bump it up!
azunna1 commentedon Oct 11, 2024
An approach that can be taken is to use the output of
git log --oneline -- proja|projb
to filter commits based on changes to the sub folders. We can then have the changelog as follows: