Skip to content

Commit f7919c1

Browse files
committed
Merge branch 'release-3.51.0' into release
2 parents 287fe17 + 8f5d539 commit f7919c1

File tree

6 files changed

+16
-10
lines changed

6 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
6969
## 3.51.0
7070
### Added
7171
- Add support for IntelliJ 2021.1 EAP
72-
- Add Azure SDK reference book for spring
72+
- Add Azure SDK reference book for Spring
7373

7474
### Changed
7575
- Improve resource list performance with cache and preload
@@ -78,6 +78,7 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
7878
- Remove preview label for function and spring cloud
7979

8080
### Fixed
81+
- [#5002](https://github.com/microsoft/azure-tools-for-java/issues/5002) Failed to run Spark application with filled-in default Azure Blob storage account credential
8182
- [#5008](https://github.com/microsoft/azure-tools-for-java/issues/5008) IndexOutOfBoundsException while create MySQL connection
8283
- [PR #4987](https://github.com/microsoft/azure-tools-for-java/pull/4987) InvalidParameterException occurs when close a streaming log
8384
- [PR #4987](https://github.com/microsoft/azure-tools-for-java/pull/4987) Failed when select file to deploy to Azure Web App

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<h4>Added</h4>
3030
<ul>
3131
<li>Add support for IntelliJ 2021.1 EAP</li>
32-
<li>Add Azure SDK reference book for spring</li>
32+
<li>Add Azure SDK reference book for Spring</li>
3333
</ul>
3434
<h4>Changed</h4>
3535
<ul>
@@ -40,6 +40,8 @@
4040
</ul>
4141
<h4>Fixed</h4>
4242
<ul>
43+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/5002">#5002</a> Failed to run Spark application
44+
with filled-in default Azure Blob storage account credential</li>
4345
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/5008">#5008</a> IndexOutOfBoundsException
4446
while create MySQL connection</li>
4547
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/4987">PR #4987</a> InvalidParameterException

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
<!-- Version: 3.50.0 -->
1+
<!-- Version: 3.51.0 -->
22
# What's new in Azure Toolkit for IntelliJ
33

44
## 3.51.0
55
### Added
6+
<img src="https://user-images.githubusercontent.com/69189193/113823126-da73ea00-97b0-11eb-9b69-958f5d5a2b00.gif" width="840" height="525" />
7+
68
- Add support for IntelliJ 2021.1 EAP
7-
- Add Azure SDK reference book for spring
9+
- Add Azure SDK reference book for Spring
810

911
### Changed
1012
- Improve resource list performance with cache and preload
@@ -13,6 +15,7 @@
1315
- Remove preview label for function and spring cloud
1416

1517
### Fixed
18+
- [#5002](https://github.com/microsoft/azure-tools-for-java/issues/5002) Failed to run Spark application with filled-in default Azure Blob storage account credential
1619
- [#5008](https://github.com/microsoft/azure-tools-for-java/issues/5008) IndexOutOfBoundsException while create MySQL connection
1720
- [PR #4987](https://github.com/microsoft/azure-tools-for-java/pull/4987) InvalidParameterException occurs when close a streaming log
1821
- [PR #4987](https://github.com/microsoft/azure-tools-for-java/pull/4987) Failed when select file to deploy to Azure Web App

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/toolkit/intellij/link/LinkMySQLToModuleDialog.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
public class LinkMySQLToModuleDialog extends AzureDialog<LinkConfig<MySQLResourceConfig, ModuleResourceConfig>> {
3434

35-
private static final String PROMPT_TITLE = "Azure Explorer";
35+
private static final String PROMPT_TITLE = "Connect Azure Database for MySQL(Preview)";
3636
private static final String[] PROMPT_OPTIONS = new String[]{"Yes", "No"};
3737
private static final String PROMPT_MESSAGE = "This resource already existed in your local environment. Do you want to override it?";
3838
private JPanel rootPanel;
@@ -64,7 +64,7 @@ public String showAndGetEnvPrefix() {
6464

6565
@Override
6666
protected String getDialogTitle() {
67-
return "Connect Azure Database for MySQL";
67+
return "Connect Azure Database for MySQL(Preview)";
6868
}
6969

7070
@Override

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/toolkit/intellij/mysql/action/LinkMySQLAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@Name(LinkMySQLAction.ACTION_NAME)
1818
public class LinkMySQLAction extends NodeActionListener {
1919

20-
public static final String ACTION_NAME = "Connect to Project";
20+
public static final String ACTION_NAME = "Connect to Project(Preview)";
2121

2222
private final MySQLNode node;
2323
private final Project project;

Utils/azuretools-core/src/com/microsoft/azuretools/core/mvp/model/function/AzureFunctionMvpModel.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public void deleteFunction(String sid, String appId) {
7373
type = AzureOperation.Type.SERVICE
7474
)
7575
public void restartFunction(String sid, String appId) {
76-
getFunctionAppsClient(sid).getById(appId).restart();
76+
getFunctionById(sid, appId).restart();
7777
}
7878

7979
@AzureOperation(
@@ -82,7 +82,7 @@ public void restartFunction(String sid, String appId) {
8282
type = AzureOperation.Type.SERVICE
8383
)
8484
public void startFunction(String sid, String appId) {
85-
getFunctionAppsClient(sid).getById(appId).start();
85+
getFunctionById(sid, appId).start();
8686
}
8787

8888
@AzureOperation(
@@ -91,7 +91,7 @@ public void startFunction(String sid, String appId) {
9191
type = AzureOperation.Type.SERVICE
9292
)
9393
public void stopFunction(String sid, String appId) {
94-
getFunctionAppsClient(sid).getById(appId).stop();
94+
getFunctionById(sid, appId).stop();
9595
}
9696

9797
/**

0 commit comments

Comments
 (0)