Open
Description
With the 16.0 release, Gitlab is deprecating the "/approvals" api[1], and I noticed that python-gitlab still uses in:
class ProjectMergeRequestApprovalManager(GetWithoutIdMixin, UpdateMixin, RESTManager):
_path = "/projects/{project_id}/merge_requests/{mr_iid}/approvals"
and
class ProjectApprovalManager(GetWithoutIdMixin, UpdateMixin, RESTManager):
_path = "/projects/{project_id}/approvals"
Is this going to break any functionality of python-gitlab? And should those classes be removed?