Skip to content

Commit c3376fd

Browse files
authored
Add release note for IntelliJ 3.20.0 (#2942)
1 parent 7a39a92 commit c3376fd

File tree

2 files changed

+58
-20
lines changed

2 files changed

+58
-20
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
44

55
- [Change Log](#change-log)
66

7+
- [3.20.0](#3200)
78
- [3.19.0](#3190)
89
- [3.18.0](#3180)
910
- [3.17.0](#3170)
@@ -31,6 +32,29 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
3132
- [3.0.7](#307)
3233
- [3.0.6](#306)
3334

35+
## 3.20.0
36+
37+
### Added
38+
39+
- Support Failure Task Local Reproduce for Spark 2.3 on Cosmos
40+
- Support mock file system in Spark local console
41+
- Support ADLS Gen2 storage type to submit job to HDInsight cluster
42+
- Introduce extended properties field when provision a Spark on Cosmos cluster or submit a Spark on Cosmos Serverless job
43+
44+
### Changed
45+
46+
- Use device login as the default login method.
47+
- Change icons for HDInsight cluster and related configuration
48+
49+
### Fixed
50+
51+
- [#2805](https://github.com/Microsoft/azure-tools-for-java/issues/2805) Save password with SecureStore.
52+
- [#2888](https://github.com/Microsoft/azure-tools-for-java/issues/2888), [#2894](https://github.com/Microsoft/azure-tools-for-java/issues/2894), [#2921](https://github.com/Microsoft/azure-tools-for-java/issues/2921) Fix Spark on Cosmos Serverless job run failed related issues
53+
- [#2912](https://github.com/Microsoft/azure-tools-for-java/issues/2912) Check invalid access key for submitting with ADLS Gen2 account
54+
- [#2844](https://github.com/Microsoft/azure-tools-for-java/issues/2844) Refine WebHDFS and ADLS input path hints
55+
- [#2848](https://github.com/Microsoft/azure-tools-for-java/issues/2848) Reset background color for not empty ADLS path input
56+
- [#2749](https://github.com/Microsoft/azure-tools-for-java/issues/2749), [#2936](https://github.com/Microsoft/azure-tools-for-java/issues/2936) Fix Spark run configuration cast issues and classified exception message factory NPE issues
57+
3458
## 3.19.0
3559

3660
### Added

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

Lines changed: 34 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,40 @@
2020
<change-notes>
2121
<![CDATA[
2222
<html>
23-
<h3>[3.19.0]</h3>
24-
<h4>Added</h4>
25-
<ul>
26-
<li>Support open browser after Web App deployment.</li>
27-
<li>Support to link SQL Server Big Data cluster and submit Spark jobs.</li>
28-
<li>Support WebHDFS storage type to submit job to HDInsight cluster with ADLS Gen 1 storage account.</li>
29-
</ul>
30-
<h4>Changed</h4>
31-
<ul>
32-
<li>Update UI of Web App creation and deployment</li>
33-
<li>Subscription ID need to be specified for ADLS Gen 1 storage type</li>
34-
</ul>
35-
<h4>Fixed</h4>
36-
<ul>
37-
<li><a href="https://github.com/Microsoft/azure-tools-for-java/issues/2840" rel="nofollow">#2840</a> Submit successfully with invalid path for WebHDFS storage type issue.</li>
38-
<li><a href="https://github.com/Microsoft/azure-tools-for-java/issues/2747" rel="nofollow">#2747</a>,<a href="https://github.com/Microsoft/azure-tools-for-java/issues/2801" rel="nofollow">#2801</a> Error loadig HDInsight node issue.</li>
39-
<li><a href="https://github.com/Microsoft/azure-tools-for-java/issues/2714" rel="nofollow">#2714</a>,<a href="https://github.com/Microsoft/azure-tools-for-java/issues/2688" rel="nofollow">#2688</a>,<a href="https://github.com/Microsoft/azure-tools-for-java/issues/2669" rel="nofollow">#2669</a>,<a href="https://github.com/Microsoft/azure-tools-for-java/issues/2728" rel="nofollow">#2728</a>,<a href="https://github.com/Microsoft/azure-tools-for-java/issues/2807" rel="nofollow">#2807</a>,<a href="https://github.com/Microsoft/azure-tools-for-java/issues/2808" rel="nofollow">#2808</a>,<a href="https://github.com/Microsoft/azure-tools-for-java/issues/2811" rel="nofollow">#2811</a>,<a href="https://github.com/Microsoft/azure-tools-for-java/issues/2831" rel="nofollow">#2831</a>Spark Run Configuration validation issues.</li>
40-
<li><a href="https://github.com/Microsoft/azure-tools-for-java/issues/2810" rel="nofollow">#2810</a>,<a href="https://github.com/Microsoft/azure-tools-for-java/issues/2760" rel="nofollow">#2760</a> Spark Run Configuration issues when created from context menu.</li>
41-
</ul>
42-
<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>
23+
<h3>[3.20.0]</h3>
24+
<h4>Added</h4>
25+
<ul>
26+
<li>Support Failure Task Local Reproduce for Spark 2.3 on Cosmos</li>
27+
<li>Support mock file system in Spark local console</li>
28+
<li>Support ADLS Gen2 storage type to submit job to HDInsight cluster</li>
29+
<li>Introduce extended properties field when provision a Spark on Cosmos cluster or submit a Spark on Cosmos
30+
Serverless job</li>
31+
</ul>
32+
<h4>Changed</h4>
33+
<ul>
34+
<li>Use device login as the default login method.</li>
35+
<li>Change icons for HDInsight cluster and related configuration</li>
36+
</ul>
37+
<h4>Fixed</h4>
38+
<ul>
39+
<li><a href="https://github.com/Microsoft/azure-tools-for-java/issues/2805">#2805</a> Save password with
40+
SecureStore.</li>
41+
<li><a href="https://github.com/Microsoft/azure-tools-for-java/issues/2888">#2888</a>, <a
42+
href="https://github.com/Microsoft/azure-tools-for-java/issues/2894">#2894</a>, <a
43+
href="https://github.com/Microsoft/azure-tools-for-java/issues/2921">#2921</a> Fix Spark on Cosmos
44+
Serverless job run failed related issues</li>
45+
<li><a href="https://github.com/Microsoft/azure-tools-for-java/issues/2912">#2912</a> Check invalid access key for
46+
submitting with ADLS Gen2 account</li>
47+
<li><a href="https://github.com/Microsoft/azure-tools-for-java/issues/2844">#2844</a> Refine WebHDFS and ADLS input
48+
path hints</li>
49+
<li><a href="https://github.com/Microsoft/azure-tools-for-java/issues/2848">#2848</a> Reset background color for not
50+
empty ADLS path input</li>
51+
<li><a href="https://github.com/Microsoft/azure-tools-for-java/issues/2749">#2749</a>, <a
52+
href="https://github.com/Microsoft/azure-tools-for-java/issues/2936">#2936</a> Fix Spark run configuration
53+
cast issues and classified exception message factory NPE issues</li>
54+
</ul>
55+
<p>You may get the full change log <a
56+
href="https://github.com/Microsoft/azure-tools-for-java/blob/develop/CHANGELOG.md">here</a></p>
4357
</html>
4458
]]>
4559
</change-notes>

0 commit comments

Comments
 (0)