This single case could, of course, be changed quickly with a PR. But it would break the API. If the next version will break the API, then maby it is good to go through all the calls and try to find more faulty names. Instead of breaking the API repeatedly in a series of versions. But this is just me assuming there are more faulty names to fix =)
Problem
The GitLabAPI uses name
mergeRequestId
where it should be using namemergeRequestIid
.https://github.com/timols/java-gitlab-api/blob/master/src/main/java/org/gitlab/api/GitlabAPI.java#L1482
Here is the docs: https://docs.gitlab.com/ee/api/merge_requests.html#get-single-mr-changes
Proposed solution
This single case could, of course, be changed quickly with a PR. But it would break the API. If the next version will break the API, then maby it is good to go through all the calls and try to find more faulty names. Instead of breaking the API repeatedly in a series of versions. But this is just me assuming there are more faulty names to fix =)