]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-9684 Add changelog
authorJulien HENRY <julien.henry@sonarsource.com>
Wed, 9 Aug 2017 07:53:49 +0000 (09:53 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Thu, 7 Sep 2017 06:33:31 +0000 (08:33 +0200)
server/sonar-server/src/main/java/org/sonar/server/plugins/ws/InstalledAction.java

index a26a9c13cf05dd21e7e4e4a1c2550d99b1b7db52..0d5595ecd67db9a935cc0468407552c68a49c063 100644 (file)
@@ -26,6 +26,7 @@ import java.util.List;
 import java.util.Map;
 import java.util.SortedSet;
 import java.util.function.Function;
+import org.sonar.api.server.ws.Change;
 import org.sonar.api.server.ws.Request;
 import org.sonar.api.server.ws.Response;
 import org.sonar.api.server.ws.WebService;
@@ -69,6 +70,11 @@ public class InstalledAction implements PluginsWsAction {
     WebService.NewAction action = controller.createAction("installed")
       .setDescription("Get the list of all the plugins installed on the SonarQube instance, sorted by plugin name.")
       .setSince("5.2")
+      .setChangelog(
+        new Change("6.6", "The 'filename' field is added"),
+        new Change("6.6", "The 'hash' field is added"),
+        new Change("6.6", "The 'sonarLintSupported' field is added"),
+        new Change("6.6", "The 'updatedAt' field is added"))
       .setHandler(this)
       .setResponseExample(Resources.getResource(this.getClass(), "example-installed_plugins.json"));