Skip to content

Commit b70e93e

Browse files
authored
Prepare release (#4839)
* Bump version for release * Update release notes for new release * Add release notes for HDInsights
1 parent 39f195c commit b70e93e

File tree

11 files changed

+90
-24
lines changed

11 files changed

+90
-24
lines changed

CHANGELOG.md

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

55
- [Change Log](#change-log)
6+
- [3.47.0](#3470)
67
- [3.46.0](#3460)
78
- [3.45.1](#3451)
89
- [3.45.0](#3450)
@@ -61,6 +62,30 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
6162
- [3.0.7](#307)
6263
- [3.0.6](#306)
6364

65+
## 3.47.0
66+
67+
### Added
68+
- Add Azure MySQL support in Azure Toolkits
69+
- Manage Azure MySQL instance (create/start/stop/restart/configure/show properties)
70+
- Configure Azure MySQL to allow access it from azure services and local PC
71+
- Show sample of JDBC connection strings on MySQL
72+
- Open and connect to MySQL server by Intellij database tools
73+
- Add Stacktrace filter in Spark console
74+
- Enable speed search in subscription table
75+
- Enable speed search in Azure explorer tree
76+
77+
### Changed
78+
- Upgrade Azure Blob batch SDK to 12.7.0
79+
- Enhance App Service file explorer in Azure explorer
80+
81+
### Fixed
82+
- [#4801](https://github.com/microsoft/azure-tools-for-java/issues/4801) Spark tools library serializer potential issues
83+
- [#4808](https://github.com/microsoft/azure-tools-for-java/issues/4808) Fixes unable to attach function host while running functions
84+
- [#4814](https://github.com/microsoft/azure-tools-for-java/issues/4814) Spark livy console staring being blocked by artifacts uploading failure
85+
- [#4823](https://github.com/microsoft/azure-tools-for-java/issues/4823) Compiling warnings of ConfigurationFactory.getId being deprecated
86+
- [#4827](https://github.com/microsoft/azure-tools-for-java/issues/4827) Fix HDInsight cluster can't link non-cluster-default Azure Blob storage account issue
87+
- [#4829](https://github.com/microsoft/azure-tools-for-java/issues/4829) UI hang issue with changing Spark Synapse run configuration ADLS Gen2 storage key settings
88+
6489
## 3.46.0
6590

6691
### Added

PluginsAndFeatures/AddLibrary/AzureLibraries/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>com.microsoft.azuretools</groupId>
3030
<artifactId>utils</artifactId>
31-
<version>3.47.0</version>
31+
<version>3.48.0</version>
3232
</parent>
3333
<groupId>com.microsoft.azuretools</groupId>
3434
<artifactId>com.microsoft.azuretools.sdk.lib</artifactId>
@@ -38,7 +38,7 @@
3838
<organization><name>Microsoft Corp.</name></organization>
3939

4040
<properties>
41-
<azuretool.version>3.47.0</azuretool.version>
41+
<azuretool.version>3.48.0</azuretool.version>
4242
<azuretool.sdk.version>3.25.0.qualifier</azuretool.sdk.version>
4343
</properties>
4444
<dependencies>

PluginsAndFeatures/azure-toolkit-for-intellij/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,18 +104,18 @@ dependencies {
104104
compile 'net.minidev:json-smart:2.3'
105105
compile 'com.microsoft.azure:azure-client-runtime:1.7.5', { force = true }
106106
compile 'com.microsoft.azure:azure-client-authentication:1.7.5', { force = true }
107-
aspect "com.microsoft.azuretools:azuretools-core:3.47.0"
108-
compile 'com.microsoft.azuretools:azuretools-core:3.47.0', {
107+
aspect "com.microsoft.azuretools:azuretools-core:3.48.0"
108+
compile 'com.microsoft.azuretools:azuretools-core:3.48.0', {
109109
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
110110
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
111111
exclude group: "javax.xml.bind", module: "jaxb-api"
112112
}
113-
compile 'com.microsoft.azuretools:azure-explorer-common:3.47.0', {
113+
compile 'com.microsoft.azuretools:azure-explorer-common:3.48.0', {
114114
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
115115
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
116116
exclude group: "javax.xml.bind", module: "jaxb-api"
117117
}
118-
compile 'com.microsoft.azuretools:hdinsight-node-common:3.47.0', {
118+
compile 'com.microsoft.azuretools:hdinsight-node-common:3.48.0', {
119119
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
120120
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
121121
exclude group: "javax.xml.bind", module: "jaxb-api"

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

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

77
<description><![CDATA[
@@ -24,23 +24,40 @@
2424
<change-notes>
2525
<![CDATA[
2626
<html>
27-
<h3>3.46.0</h3>
27+
<h3>3.47.0</h3>
2828
<h4>Added</h4>
2929
<ul>
30-
<li>Support IntelliJ 2020.3 RC</li>
30+
<li>Add Azure MySQL support in Azure Toolkits
31+
<ul>
32+
<li>Manage Azure MySQL instance (create/start/stop/restart/configure/show properties)</li>
33+
<li>Configure Azure MySQL to allow access it from azure services and local PC</li>
34+
<li>Show sample of JDBC connection strings on MySQL</li>
35+
<li>Open and connect to MySQL server by Intellij database tools</li>
36+
</ul>
37+
</li>
38+
<li>Add Stacktrace filter in Spark console</li>
39+
<li>Enable speed search in subscription table</li>
40+
<li>Enable speed search in Azure explorer tree</li>
3141
</ul>
3242
<h4>Changed</h4>
3343
<ul>
34-
<li>Refactor error handling, unify the error notifications</li>
44+
<li>Upgrade Azure Blob batch SDK to 12.7.0</li>
45+
<li>Enhance App Service file explorer in Azure explorer</li>
3546
</ul>
3647
<h4>Fixed</h4>
3748
<ul>
38-
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/4764">#4764</a> Fixes HDInsights clusters of all
39-
subscriptions(instead of the selected subscription) is listed </li>
40-
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/4766">#4766</a> Fixes duplicate before run task
41-
for Spring Cloud deployment run configuration</li>
42-
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/4784">#4784</a> Fixes failed to auth with Azure
43-
CLI with multi Azure environment enabled</li>
49+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4801">#4801</a> Spark tools library serializer
50+
potential issues</li>
51+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4808">#4808</a> Fixes unable to attach
52+
function host while running functions</li>
53+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4814">#4814</a> Spark livy console staring
54+
being blocked by artifacts uploading failure</li>
55+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4823">#4823</a> Compiling warnings of
56+
ConfigurationFactory.getId being deprecated</li>
57+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4827">#4827</a> Fix HDInsight cluster can't
58+
link non-cluster-default Azure Blob storage account issue</li>
59+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4829">#4829</a> UI hang issue with changing
60+
Spark Synapse run configuration ADLS Gen2 storage key settings</li>
4461
</ul>
4562
<p>You may get the full change log <a
4663
href="https://github.com/Microsoft/azure-tools-for-java/blob/develop/CHANGELOG.md">here</a></p>

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

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,30 @@
1-
<!-- Version: 3.45.0 -->
1+
<!-- Version: 3.47.0 -->
22
# What's new in Azure Toolkit for IntelliJ
33

4+
## 3.47.0
5+
6+
### Added
7+
- Add Azure MySQL support in Azure Toolkits
8+
- Manage Azure MySQL instance (create/start/stop/restart/configure/show properties)
9+
- Configure Azure MySQL to allow access it from azure services and local PC
10+
- Show sample of JDBC connection strings on MySQL
11+
- Open and connect to MySQL server by Intellij database tools
12+
- Add Stacktrace filter in Spark console
13+
- Enable speed search in subscription table
14+
- Enable speed search in Azure explorer tree
15+
16+
### Changed
17+
- Upgrade Azure Blob batch SDK to 12.7.0
18+
- Enhance App Service file explorer in Azure explorer
19+
20+
### Fixed
21+
- [#4801](https://github.com/microsoft/azure-tools-for-java/issues/4801) Spark tools library serializer potential issues
22+
- [#4808](https://github.com/microsoft/azure-tools-for-java/issues/4808) Fixes unable to attach function host while running functions
23+
- [#4814](https://github.com/microsoft/azure-tools-for-java/issues/4814) Spark livy console staring being blocked by artifacts uploading failure
24+
- [#4823](https://github.com/microsoft/azure-tools-for-java/issues/4823) Compiling warnings of ConfigurationFactory.getId being deprecated
25+
- [#4827](https://github.com/microsoft/azure-tools-for-java/issues/4827) Fix HDInsight cluster can't link non-cluster-default Azure Blob storage account issue
26+
- [#4829](https://github.com/microsoft/azure-tools-for-java/issues/4829) UI hang issue with changing Spark Synapse run configuration ADLS Gen2 storage key settings
27+
428
## 3.46.0
529

630
### Added

Utils/azure-explorer-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<relativePath>../pom.xml</relativePath>
66
<groupId>com.microsoft.azuretools</groupId>
77
<artifactId>utils</artifactId>
8-
<version>3.47.0</version>
8+
<version>3.48.0</version>
99
</parent>
1010
<artifactId>azure-explorer-common</artifactId>
1111
<properties>

Utils/azuretools-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<relativePath>../pom.xml</relativePath>
3030
<groupId>com.microsoft.azuretools</groupId>
3131
<artifactId>utils</artifactId>
32-
<version>3.47.0</version>
32+
<version>3.48.0</version>
3333
</parent>
3434
<artifactId>azuretools-core</artifactId>
3535
<properties>

Utils/hdinsight-node-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<relativePath>../pom.xml</relativePath>
55
<groupId>com.microsoft.azuretools</groupId>
66
<artifactId>utils</artifactId>
7-
<version>3.47.0</version>
7+
<version>3.48.0</version>
88
</parent>
99
<groupId>com.microsoft.azuretools</groupId>
1010
<artifactId>hdinsight-node-common</artifactId>

Utils/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
<modelVersion>4.0.0</modelVersion>
2828
<groupId>com.microsoft.azuretools</groupId>
2929
<artifactId>utils</artifactId>
30-
<version>3.47.0</version>
30+
<version>3.48.0</version>
3131
<packaging>pom</packaging>
3232
<name>${project.artifactId}-${project.version}</name>
3333
<properties>
34-
<azuretool.version>3.47.0</azuretool.version>
34+
<azuretool.version>3.48.0</azuretool.version>
3535
<aspectj.version>1.8.13</aspectj.version>
3636
<applicationinsights.version>2.6.2</applicationinsights.version>
3737
<kotlin.version>1.3.72</kotlin.version>

Utils/spark-localrun-mock/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<relativePath>../pom.xml</relativePath>
55
<groupId>com.microsoft.azuretools</groupId>
66
<artifactId>utils</artifactId>
7-
<version>3.47.0</version>
7+
<version>3.48.0</version>
88
</parent>
99
<groupId>com.microsoft.azuretools</groupId>
1010
<artifactId>spark-localrun-mock</artifactId>

0 commit comments

Comments
 (0)