Skip to content

Commit 708be69

Browse files
committed
Merge branch 'endgame-june' into qianjin-endgame-june-fix
2 parents 350fcc7 + 3083890 commit 708be69

File tree

12 files changed

+22
-20
lines changed

12 files changed

+22
-20
lines changed

PluginsAndFeatures/AddLibrary/AzureLibraries/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>com.microsoft.azuretools</groupId>
3030
<artifactId>utils</artifactId>
31-
<version>3.54.0-SNAPSHOT</version>
31+
<version>3.54.0</version>
3232
</parent>
3333
<groupId>com.microsoft.azuretools</groupId>
3434
<artifactId>com.microsoft.azuretools.sdk.lib</artifactId>
@@ -38,7 +38,7 @@
3838
<organization><name>Microsoft Corp.</name></organization>
3939

4040
<properties>
41-
<azuretool.version>3.54.0-SNAPSHOT</azuretool.version>
41+
<azuretool.version>3.54.0</azuretool.version>
4242
<azuretool.sdk.version>3.25.0.qualifier</azuretool.sdk.version>
4343
</properties>
4444
<dependencies>

PluginsAndFeatures/azure-toolkit-for-intellij/azure-sdk-reference-book/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212
exclude group: "com.fasterxml.jackson", module: "jackson-bom"
1313
}
1414
compile project(':azure-intellij-plugin-lib')
15-
compile "com.microsoft.azure:azure-toolkit-common-lib:0.9.0-SNAPSHOT"
15+
compile "com.microsoft.azure:azure-toolkit-common-lib:0.9.0"
1616

17-
aspect "com.microsoft.azure:azure-toolkit-common-lib:0.9.0-SNAPSHOT"
17+
aspect "com.microsoft.azure:azure-toolkit-common-lib:0.9.0"
1818
}

