gitlab4j-api
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
Found a few cases where deserialization was throwing errors due to ints being out of out-of-range. Follow-up to https://github.com/gitlab4j/gitlab4j-api/pull/811
Hi team, I am trying to use the MergeRequestApi [getDiffs](https://github.com/gitlab4j/gitlab4j-api/blob/main/src/main/java/org/gitlab4j/api/MergeRequestApi.java#L574C23-L574C31) to retrieve the MR diff. `val mergeRequestDiff = api.mergeRequestApi.getDiffs(projectID, mergeRequestIId)` It returns 500 Internal Server Error. `org.gitlab4j.api.GitLabApiException: 500 Internal Server...
Hi All, I noticed when creating a project with the `createProjectFromTemplate` method, it required the `groupWithProjectTemplatesId`. However when having a look into the [gitlab docs](https://docs.gitlab.com/ee/api/projects.html#create-project), `group_with_project_templates_id` should only be used...
POM: ``` org.gitlab4j gitlab4j-api 5.5.0 ``` API: GET /projects/:id/repository/commits my Code : ```java List commits = gitLabApi.getCommitsApi().getCommits(p.getId(), b.getName(),BEGIN_DATE,END_DATE); ``` as you can see from the screenshot:  **the field 'author'...
Hi, for my current project I try to retrieve all merge requests of a Milestone to build a Release note but I'm currently limited to the default page size (96)...
Hi. I'm trying to set the merge_commit_template using ProjectApi. I've noticed that it was introduced in 6.X I'm using the 6.0.0-rc.4 maven dependency downloaded from maven central and I don't...
It seems that GitLab itself will response if a file is binary information: 
hi, i think that JobScope missing scheduled value, for scheduled job that run with a delay am i wrong?
We recently faced one issue where below method returned false Optional.empty() for a file which did exist. On checking the code found issue with below code in RepositoryFileApi class. ```...