Skip to content

Commit 61c8b7a

Browse files
authored
Fix issues found in end game (#4734)
* Bump azure to 1.36.3 * Fix create VM next step button enable with wrong condition * Update whats new document * Update whats new document content
1 parent 943901a commit 61c8b7a

File tree

7 files changed

+22
-6
lines changed

7 files changed

+22
-6
lines changed

PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/src/main/java/com/microsoft/applicationinsights/ui/config/messages.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ depLocation=dependencies/
1414
excp=Exception in getClasspathEntries
1515
azureSDKcontainerID=com.microsoft.azuretools.SDK_CONTAINER
1616
sdkID=com.microsoft.azuretools.sdk
17-
sdkJar=dependencies/azure-1.36.2.jar
17+
sdkJar=dependencies/azure-1.36.3.jar
1818
jstDep=org.eclipse.jst.component.dependency
1919
aiCheckBoxTxt=Enable telemetry with Application Insights
2020
webxmlPath=WebContent/WEB-INF/web.xml

PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoft.azuretools.wasdkjava.ui/src/main/java/com/microsoft/azuretools/wasdkjava/ui/classpath/messages.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ lblVersion=Version :
77
libNotAvail=Library is not available.
88
notFound=Not found
99
sdkID=com.microsoft.azuretools.sdk
10-
sdkJar=dependencies/azure-1.36.2.jar
10+
sdkJar=dependencies/azure-1.36.3.jar
1111
title=Microsoft Azure Libraries for Java
1212
verNotAvail=The selected version is not available.
1313
version1=Microsoft Azure Libraries for Java, version %s.%s.%s

PluginsAndFeatures/azure-toolkit-for-eclipse/com.microsoft.azuretools.core/src/com/microsoft/azuretools/core/utils/messages.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ err=Error
5656
prefFileName=WAEclipsePlugin
5757
bundleName=org.eclipse.core.runtime
5858
sdkLibBundleName=com.microsoftopentechnologies.windowsazure.tools.sdk
59-
sdkLibBaseJar=dependencies/azure-1.36.2.jar
59+
sdkLibBaseJar=dependencies/azure-1.36.3.jar
6060
SDKLocErrMsg=Error occurred while retrieving path of Azure libraries
6161
resCLExWkspRfrsh=Exception while refresh of workspace.
6262
cmhLblStrgAcc=Storage Accounts

PluginsAndFeatures/azure-toolkit-for-intellij/resources/whatsnew/whatsnew.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
1-
<!-- Version: 3.44.0 -->
1+
<!-- Version: 3.45.0 -->
22
# What's new in Azure Toolkit for IntelliJ
33

44
## 3.45.0
5+
Flight recorder support was added in the latest Azure Toolkit for IntelliJ v3.45.0! You may monitor your online app
6+
service in Azure explorer with single click and analyze the report with [Zulu Mission Control](https://www.azul.com/products/zulu-mission-control/) or IntelliJ (requires 2020.2 above Ultimate).
7+
8+
<img src="https://user-images.githubusercontent.com/12445236/98444079-b0a79000-214a-11eb-8015-51cd2a05a1c1.gif" width="800" height="600" />
9+
10+
Besides, file explorer is also added to Azure explorer, you could view and manage your files and logs in app service
11+
with this new feature.
12+
13+
![File Explorer](https://user-images.githubusercontent.com/12445236/98444253-93bf8c80-214b-11eb-8759-8176b520d515.png)
14+
15+
For all the updates and fixes in this release, please refer the release notes below.
16+
517
### Added
618
- Add file explorer for Web App and Function App in Azure explorer
719
- Support flight recorder for Web App

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/intellij/util/PluginHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
public class PluginHelper {
3131

32-
private static final String AZURE_ARTIFACT = "azure-1.36.2.jar";
32+
private static final String AZURE_ARTIFACT = "azure-1.36.3.jar";
3333

3434
/**
3535
* @return resource filename in plugin's directory

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/intellij/wizards/createarmvm/SelectImageStep.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,10 @@ public JComponent prepare(WizardNavigationState wizardNavigationState) {
262262
fillRegions();
263263
}
264264
}
265+
if ((knownImageBtn.isSelected() && knownImageComboBox.getSelectedItem() == null) ||
266+
(customImageBtn.isSelected() && imageLabelList.getSelectedValue() == null)) {
267+
disableNext();
268+
}
265269
return rootPanel;
266270
}
267271

Utils/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<kotlin.version>1.3.72</kotlin.version>
3737
<kotlin.jvmTargetVersion>1.8</kotlin.jvmTargetVersion>
3838
<jackson.version>2.11.1</jackson.version>
39-
<azure.version>1.36.2</azure.version>
39+
<azure.version>1.36.3</azure.version>
4040
<docker.client.version>8.16.0</docker.client.version>
4141
<azure.client.version>1.7.5</azure.client.version>
4242
<azure.storage.version>8.6.4</azure.storage.version>

0 commit comments

Comments
 (0)