diff options
author | Léo Geoffroy <leo.geoffroy@sonarsource.com> | 2024-11-12 15:14:27 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-11-13 20:05:48 +0000 |
commit | 2bfe0518401cbc7cc101fdbc42d8b1aa665cccdf (patch) | |
tree | c1455a433c46ed8acad6c3b2a53bf8ed5df5f454 /sonar-ws | |
parent | 29168ab9565bcc29a752a58efb3c09848f7b2b03 (diff) | |
download | sonarqube-2bfe0518401cbc7cc101fdbc42d8b1aa665cccdf.tar.gz sonarqube-2bfe0518401cbc7cc101fdbc42d8b1aa665cccdf.zip |
SONAR-23566 Remove deprecation on rule 'type' and 'severity'
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-rules.proto | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-rules.proto b/sonar-ws/src/main/protobuf/ws-rules.proto index 43987d7974c..d0e62066763 100644 --- a/sonar-ws/src/main/protobuf/ws-rules.proto +++ b/sonar-ws/src/main/protobuf/ws-rules.proto @@ -78,8 +78,7 @@ message Rule { optional string mdDesc = 7; optional string mdNote = 8; optional string noteLogin = 9; - // Deprecated since 10.2, replace by impacts - optional string severity = 10 [deprecated = true]; + optional string severity = 10; optional sonarqube.ws.commons.RuleStatus status = 11; optional string internalKey = 12; optional bool isTemplate = 13; @@ -107,8 +106,7 @@ message Rule { optional string debtRemFnType = 34 [deprecated = true]; reserved 35; reserved 36; - // Deprecated since 10.2, replace by impacts - optional sonarqube.ws.commons.RuleType type = 37 [deprecated = true]; + optional sonarqube.ws.commons.RuleType type = 37; optional string defaultRemFnType = 38; optional string defaultRemFnGapMultiplier = 39; optional string defaultRemFnBaseEffort = 40; |