xanzy / go-gitlab

GitLab Go SDK
Apache License 2.0
2.43k stars 961 forks source link

gitlab editing labels UpdateLabel function URL #2048

Closed threemay closed 4 weeks ago

threemay commented 4 weeks ago

PUT /projects/:id/labels/:label_id from the doc https://docs.gitlab.com/ee/api/labels.html#edit-an-existing-label

For the UpdateLabel function https://github.com/xanzy/go-gitlab/blob/098437be4ce2607448e2dfa5aaa8509e4e2ac475/labels.go#L224C2-L224C61 u := fmt.Sprintf("projects/%s/labels", PathEscape(project))

svanharmelen commented 4 weeks ago

Should be fixed by #2049 The "current" form is used by older version of GitLab, the new version was not yet added everywhere:

image