aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorJacek <jacek.poreda@sonarsource.com>2022-12-14 11:29:10 +0100
committersonartech <sonartech@sonarsource.com>2022-12-15 20:03:33 +0000
commitb4a6a0f82888fe26724a01439cfb279bbf08d589 (patch)
tree87a553f26daaf72d56a770b3c4acabbadb10d1f6 /sonar-ws
parenta48504427c0907284ce4010574d673f7aeac0e4a (diff)
downloadsonarqube-b4a6a0f82888fe26724a01439cfb279bbf08d589.tar.gz
sonarqube-b4a6a0f82888fe26724a01439cfb279bbf08d589.zip
SONAR-13799 Drop deprecated measures counters from `api/project_pull_requests/list`
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-projectpullrequests.proto6
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-projectpullrequests.proto b/sonar-ws/src/main/protobuf/ws-projectpullrequests.proto
index cad1acf8e58..bf0d871ae81 100644
--- a/sonar-ws/src/main/protobuf/ws-projectpullrequests.proto
+++ b/sonar-ws/src/main/protobuf/ws-projectpullrequests.proto
@@ -45,7 +45,7 @@ message PullRequest {
message Status {
optional string qualityGateStatus = 1;
- optional int64 bugs = 2;
- optional int64 vulnerabilities = 3;
- optional int64 codeSmells = 4;
+ reserved 2; // drop bugs field
+ reserved 3; // drop vulnerabilities field
+ reserved 4; // drop codeSmells field
}