Skip to content

Commit

Permalink
Sync before run tasks while initialize setting panel (#4765)
Browse files Browse the repository at this point in the history
* Sync before run tasks while initialize setting panel

* Update hotfix change log

* Add url for fixes and fix wording
  • Loading branch information
Flanker32 authored Nov 23, 2020
1 parent 85fcb9f commit d166b42
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 25 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
- [3.0.7](#307)
- [3.0.6](#306)

## 3.45.1
### Fixed
- [#4765](https://github.com/microsoft/azure-tools-for-java/pull/4765) Fixes no before run tasks when deploy Spring Cloud app in project menu

## 3.45.0
### Added
- Add file explorer for Web App and Function App in Azure explorer
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin url="https://github.com/Microsoft/azure-tools-for-java">
<id>com.microsoft.tooling.msservices.intellij.azure</id>
<name>Azure Toolkit for IntelliJ</name>
<version>3.45.0</version>
<version>3.45.1</version>
<vendor email="[email protected]" url="http://www.microsoft.com">Microsoft</vendor>

<description><![CDATA[
Expand All @@ -24,32 +24,10 @@
<change-notes>
<![CDATA[
<html>
<h3>3.45.0</h3>
<h4>Added</h4>
<ul>
<li>Add file explorer for Web App and Function App in Azure explorer</li>
<li>Support flight recorder for Web App</li>
</ul>
<h4>Changed</h4>
<ul>
<li>New creation wizard for Function App with basic and advanced mode</li>
<li>More monitoring configuration in Web App/Function App creation wizard</li>
<li>Update template for function project</li>
</ul>
<h3>3.45.1</h3>
<h4>Fixed</h4>
<ul>
<li>
<a href="https://github.com/microsoft/azure-tools-for-java/pull/4703">#4703</a>
Fix NPE issue in Function creation/deployment
</li>
<li>
<a href="https://github.com/microsoft/azure-tools-for-java/pull/4707">#4707</a>
Enhace error handling for azure cli token expires
</li>
<li>
<a href="https://github.com/microsoft/azure-tools-for-java/pull/4710">#4710</a>
Register service provider for insights before get insights client
</li>
<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>
</ul>
<p>You may get the full change log <a
href="https://github.com/Microsoft/azure-tools-for-java/blob/develop/CHANGELOG.md">here</a></p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ protected void setupAzureArtifactCombo(String artifactIdentifier, RunConfigurati
getCbAzureArtifact().setSelectedItem(azureArtifact);
}
}
final AzureArtifact defaultArtifact = (AzureArtifact) getCbAzureArtifact().getSelectedItem();
if (defaultArtifact != null) {
syncBeforeRunTasks(defaultArtifact, configuration);
}
}

getLblAzureArtifact().setVisible(true);
Expand Down

0 comments on commit d166b42

Please sign in to comment.