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

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: ![image](https://github.com/gitlab4j/gitlab4j-api/assets/48505397/23c26998-e02f-4e28-8a7f-aa2c43756983) **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...

question

It seems that GitLab itself will response if a file is binary information: ![屏幕截图 2024-03-21 144430](https://github.com/gitlab4j/gitlab4j-api/assets/22149876/658ee5ec-2927-47c4-9fe5-69f76e1dbe29)

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. ```...