-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delete tag API #13358
Delete tag API #13358
Conversation
Signed-off-by: jolheiser <john.olheiser@gmail.com>
|
Hah, that's what I get for running only specific |
Signed-off-by: jolheiser <john.olheiser@gmail.com>
Signed-off-by: jolheiser <john.olheiser@gmail.com>
Codecov Report
@@ Coverage Diff @@
## master #13358 +/- ##
=======================================
Coverage 42.14% 42.15%
=======================================
Files 690 690
Lines 75871 75888 +17
=======================================
+ Hits 31975 31988 +13
+ Misses 38668 38659 -9
- Partials 5228 5241 +13
Continue to review full report at Codecov.
|
Did this make it into v1.13.0? Merge date lets me think so, but milestone says otherwise.. |
You should compare merge date with v1.13.0-rc1 but not v1.13.0 |
Resolves #12913
Allows deletion of tags via API, but only if they are not attached to a release. If a release is attached, the user will have to call the API to delete the release, then call this API.
I considered allowing a query parameter or request body with the delete release API, however from my cursory searches it seems as though both would be undefined behavior with the
DELETE
method, so instead I opted for this approach.cc @6543