Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync before run tasks while initialize setting panel #4765

Merged
merged 3 commits into from
Nov 23, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
- Sync before run tasks while initialize setting panel
Flanker32 marked this conversation as resolved.
Show resolved Hide resolved

## 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>Sync before run tasks while initialize setting panel</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