juulhobert commented on code in PR #21: URL: https://github.com/apache/maven-changelog-plugin/pull/21#discussion_r1893592263
########## src/main/java/org/apache/maven/plugins/changelog/ChangeLogReport.java: ########## @@ -283,6 +283,12 @@ public class ChangeLogReport extends AbstractMavenReport { @Parameter(defaultValue = "connection", required = true) private String connectionType; + /** + * If true, file and file revision information is displayed for each SCM entry. + */ + @Parameter(property = "displayFileAndRevInfo", defaultValue = "true") + private boolean displayFileAndRevInfo = true; Review Comment: It was matching the current behavior, so this was backwards compatible. From code perspective I thought it would be nicer to rename it to `hideFileAndRevInfo`. So now the default value is false which feels more logical -- 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: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org