git-changelog-lib icon indicating copy to clipboard operation
git-changelog-lib copied to clipboard

Generate changelog, and/or next version, with, or without, conventional commits from a GIT repository

Results 32 git-changelog-lib issues
Sort by recently updated
recently updated
newest added
trafficstars

…and customfields. Instead of using the issues API, it will use a jql search instead. This feature is needed, if you develop for e.g. multiple clients in one branch and...

Hello, this is for #52 I'm not too sure how to correctly support submodules, to be honest, but this seems to be working for my use case: pushing tags on...

Sorry if I'm missing this, but is there a way to get the current date into the changelog? See how to get the commit and other dates, but I'd like...

I hope this is the right platform to ask a question - I saw you do have a question tag (though I can't assign it). So far, we've parsed the...

running from a git worktree > echo $(npx git-changelog-command-line --print-next-version) Exception in thread "main" shadow.se.bjurr.gitchangelog.api.exceptions.GitChangelogRepositoryException: main not found in: Repo: Repository[C:\app\test\ideatest\xx\.git\worktrees\xx] at shadow.se.bjurr.gitchangelog.internal.git.GitRepo.getRef(GitRepo.java:139) at shadow.se.bjurr.gitchangelog.api.GitChangelogApi.getId(GitChangelogApi.java:678) at shadow.se.bjurr.gitchangelog.api.GitChangelogApi.getChangelog(GitChangelogApi.java:624) at shadow.se.bjurr.gitchangelog.api.GitChangelogApi.getChangelog(GitChangelogApi.java:85) at...

I have worked with this plugin following gitflow and I have had problems with the order of the commits. detail link https://stackoverflow.com/questions/72365370/git-get-commits-in-order-for-changelog

When integrated with Jira, the JiraClient.toJiraIssue parses out the json response. It only parses out the inwardKey and outwardKey. Is that possible that also parse out the Summary for each...

isReleaseTag Sourcecode: ```java public static boolean isReleaseTag(final Tag tag) { // v1.1.1.0328.00 return Pattern.matches("^[0-9]+\\.[0-9]+\\.[0-9]+", tag.getName().replaceAll("[^0-9\\.]", "")); } ``` matches is fixed as `^[0-9]+\\.[0-9]+\\.[0-9]+` does not support version 1.1.1.0328.00 and lib...

Getting below error se.bjurr.gitchangelog.api.exceptions.GitChangelogRepositoryException .md file not found in jenkins workspace. Git change log plugin version : 3.13 at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800) at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357) at hudson.remoting.Channel.call(Channel.java:1001) at hudson.FilePath.act(FilePath.java:1160) at org.jenkinsci.plugins.gitchangelog.steps.GitChangelogStep$1.run(GitChangelogStep.java:338) at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution.lambda$start$0(SynchronousNonBlockingStepExecution.java:47)...

Hi, I'm looking for a feature in git-changelog-lib in order to be able to append to the current changelog file, instead of overwriting. Is there any option in this plugin?...