Skip to content

Commit d166b42

Browse files
authored
Sync before run tasks while initialize setting panel (#4765)
* Sync before run tasks while initialize setting panel * Update hotfix change log * Add url for fixes and fix wording
1 parent 85fcb9f commit d166b42

File tree

3 files changed

+11
-25
lines changed

3 files changed

+11
-25
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
5959
- [3.0.7](#307)
6060
- [3.0.6](#306)
6161

62+
## 3.45.1
63+
### Fixed
64+
- [#4765](https://github.com/microsoft/azure-tools-for-java/pull/4765) Fixes no before run tasks when deploy Spring Cloud app in project menu
65+
6266
## 3.45.0
6367
### Added
6468
- Add file explorer for Web App and Function App in Azure explorer

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

Lines changed: 3 additions & 25 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.45.0</version>
4+
<version>3.45.1</version>
55
<vendor email="[email protected]" url="http://www.microsoft.com">Microsoft</vendor>
66

77
<description><![CDATA[
@@ -24,32 +24,10 @@
2424
<change-notes>
2525
<![CDATA[
2626
<html>
27-
<h3>3.45.0</h3>
28-
<h4>Added</h4>
29-
<ul>
30-
<li>Add file explorer for Web App and Function App in Azure explorer</li>
31-
<li>Support flight recorder for Web App</li>
32-
</ul>
33-
<h4>Changed</h4>
34-
<ul>
35-
<li>New creation wizard for Function App with basic and advanced mode</li>
36-
<li>More monitoring configuration in Web App/Function App creation wizard</li>
37-
<li>Update template for function project</li>
38-
</ul>
27+
<h3>3.45.1</h3>
3928
<h4>Fixed</h4>
4029
<ul>
41-
<li>
42-
<a href="https://github.com/microsoft/azure-tools-for-java/pull/4703">#4703</a>
43-
Fix NPE issue in Function creation/deployment
44-
</li>
45-
<li>
46-
<a href="https://github.com/microsoft/azure-tools-for-java/pull/4707">#4707</a>
47-
Enhace error handling for azure cli token expires
48-
</li>
49-
<li>
50-
<a href="https://github.com/microsoft/azure-tools-for-java/pull/4710">#4710</a>
51-
Register service provider for insights before get insights client
52-
</li>
30+
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/4765">#4765</a> Fixes no before run tasks when deploy Spring Cloud app in project menu</li>
5331
</ul>
5432
<p>You may get the full change log <a
5533
href="https://github.com/Microsoft/azure-tools-for-java/blob/develop/CHANGELOG.md">here</a></p>

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/intellij/runner/AzureSettingPanel.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,10 @@ protected void setupAzureArtifactCombo(String artifactIdentifier, RunConfigurati
256256
getCbAzureArtifact().setSelectedItem(azureArtifact);
257257
}
258258
}
259+
final AzureArtifact defaultArtifact = (AzureArtifact) getCbAzureArtifact().getSelectedItem();
260+
if (defaultArtifact != null) {
261+
syncBeforeRunTasks(defaultArtifact, configuration);
262+
}
259263
}
260264

261265
getLblAzureArtifact().setVisible(true);

0 commit comments

Comments
 (0)