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
Issue #743 has been opened about this issue. In this short PR I propose a quick solution to solve it. It allows a RepositoryTag to be deserialised correctly by Jackson...
The project currently depends on Jackson 2.10.3 which has a known CVE: https://nvd.nist.gov/vuln/detail/CVE-2020-36518. Should update to jackson-databind 2.12.6.1 or later.
How to create a readme and create a default 'master' branch when creating a project
According to https://docs.gitlab.com/ee/api/issue_links.html Endpoint: ``` POST /projects/:id/issues/:issue_iid/links ``` Supports a `link_type` query parameter: > **Type:** string > **Required:** no > **Description:** The type of the relation (“relates_to”, “blocks”, “is_blocked_by”), defaults...
https://docs.gitlab.com/ee/api/projects.html#get-single-project
I'm using project level variables that are scoped to certain environments. As an example, when I define the variable `TEST` twice for the environments `staging` and `production`, and try to...
Hellow :) I've programmed as blow. (java) List commits = gitLabApi.getCommitsApi().getCommits(projectId, branchNm, since, until); for(Commit commit : commits) { String commitId = commit.getId(); String commitShortId = commit.getShortId(); System.out.println(commit.toString()); } **How...
I have a small application which is trying to get the application settings from a self hosted GitLab instance. Running the command like this: ``` java Object settings = gitLabApiSource.getApplicationSettingsApi().getApplicationSettings().getSetting("group_import_limit");...
Hey Guys!! I think there is an issue with the commits api, wherein it doesn't return the commits in the default, reverse chronological order. https://docs.gitlab.com/ee/api/commits.html From a quick investigation, it...
As maintainer, I don't want to support Java 8 anymore. I want to upgrade to a newer LTS version of Java. I'm not sure if I will jump to latest...