PluginsAndFeatures/azure-toolkit-for-intellij/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ subprojects {
9898
compileOnly 'org.projectlombok:lombok:1.18.20'
9999
annotationProcessor 'org.projectlombok:lombok:1.18.20'
100100

101-
compile 'com.microsoft.azure:azure-toolkit-common-lib:0.9.0-SNAPSHOT', {
101+
compile 'com.microsoft.azure:azure-toolkit-common-lib:0.9.0', {
102102
exclude group: "com.squareup.okhttp3", module: "okhttp"
103103
exclude group: "com.squareup.okhttp3", module: "okhttp-urlconnection"
104104
exclude group: "com.squareup.okhttp3", module: "logging-interceptor"
@@ -143,7 +143,7 @@ apply plugin: 'java'
143143

144144
dependencyManagement {
145145
imports {
146-
mavenBom 'com.microsoft.azure:azure-toolkit-libs:0.9.0-SNAPSHOT'
146+
mavenBom 'com.microsoft.azure:azure-toolkit-libs:0.9.0'
147147
}
148148
}
149149

@@ -169,17 +169,17 @@ dependencies {
169169
exclude group: "com.squareup.okhttp3", module: "logging-interceptor"
170170
}
171171

172-
compile 'com.microsoft.azuretools:azuretools-core:3.54.0-SNAPSHOT', {
172+
compile 'com.microsoft.azuretools:azuretools-core:3.54.0', {
173173
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
174174
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
175175
exclude group: "javax.xml.bind", module: "jaxb-api"
176176
}
177-
compile 'com.microsoft.azuretools:azure-explorer-common:3.54.0-SNAPSHOT', {
177+
compile 'com.microsoft.azuretools:azure-explorer-common:3.54.0', {
178178
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
179179
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
180180
exclude group: "javax.xml.bind", module: "jaxb-api"
181181
}
182-
compile 'com.microsoft.azuretools:hdinsight-node-common:3.54.0-SNAPSHOT', {
182+
compile 'com.microsoft.azuretools:hdinsight-node-common:3.54.0', {
183183
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
184184
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
185185
exclude group: "javax.xml.bind", module: "jaxb-api"

PluginsAndFeatures/azure-toolkit-for-intellij/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
xmlns:xi="http://www.w3.org/2001/XInclude">
33
<id>com.microsoft.tooling.msservices.intellij.azure</id>
44
<name>Azure Toolkit for IntelliJ</name>
5-
<version>3.54.0-SNAPSHOT</version>
5+
<version>3.54.0</version>
66
<vendor email="[email protected]" url="http://www.microsoft.com">Microsoft</vendor>
77

88
<description><![CDATA[

Utils/azure-explorer-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<relativePath>../pom.xml</relativePath>
66
<groupId>com.microsoft.azuretools</groupId>
77
<artifactId>utils</artifactId>
8-
<version>3.54.0-SNAPSHOT</version>
8+
<version>3.54.0</version>
99
</parent>
1010
<artifactId>azure-explorer-common</artifactId>
1111
<properties>

Utils/azure-explorer-common/src/com/microsoft/tooling/msservices/serviceexplorer/azure/mysql/MySQLModule.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ public void renderChildren(List<MySqlServer> servers) {
5050

5151
@Override
5252
protected void refreshItems() {
53-
this.renderChildren(Azure.az(AzureMySql.class).list());
53+
final List<MySqlServer> server = Azure.az(AzureMySql.class).list();
54+
this.removeAllChildNodes();
55+
this.renderChildren(server);
5456
}
5557

5658
@Override

Utils/azure-explorer-common/src/com/microsoft/tooling/msservices/serviceexplorer/azure/mysql/MySQLNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public MySQLNode(AzureRefreshableNode parent, @Nonnull MySqlServer server) {
4848
this.server = server;
4949
this.serverState = server.entity().getState();
5050
loadActions();
51-
AzureEventBus.after("mysql|server.restart", this::onMySqlServerStatusChanged);
51+
AzureEventBus.after("mysql|server.start", this::onMySqlServerStatusChanged);
5252
AzureEventBus.after("mysql|server.stop", this::onMySqlServerStatusChanged);
5353
AzureEventBus.after("mysql|server.restart", this::onMySqlServerStatusChanged);
5454
AzureEventBus.before("mysql|server.start", this::onMySqlServerStatusChanging);

Utils/azuretools-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<relativePath>../pom.xml</relativePath>
3030
<groupId>com.microsoft.azuretools</groupId>
3131
<artifactId>utils</artifactId>
32-
<version>3.54.0-SNAPSHOT</version>
32+
<version>3.54.0</version>
3333
</parent>
3434
<artifactId>azuretools-core</artifactId>
3535
<properties>

Utils/hdinsight-node-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<relativePath>../pom.xml</relativePath>
55
<groupId>com.microsoft.azuretools</groupId>
66
<artifactId>utils</artifactId>
7-
<version>3.54.0-SNAPSHOT</version>
7+
<version>3.54.0</version>
88
</parent>
99
<groupId>com.microsoft.azuretools</groupId>
1010
<artifactId>hdinsight-node-common</artifactId>

Utils/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
<modelVersion>4.0.0</modelVersion>
2828
<groupId>com.microsoft.azuretools</groupId>
2929
<artifactId>utils</artifactId>
30-
<version>3.54.0-SNAPSHOT</version>
30+
<version>3.54.0</version>
3131
<packaging>pom</packaging>
3232
<name>${project.artifactId}-${project.version}</name>
3333
<properties>
34-
<azuretool.version>3.54.0-SNAPSHOT</azuretool.version>
34+
<azuretool.version>3.54.0</azuretool.version>
3535
<kotlin.version>1.3.72</kotlin.version>
3636
<kotlin.jvmTargetVersion>1.8</kotlin.jvmTargetVersion>
3737
<findsecbugs.version>1.11.0</findsecbugs.version>
@@ -48,7 +48,7 @@
4848
<powermock.version>1.7.0RC4</powermock.version>
4949
<rx.version>1.3.8</rx.version>
5050

51-
<azure.toolkit-lib.version>0.9.0-SNAPSHOT</azure.toolkit-lib.version>
51+
<azure.toolkit-lib.version>0.9.0</azure.toolkit-lib.version>
5252
<powermock.version>2.0.9</powermock.version>
5353
</properties>
5454
<modules>

0 commit comments

Comments
 (0)