gitlab4j-api icon indicating copy to clipboard operation
gitlab4j-api copied to clipboard

GitLab4J API (gitlab4j-api) provides a full featured Java client library for working with GitLab repositories via the GitLab REST API

Results 215 gitlab4j-api issues
Sort by recently updated
recently updated
newest added

People are more and more migrating to the newer EE versions (Jakarta). Jetty 11 has been out for more than a year and depends on jakarta. Spring 6 (release data:...

We're happy users of gitlab4j for several years but faced some problems updating to v5. We had to update MR ids to `Long` but there seems to by some inconsistency...

bug

The method geProjectIssuesStatistics in [IssuesApi](https://github.com/gitlab4j/gitlab4j-api/blob/master/src/main/java/org/gitlab4j/api/IssuesApi.java#L996) has a typo (*t* is missing). It would be nice if it was fixed but I assume that technically this would be a breaking change,...

Hi, The library has been used to connect Rundeck to Gitlab in a small Java project that uses Quarkus and GraalVM. It simply returns some basic info (like tags and...

enhancement
question

api doc have not provider sort by commit but web provided , i found api also could sort such as : ``` GET /projects/:id/repository/branches? search=xx&sort=updated_desc GET /projects/:id/repository/branches? search=xx&sort=updated_asc GET /projects/:id/repository/branches?...

Hello, Thank you for your work, it is wonderful to have this library. I have a problem to update the projects (as MAINTAINER), when I want to use https://javadoc.io/doc/org.gitlab4j/gitlab4j-api/4.19.0/org/gitlab4j/api/ProjectApi.html#updateProject-org.gitlab4j.api.models.Project- The...

The API offers to create a Personal Access Token through `AccessTokenUtils::createPersonalAccessToken`. However this method is not working for me. The method is not able to extract the authenticity token from...

This feature has been introduced in gitlab 14.9 As I'm still running gitlab 14.7 I wasn't able to test it yet. Maybe someone else can check and see if it...

Hi, In order to obtain a particular commits page with commit api, I call gitlab api using : ``` gitlabClient.getCommitsApi().getCommits(id, 10).page(3); ``` ``getCommits(id, 10)`` instanciate a Pager object with properties...

I use compare branches api GET /projects/:id/repository/compare there is no addition&deletion return, but i can see addition&deletion when compare branch on web page, how can i get addition&deletion when using...