Jérémie Bresson

Results 210 comments of Jérémie Bresson
trafficstars

Using `int` for the id will work only in on-prem setup (at the beginning, until the system reach the limit of `int` and then start to overflow). Probably switching to...

I think the integration tests needs to be reworked… It is too flaky right now.

I finally got a green build and I merged your change to `main` and `6.x`. Thank you 🎉 .

The problem is that the library is based on Jersey client, which is dragging a lot of additional dependencies. I have opened https://github.com/gitlab4j/gitlab4j-api/issues/924 a long time ago to collect some...

It seems that there is something wrong. Can you enable logging of HTTP request/response to understand what is going on? Here is how: ```java GitLabApi(..., ....) .withRequestResponseLogging(Level.INFO); ``` Thank you...

The tag is in the repo: https://github.com/gitlab4j/gitlab4j-api/releases/tag/gitlab4j-api-6.0.0-rc.4 The jar is on maven central: https://repo1.maven.org/maven2/org/gitlab4j/gitlab4j-api/6.0.0-rc.4/gitlab4j-api-6.0.0-rc.4.jar Maybe you want to use a change that was done after the tag?

Maybe the version is not `main-SNAPSHOT` but just `-SNAPSHOT` (I just found it in the docs) I see the build here: https://jitpack.io/#gitlab4j/gitlab4j-api/-SNAPSHOT But I did not manage to fetch it....

Interesting finding. The problem I see with "rethrow": all the `getOptionalXXX()` methods are not throwing any Exception. So we should maybe wrap it into a Runtime exception. Not sure if...

`4.18.0` seems really old. Can you check with a newer version? To debug this, you should display the HTTP request sent by the client. You can use: ``` GitLabApi(..., ....)...

Are you sure everything is OK with your authentication? The docs says: > Get a list of all visible projects across GitLab for the authenticated user. When accessed without authentication,...