Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Submodule commit processing #1082

Open
wants to merge 40 commits into
base: main
Choose a base branch
from
Open

Conversation

lehmanju
Copy link

@lehmanju lehmanju commented Mar 7, 2025

So #1058 inspired me to try submodule support myself. It is not intended to be "better" or "replace" @yudjinn 's efforts. Since this feature is a blocker for me anyway I might as well put some time into it.

Copy link

welcome bot commented Mar 7, 2025

Thanks for opening this pull request! Please check out our contributing guidelines! ⛰️

@codecov-commenter
Copy link

codecov-commenter commented Mar 7, 2025

Codecov Report

Attention: Patch coverage is 24.46809% with 71 lines in your changes missing coverage. Please review.

Project coverage is 40.70%. Comparing base (9e4bd07) to head (d6ee961).

Files with missing lines Patch % Lines
git-cliff/src/lib.rs 0.00% 28 Missing ⚠️
git-cliff-core/src/repo.rs 0.00% 24 Missing ⚠️
git-cliff-core/src/changelog.rs 53.66% 19 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1082      +/-   ##
==========================================
- Coverage   41.58%   40.70%   -0.87%     
==========================================
  Files          21       21              
  Lines        1816     1865      +49     
==========================================
+ Hits          755      759       +4     
- Misses       1061     1106      +45     
Flag Coverage Δ
unit-tests 40.70% <24.47%> (-0.87%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@yudjinn
Copy link

yudjinn commented Mar 7, 2025

Nice! So for a given commit range of the containing repo, this returns all submodules that changed within those commits, and their deltas between them?

@yudjinn
Copy link

yudjinn commented Mar 7, 2025

This is actually an improvement and "replaces" some of what I was trying to do, and I'm super happy to see it ☺️ if I have time this weekend I'll try to use this as the basis for the releases instead of my other way

@lehmanju
Copy link
Author

lehmanju commented Mar 7, 2025

Well, this iteration sort of actually works! However, the submodule path is not correct ...
context.json

I used openstack/openstack for testing btw, that repository does seem like the ultimate stresstest.

@lehmanju
Copy link
Author

lehmanju commented Mar 7, 2025

So that is fixed as well, only config option, documentation and code cleanup/review are missing.

@orhun
Copy link
Owner

orhun commented Mar 7, 2025

This is some good stuff. Let me know when this is ready for review :)

Copy link
Author

@lehmanju lehmanju left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure about some naming conventions and what should be tested/where. other than that its finished but still needs some testing with a real changelog template.

@lehmanju lehmanju changed the title feat(repo): get submodule repositories with commit ranges feat: Submodule commit processing Mar 7, 2025
@lehmanju lehmanju marked this pull request as ready for review March 7, 2025 21:48
@lehmanju lehmanju requested a review from orhun as a code owner March 7, 2025 21:48
Copy link
Owner

@orhun orhun left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks nice!

Some things to do:

  • Add fixture tests to ensure the functionality
  • Update documentation about the new configuration option

@lehmanju
Copy link
Author

Thanks for the review! I'll have time to address your comments in about a week.

Copy link
Author

@lehmanju lehmanju left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did a bunch of fixes:

  • added fixture test
  • fixed first/last commit bug (submodule commit range now correct)
  • fixed commit preprocessing for submodule commits

@orhun would appreciate another review.

@lehmanju
Copy link
Author

There does seem to be something wrong with the fixture tests in general: https://github.com/orhun/git-cliff/actions/runs/13907737767/job/38914649566#step:3:913

@lehmanju
Copy link
Author

The more I test this in a real scenario the more corner cases I find:
unreleased and first release don't contain any submodule commits although they should

Copy link
Owner

@orhun orhun left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking good! Left some comments that I believe will make the implementation/documentation better.

The fixtures should be fixed in #1099 - ignore the ones that are failing for now.

@@ -64,6 +64,15 @@ following context is generated to use for templating:
"commit_id": "a440c6eb26404be4877b7e3ad592bfaa5d4eb210 (release commit)",
"timestamp": 1625169301,
"repository": "/path/to/repository",
"submodule_commits": {
"<relative/submodule_path/in/repository>": [
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have you checked how this path is affected e.g. when running inside another directory in a monorepo?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you mean, if git-cliff is invoked from a repository subdirectory that is not a submodule or from the submodule itself?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added another fixture test for include-path. if git-cliff is invoked inside a submodule, it will only be able to process the submodule itself. if git-cliff is invoked inside a normal monorepo directory, it should work as expected. the path that is used to find the submodule is gathered from the commit itself, so it doesn't depend on where git-cliff is invoked.

@lehmanju
Copy link
Author

@orhun If CI turns out good (which it should), this is ready for a (hopefully) final review.

  • docs updated
  • fixture tests improved
  • edge cases (submodule added/removed) working
  • releases without commit id working

@lehmanju lehmanju requested a review from orhun March 24, 2025 15:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants