Jérémie Bresson
Jérémie Bresson
This sounds like a good addition. If you convert it back to Java it can be integrated to this project. Feel free to create a pull request
This is probably similar to https://github.com/gitlab4j/gitlab4j-api/issues/924
Please double check on the GitLab API if they offer such an endpoint.
How are you using this library? Because the convention of turning underscore notation to camelCase should work out of the box, without us having to redefine it everywhere using a...
When I have deleted the `6.x` branch (see https://github.com/gitlab4j/gitlab4j-api/issues/926#issuecomment-2506771237) this PR was closed, but this is not my intention. It can be changed to target `main` (which is the branch...
I think the configuration is done here: https://github.com/gitlab4j/gitlab4j-api/blob/e71f22bae191d10ba8b0fffe1df1a571f7285917/gitlab4j-api/src/main/java/org/gitlab4j/api/utils/JacksonJson.java#L63 To configure the ObjectMapper that does the case transformation inside a Quarkus project you need to do this: ```java import javax.enterprise.inject.Instance; import...
What a work! I will review ASAP and merge.
@bdgould it could even be that some date in the test JSON files in the [`gitlab4j-models/src/test/resources/org/gitlab4j/models`](https://github.com/gitlab4j/gitlab4j-api/tree/7f6aa16d918d068a97c1de5c9aa0d2559843b92d/gitlab4j-models/src/test/resources/org/gitlab4j/models) folder not really matches what gitlab is sending...
I fixed some more cases where the date is sent as `2018-07-01` by the server and where we were serializing as `2018-07-01T00:00:00Z` in PR https://github.com/gitlab4j/gitlab4j-api/pull/1223
@katrinSaleschus I think the work was never finished. As discussed, I am not opposed to use Jackson annotation everywhere instead of specific ObjectMapper configuration. But the work needs to be...