Feature toggle the Properties API (and tab)#6887
Merged
ketan merged 1 commit intogocd:masterfrom Sep 6, 2019
Merged
Conversation
Member
Author
|
Rebasing and merging. The current VSM is here |
- Disables the "Properties" tab on the job detail page - Disable all "GET" API calls for properties. POST is still supported, for now, but will be removed in a couple of releases. Additionally, the `<property/>` tag is rarely used. This is used to extract metrics from XML reports (via XPATH) and publish them using the API. Support for `<property/>` tag will be removed in a couple of releases as well. The properties API provides the ability for GoCD to store arbitrary key-value-pair data associated with each build. The intent of this API (at the time of developing this) was to be able to store arbitrary metrics (like test count, coverage%, warning count, et.al.) and be able to track progress of these metrics over time. Fast forward to 2019, there are (much) better tools available that can do just this.
211f547 to
35d1f5e
Compare
This was referenced Dec 26, 2021
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
POST is still supported, for now, but will be removed in a couple of
releases. Additionally, the
<property/>tag is rarely used. This isused to extract metrics from XML reports (via XPATH) and publish them
using the API. Support for
<property/>tag will be removed in a coupleof releases as well.
The properties API provides the ability for GoCD to store arbitrary
key-value-pair data associated with each build. The intent of this API
(at the time of developing this) was to be able to store arbitrary
metrics (like test count, coverage%, warning count, et.al.) and be
able to track progress of these metrics over time.
Fast forward to 2019, there are (much) better tools available that can
do just this.