Skip to content

Commit 66945d5

Browse files
committed
Merge branch 'develop' into develop.next
2 parents a6711d2 + 2884d51 commit 66945d5

File tree

200 files changed

+3470
-3615
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

200 files changed

+3470
-3615
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in this file.
44

55
- [Change Log](#change-log)
6+
- [3.48.0](#3480)
67
- [3.47.0](#3470)
78
- [3.46.0](#3460)
89
- [3.45.1](#3451)
@@ -62,6 +63,14 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
6263
- [3.0.7](#307)
6364
- [3.0.6](#306)
6465

66+
## 3.48.0
67+
68+
### Changed
69+
- Update icons in Azure toolkits
70+
- Update Tomcat base images
71+
- Using non-blocking UI to replace blocking progress indicator
72+
- Remove non-functional "cancel" buttons in foreground operations
73+
6574
## 3.47.0
6675

6776
### Added

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.48.0</version>
31+
<version>3.49.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.48.0</azuretool.version>
41+
<azuretool.version>3.49.0</azuretool.version>
4242
<azuretool.sdk.version>3.25.0.qualifier</azuretool.sdk.version>
4343
</properties>
4444
<dependencies>

PluginsAndFeatures/azure-toolkit-for-eclipse/com.microsoft.azuretools.container/src/main/java/com/microsoft/azuretools/container/Constant.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ public class Constant {
4040
public static final String ERROR_CREATING_DOCKERFILE = "Error occurred in generating Dockerfile, "
4141
+ "with exception:\n%s";
4242
public static final String ERROR_RUNNING_DOCKER = "Error occurred in Docker Run, with exception:\n%s";
43-
public static final String DOCKERFILE_CONTENT_TOMCAT = "FROM tomcat:8.5-jre8\r\n"
44-
+ "RUN rm -fr /usr/local/tomcat/webapps/ROOT\r\n" + "COPY %s /usr/local/tomcat/webapps/ROOT.war\r\n";
43+
public static final String DOCKERFILE_CONTENT_TOMCAT = "FROM mcr.microsoft.com/java/tomcat:8-zulu-alpine-tomcat-9" + System.lineSeparator()
44+
+ "RUN rm -fr /usr/local/tomcat/webapps/ROOT" + System.lineSeparator()
45+
+ "COPY %s /usr/local/tomcat/webapps/ROOT.war" + System.lineSeparator();
4546
public static final String DOCKERFILE_CONTENT_SPRING = "FROM azul/zulu-openjdk-alpine:8\r\n" + "VOLUME /tmp\r\n"
4647
+ "EXPOSE 8080\r\n" + "COPY %s app.jar\r\n"
4748
+ "ENTRYPOINT java -Djava.security.egd=file:/dev/./urandom -jar /app.jar";

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,25 +110,25 @@ dependencies {
110110
compile 'net.minidev:json-smart:2.3'
111111
compile 'com.microsoft.azure:azure-client-runtime:1.7.5', { force = true }
112112
compile 'com.microsoft.azure:azure-client-authentication:1.7.5', { force = true }
113-
aspect "com.microsoft.azuretools:azuretools-core:3.48.0"
114-
compile 'com.microsoft.azuretools:azuretools-core:3.48.0', {
113+
aspect "com.microsoft.azuretools:azuretools-core:3.49.0"
114+
compile 'com.microsoft.azuretools:azuretools-core:3.49.0', {
115115
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
116116
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
117117
exclude group: "javax.xml.bind", module: "jaxb-api"
118118
}
119-
compile 'com.microsoft.azuretools:azure-explorer-common:3.48.0', {
119+
compile 'com.microsoft.azuretools:azure-explorer-common:3.49.0', {
120120
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
121121
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
122122
exclude group: "javax.xml.bind", module: "jaxb-api"
123123
}
124-
compile 'com.microsoft.azuretools:hdinsight-node-common:3.48.0', {
124+
compile 'com.microsoft.azuretools:hdinsight-node-common:3.49.0', {
125125
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
126126
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
127127
exclude group: "javax.xml.bind", module: "jaxb-api"
128128
}
129129
compile group: 'com.microsoft.azure', name: 'azure-auth-helper', version: '0.6.0'
130130
compile 'com.microsoft.azure:azure-tools-common:0.10.0'
131-
compile group: 'com.microsoft.azure.appplatform.v2019_05_01_preview', name: 'azure-mgmt-appplatform', version: '1.0.0-beta-2'
131+
compile group: 'com.microsoft.azure.appplatform.v2020_07_01', name: 'azure-mgmt-appplatform', version: '1.0.0-beta'
132132
compile group: 'org.dom4j', name: 'dom4j', version: '2.1.3', {
133133
exclude group: "javax.xml.stream", module: "stax-api"
134134
exclude group: "xpp3", module: "xpp3"
@@ -238,4 +238,4 @@ spotbugsMain {
238238
jvmArgs = [ '-Duser.language=en' ]
239239
includeFilter = file("$rootProject.projectDir/../../tools/spotbugs-security-include.xml")
240240
excludeFilter = file("$rootProject.projectDir/../../tools/spotbugs-security-exclude.xml")
241-
}
241+
}

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

Lines changed: 9 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin url="https://github.com/Microsoft/azure-tools-for-java">
22
<id>com.microsoft.tooling.msservices.intellij.azure</id>
33
<name>Azure Toolkit for IntelliJ</name>
4-
<version>3.47.0</version>
4+
<version>3.48.0</version>
55
<vendor email="[email protected]" url="http://www.microsoft.com">Microsoft</vendor>
66

77
<description><![CDATA[
@@ -24,40 +24,13 @@
2424
<change-notes>
2525
<![CDATA[
2626
<html>
27-
<h3>3.47.0</h3>
28-
<h4>Added</h4>
29-
<ul>
30-
<li>Add Azure MySQL support in Azure Toolkits
31-
<ul>
32-
<li>Manage Azure Database for MySQL instance (create/start/stop/restart/configure/show properties)</li>
33-
<li>Configure Azure Database for MySQL to allow access it from azure services and local PC</li>
34-
<li>Show sample of JDBC connection strings on Azure Database for MySQL</li>
35-
<li>Open and connect to Azure Database for MySQL server by Intellij database tools</li>
36-
</ul>
37-
</li>
38-
<li>Add Stacktrace filter in Spark console</li>
39-
<li>Enable speed search in subscription table</li>
40-
<li>Enable speed search in Azure explorer tree</li>
41-
</ul>
27+
<h3>3.48.0</h3>
4228
<h4>Changed</h4>
4329
<ul>
44-
<li>Upgrade Azure Blob batch SDK to 12.7.0</li>
45-
<li>Enhance App Service file explorer in Azure explorer</li>
46-
</ul>
47-
<h4>Fixed</h4>
48-
<ul>
49-
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4801">#4801</a> Spark tools library serializer
50-
potential issues</li>
51-
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4808">#4808</a> Fixes unable to attach
52-
function host while running functions</li>
53-
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4814">#4814</a> Spark livy console staring
54-
being blocked by artifacts uploading failure</li>
55-
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4823">#4823</a> Compiling warnings of
56-
ConfigurationFactory.getId being deprecated</li>
57-
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4827">#4827</a> Fix HDInsight cluster can't
58-
link non-cluster-default Azure Blob storage account issue</li>
59-
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4829">#4829</a> UI hang issue with changing
60-
Spark Synapse run configuration ADLS Gen2 storage key settings</li>
30+
<li>Update icons in Azure toolkits</li>
31+
<li>Update Tomcat base images</li>
32+
<li>Using non-blocking UI to replace blocking progress indicator</li>
33+
<li>Remove non-functional "cancel" buttons in foreground operations</li>
6134
</ul>
6235
<p>You may get the full change log <a
6336
href="https://github.com/Microsoft/azure-tools-for-java/blob/develop/CHANGELOG.md">here</a></p>
@@ -88,7 +61,7 @@
8861
factoryClass="com.microsoft.intellij.activitylog.ActivityLogToolWindowFactory"
8962
id="Azure Activity Log"
9063
canCloseContents="true"
91-
icon="/icons/RoleFolder.gif"/>
64+
icon="/icons/Common/AzureActivityLog.svg"/>
9265
<projectConfigurable groupId="root"
9366
id="com.microsoft.intellij.AzureConfigurable"
9467
provider="com.microsoft.intellij.AzureConfigurableProvider"
@@ -116,7 +89,7 @@
11689
factoryClass="com.microsoft.intellij.components.ServerExplorerToolWindowFactory"
11790
id="Azure Explorer"
11891
canCloseContents="false"
119-
icon="/icons/AzureExplorer_16.png"/>
92+
icon="/icons/Common/Azure.svg"/>
12093

12194
<toolWindow
12295
anchor="bottom"
@@ -307,7 +280,7 @@
307280
<add-to-group group-id="RunContextPopupGroup" anchor="last"/>
308281
</action>
309282

310-
<group id="AzurePopupGroup" text="Azure" description="Azure" icon="/icons/azure.png" popup="true" class="com.microsoft.intellij.actions.AzurePopupGroup">
283+
<group id="AzurePopupGroup" text="Azure" description="Azure" icon="/icons/Common/Azure.svg" popup="true" class="com.microsoft.intellij.actions.AzurePopupGroup">
311284
<reference ref="Actions.RunFunction"/>
312285
<reference ref="Actions.DeployFunction"/>
313286
<separator/>

PluginsAndFeatures/azure-toolkit-for-intellij/resources/com/microsoft/intellij/ui/messages/messages.properties

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1411,6 +1411,8 @@ function.hint.setFunctionVersion=Functions extension version isn't configured, s
14111411
function.hint.azureWebJobsStorage=The Azure Functions runtime uses this storage account connection string for all functions except for HTTP triggered functions.
14121412
function.hint.functionsWorkerRuntime=The language worker runtime to load in the function app.
14131413
function.create.task.title=Creating New Function App...
1414+
function.create.success.title=Create function app
1415+
function.create.success.message=Function app[%s] is successfully created.
14141416
function.create.hint.creating=Creating function app %s ...
14151417
function.create.hint.created=Function app %s created.
14161418
function.create.hint.startCreateFunction=The specified function app does not exist. Creating a new function app...
@@ -1488,11 +1490,15 @@ function.cli.error.notFound=Azure Functions Core Tools not found. Please go to h
14881490
function.binding.error.parseFailed=Cannot parse annotation information, expect type: %s, actual type: %s
14891491
function.binding.storage.found=StorageAccount annotation found.
14901492
function.binding.storage.notFound=No StorageAccount annotation found.
1491-
webapp.create.task.title=Creating New Web App...
1492-
webapp.create.error.title=Error occurred on creating Web App:
1493+
webapp.create.title=Create web app
1494+
webapp.create.success.title=Create web app
1495+
webapp.create.success.message=Successfully created web app[{0}].
1496+
webapp.create.error.title=Failed to create web app:
14931497
webapp.create.error.createFailed=Create WebApp Failed
14941498
webapp.deploy.noDeploymentSlot=No available deployment slot, click to create a new one
1495-
webapp.deploy.task.title=Deploying Artifact to Web App...
1499+
webapp.deploy.title=Deploy artifact to web app
1500+
webapp.deploy.success.title=Deploy artifact to web app
1501+
webapp.deploy.success.message=Successfully deployed artifact to web app[{0}]
14961502
webapp.deploy.configuration.title=Deploy to Azure
14971503
webapp.deploy.hint.deploymentSlot=Deployment slots are live apps with their own hostnames. App content and configurations elements can be swapped between two\
14981504
deployment slots, including the production slot.
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 5 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)