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

@jabby I had noticed that the GitLab version used to build and test was version [12.9.2-ce.0](https://github.com/gitlab4j/gitlab4j-api/blob/075ce397bd03ae35acbffdcd4c5cbfaa5cb7075b/.github/workflows/ci-build.yml#L17). I was curious to know how the team went about selecting the build version...

We are heavily relaying on `gitlab4j-api` to communicate with `Gitlab`. We noticed lately that the group boards support is missing in the code. Since we are using it extensively, we...

Hello, I failed when the total project number is > 50000. ` Pager projectPager = gitLabApi.getProjectApi().getProjects(100); ` The error is `org.gitlab4j.api.GitLabApiException: Offset pagination has a maximum allowed offset of 50000...

Based on issue #1100 Fixed a problem where the last topic could not be removed.

Based on issue #874 Added a new method with Long as data type for UserId. Added deprecated tag in the old method that used Integer type.

When I have a trigger job, using REST API returns long id value: ``` curl --header "PRIVATE-TOKEN: XXX" "https://gitlab.com/api/v4/projects/YYYY/pipelines/ZZZ/bridges" ``` result: ``` [{"id":6747393391,"status":"manual"... ``` when calling ``` pipelineApi.getBridgesForPipeline(projectId, pipelineId, 20,...

A note can have a positoin of type `image`, `text` and `file`. The type `file` wasn't allowed in the API, but only due to a bug. It is supported now....

In java 9+, java.util.logging was made it's own module. To simplify our dependency graph, we could replace uses of java.util.logging.Logger with java.lang.System.Logger. This logger will fall back to java.util.logger if...

What functionality does the servlet library provide?

Now that 6.x is on java 11, we should add a module declaration.