Releases feature
Merge request reports
Activity
Any chance @jschoeffling gets name checked in the 8.2 changelog for this feature (he did all the heavy lifting).
@dzaporozhets What happens to uploaded binaries, which are uploaded to the release, when deleting the tag? IMHO the binaries should be deleted as well. I think this nowhere implemented in GitLab right now.
Edited by username-removed-2900@razer6 nothing happens to attachments. But why bother deleting it? I think we dont do it for files attached to comments either
I do think GitLab should delete the attachments when they are removed from comments, and the same goes for the uploaded binaries. Sensitive attachments have been accidentally added on GitLab.com, and removing the link gives the false impression that the attachment is no longer available. I do realize that it's tricky to ensure that there no more references exist to an attached file, though.
Edited by Stan Hu@DouweM can you review?
@vsizov can you review?
Added 1 commit:
- 743d66e4 - Improve english text
@dzaporozhets I looked at the API and I think it would make more sense to change the endpoint from
PUT /projects/:id/repository/tags
toPUT /projects/:id/repository/tags/:tag
. I can make this change, but this should got into 8.2. @stanhu What do you think?Furtheremore, shouldn't the field
tag
be changed totag_name
to be consistent with other API methods.Edited by username-removed-2900@razer6 Yes, I think making the API
PUT /projects/:id/repository/tags/:tag_name/release
makes the API consistent. We should make the change for 8.2.