git-changelog-gradle-plugin icon indicating copy to clipboard operation
git-changelog-gradle-plugin copied to clipboard

Automate changelog and versioning with conventional commits and Git.

Results 12 git-changelog-gradle-plugin issues
Sort by recently updated
recently updated
newest added

When trying to bring this in to our repository internally, the code scanning software flagged this as having potential security vulnerabilities due to dependencies. In particular the version of Jackson...

Hello. I am running plugins { id 'se.bjurr.gitchangelog.git-changelog-gradle-plugin' version '1.71.4' } In my build.gradle file with task: task generateChangeLog(type: se.bjurr.gitchangelog.plugin.gradle.GitChangelogTask) { file = new File("CHANGELOG.md"); templateContent = file('changelog.mustache').getText('UTF-8'); } Nothing...

Hi, I have tried to integrate the latests version (1.6.0) with my Android project and I got this error: ``` Could not resolve all files for configuration ':library:androidApis'. > Failed...

I'm using de.gliderpilot.semantic-release and as we are not using github I wanted to try this plugin to create the changelog. Sadly, after adding git-changelog-gradle-plugin: ``` plugins { ... id("de.gliderpilot.semantic-release") version...

Hi @tomasbjerre! This plugin looks really interesting and I'd like to use it. However, it pulls in too many dependencies, including some dependencies that are known to cause compatibility issues...

Hello, thanks for your plugin it's very useful! The question is whether you have a parameter to add some custom fields to the request that plugin sends to Jira server?...

enhancement

Our project uses both Spotbugs and the Changelog plugin. Using Spotbugs 3.1.12 and the Spotbugs Gradle plugin 1.7.1 or 2.0.0 with the Changelog plugin 1.55-1.57 works fine. Changelog plugin 1.58,...

We are using the current version (1.63) to generate a Changelog file with the following template: ``` task gitChangelogTask(type: se.bjurr.gitchangelog.plugin.gradle.GitChangelogTask) { fromRepo = file(".") file = new File("CHANGELOG.md") templateContent =...

Can you please added example to generate next tag? I tried from README, but it's not working out somehow for me. May be due to lack of understanding of this....

This is the piece of code that doesn't work: ```gradle tasks.register('makeChangelog', GitChangelogTask) { fromRepo = projectDir.absolutePath.toString() file = file('CHANGELOG.md') fromCommit = '5062fd494493e12b6419d2af2fa3a73ff5119ece' toRef = 'HEAD' templateContent = file('changelog.mustache').text untaggedName =...