java-gitlab-api icon indicating copy to clipboard operation
java-gitlab-api copied to clipboard

A wrapper for the Gitlab API written in Java

Results 69 java-gitlab-api issues
Sort by recently updated
recently updated
newest added

Ref: https://docs.gitlab.com/ee/api/events.html#get-user-contribution-events Is there currently any support of the event api that I'm just not seeing? If not, any plans on the horizon? It looks like this API could vastly...

Hi, Version 1.2.8 I got from mvnRepository seems to be an old one that doesn't support v4 gitlab's api. On the other hand, the version I get when building the...

Hi there, first of all thank you for the work you are sharing with everybody ! I have found something I am not sure I understand : In the CreateGroupRequest...

Trying to get a Gitlab user doesn't seems to work properly: `GitlabUser user = gitLabAPI.getUserViaSudo("test");` **java.io.FileNotFoundException: https://gitlab.example.com/api/v4/user?sudo=test** is thrown. With curl it works properly even if the user doesn't exist:...

optional milestoneId is required in createIssue() I need to create an issue without a milestoneId. http://docs.gitlab.com/ce/api/issues.html#new-issue http://timolshansky.com/java-gitlab-api/ (createIssue)

Just asking because we get a lot of its transitive dependencies flagged as vulnerable, and haven't seen an update in the project in 4 years.

This method used to use the merge request's source project (e.g. a fork) to get the commits. However this appears to be unnecessary and wrong with current GitLab versions at...

Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.9.10.5 to 2.12.6.1. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-databind&package-manager=maven&previous-version=2.9.10.5&new-version=2.12.6.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

public GitlabCommitComparison compareCommits(Serializable projectId, String commitHash1, String commitHash2) throws IOException { return this.compareCommits(projectId, commitHash1, commitHash2, new Pagination()); } Hello, I use this method to compare the diff of two commits,...