]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-9616 Add forgotten changelog about branch in api/component/show
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Tue, 22 Aug 2017 13:46:08 +0000 (15:46 +0200)
committerJanos Gyerik <janos.gyerik@sonarsource.com>
Tue, 12 Sep 2017 09:34:48 +0000 (11:34 +0200)
server/sonar-server/src/main/java/org/sonar/server/component/ws/ShowAction.java
server/sonar-server/src/test/java/org/sonar/server/component/ws/ShowActionTest.java

index f0953bee69322f8819b422a50a46aecbd5eaab8f..e5d820d2c64d9f22a028008b03a490cc49fb1e09 100644 (file)
@@ -75,7 +75,8 @@ public class ShowAction implements ComponentsWsAction {
         new Change("6.4", "Analysis date has been added to the response"),
         new Change("6.4", "The field 'id' is deprecated in the response"),
         new Change("6.4", "The 'visibility' field is added to the response"),
-        new Change("6.5", "Leak period date is added to the response"))
+        new Change("6.5", "Leak period date is added to the response"),
+        new Change("6.6", "'branch' is added to the response"))
       .setHandler(this);
 
     action.createParam(PARAM_COMPONENT_ID)
index ee08c280fc062a5548a64030e0952359206b90f1..66cf9d599de61c5a949a37aab82350fd12402335 100644 (file)
@@ -78,7 +78,8 @@ public class ShowActionTest {
       tuple("6.4", "Analysis date has been added to the response"),
       tuple("6.4", "The field 'id' is deprecated in the response"),
       tuple("6.4", "The 'visibility' field is added to the response"),
-      tuple("6.5", "Leak period date is added to the response"));
+      tuple("6.5", "Leak period date is added to the response"),
+      tuple("6.6", "'branch' is added to the response"));
     assertThat(action.params()).extracting(WebService.Param::key).containsExactlyInAnyOrder("component", "componentId", "branch");
 
     WebService.Param componentId = action.param(PARAM_COMPONENT_ID);