From: Julien HENRY Date: Wed, 9 Aug 2017 07:53:49 +0000 (+0200) Subject: SONAR-9684 Add changelog X-Git-Tag: 6.6-RC1~434 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e4ec4b3ee79847c5bbbdce748982e4f1f18f7753;p=sonarqube.git SONAR-9684 Add changelog --- diff --git a/server/sonar-server/src/main/java/org/sonar/server/plugins/ws/InstalledAction.java b/server/sonar-server/src/main/java/org/sonar/server/plugins/ws/InstalledAction.java index a26a9c13cf0..0d5595ecd67 100644 --- a/server/sonar-server/src/main/java/org/sonar/server/plugins/ws/InstalledAction.java +++ b/server/sonar-server/src/main/java/org/sonar/server/plugins/ws/InstalledAction.java @@ -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"));