hazendaz commented on issue #200: URL: https://github.com/apache/maven-changelog-plugin/issues/200#issuecomment-3367765804
I ran a quick query to chatgpt and got the following using this query ```query maven changelog plugin uses maven scm. scm used whatchanged but switched to log, now changelog no longer defaults output, it displays all git history ``` ```part of results git whatchanged had an implicit “recent commit window” behavior built into the plugin’s logic. git log is more explicit: it does not assume any timeframe. The plugin didn’t change, but the SCM provider now just outputs everything because no --since/--until or revision range is being applied by default. ``` Considering I tried to add the ranges explicitly for last 30 days and still did not work, I'd assume some issue in how data is passed to scm since scm takes the arguments at least per its various test cases. I have not looked further as of yet so not sure if the issue belongs here or over at scm. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
