Skip to content

Commit 08eee7f

Browse files
authored
Merge pull request #5067 from microsoft/prepare_release_v3.51.0
Prepare release v3.51.0
2 parents 6457260 + 54349d6 commit 08eee7f

File tree

11 files changed

+88
-21
lines changed

11 files changed

+88
-21
lines changed

CHANGELOG.md

Lines changed: 22 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.51.0](#3510)
67
- [3.50.0](#3500)
78
- [3.49.0](#3490)
89
- [3.48.0](#3480)
@@ -65,6 +66,27 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
6566
- [3.0.7](#307)
6667
- [3.0.6](#306)
6768

69+
## 3.51.0
70+
### Added
71+
- Add support for IntelliJ 2021.1 EAP
72+
- Add Azure SDK reference book for spring
73+
74+
### Changed
75+
- Improve resource list performance with cache and preload
76+
- Update Azure related run configuration icons
77+
- Continue with warning for multi-tenant issues while getting subscriptions
78+
- Remove preview label for function and spring cloud
79+
80+
### Fixed
81+
- [#5008](https://github.com/microsoft/azure-tools-for-java/issues/5008) IndexOutOfBoundsException while create MySQL connection
82+
- [PR #4987](https://github.com/microsoft/azure-tools-for-java/pull/4987) InvalidParameterException occurs when close a streaming log
83+
- [PR #4987](https://github.com/microsoft/azure-tools-for-java/pull/4987) Failed when select file to deploy to Azure Web App
84+
- [PR #4998](https://github.com/microsoft/azure-tools-for-java/pull/4998) Fix IDEA203 regression of Spark failure debug in local
85+
- [PR #5006](https://github.com/microsoft/azure-tools-for-java/pull/5006) Fix NPE of exploring ADLS Gen2 FS in Spark job conf
86+
- [PR #5009](https://github.com/microsoft/azure-tools-for-java/pull/5009) Fix bundle build JCEF issue
87+
- [PR #5014](https://github.com/microsoft/azure-tools-for-java/pull/5014) Failed to create MySQL instance as resource provider is not registered
88+
- [PR #5055](https://github.com/microsoft/azure-tools-for-java/pull/5055) Can't deploy to Azure Web App when there is "Connect Azure Resource" in before launch
89+
6890
## 3.50.0
6991

7092
### 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.51.0-SNAPSHOT</version>
31+
<version>3.51.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.51.0-SNAPSHOT</azuretool.version>
41+
<azuretool.version>3.51.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
@@ -115,23 +115,23 @@ dependencies {
115115
compile 'com.microsoft.azure:azure-client-authentication:1.7.5', { force = true }
116116
compile 'com.microsoft.azure:azure-toolkit-springcloud-lib:0.5.0-SNAPSHOT', { force = true }
117117
aspect "com.microsoft.azure:azure-toolkit-common-lib:0.5.0-SNAPSHOT"
118-
compile 'com.microsoft.azuretools:azuretools-core:3.51.0-SNAPSHOT', {
118+
compile 'com.microsoft.azuretools:azuretools-core:3.51.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"
122122
}
123-
compile 'com.microsoft.azuretools:azure-explorer-common:3.51.0-SNAPSHOT', {
123+
compile 'com.microsoft.azuretools:azure-explorer-common:3.51.0', {
124124
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
125125
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
126126
exclude group: "javax.xml.bind", module: "jaxb-api"
127127
}
128-
compile 'com.microsoft.azuretools:hdinsight-node-common:3.51.0-SNAPSHOT', {
128+
compile 'com.microsoft.azuretools:hdinsight-node-common:3.51.0', {
129129
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
130130
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
131131
exclude group: "javax.xml.bind", module: "jaxb-api"
132132
}
133133
compile group: 'com.microsoft.azure', name: 'azure-auth-helper', version: '0.6.0'
134-
compile 'com.microsoft.azure:azure-tools-common:0.10.0'
134+
compile 'com.microsoft.azure:azure-tools-common:0.10.2'
135135
compile group: 'com.microsoft.azure.appplatform.v2020_07_01', name: 'azure-mgmt-appplatform', version: '1.0.0-beta'
136136
compile group: 'org.dom4j', name: 'dom4j', version: '2.1.3', {
137137
exclude group: "javax.xml.stream", module: "stax-api"

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

Lines changed: 31 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
xmlns:xi="http://www.w3.org/2001/XInclude">
33
<id>com.microsoft.tooling.msservices.intellij.azure</id>
44
<name>Azure Toolkit for IntelliJ</name>
5-
<version>3.51.0-SNAPSHOT</version>
5+
<version>3.51.0</version>
66
<vendor email="[email protected]" url="http://www.microsoft.com">Microsoft</vendor>
77

88
<description><![CDATA[
@@ -25,13 +25,37 @@
2525
<change-notes>
2626
<![CDATA[
2727
<html>
28-
<h3>3.50.1</h3>
29-
<h4>Fixes</h4>
28+
<h3>3.51.0</h3>
29+
<h4>Added</h4>
3030
<ul>
31-
<li>Fixes: Can't deploy to Azure Web App when there is "Connect Azure Resource" in before launch</li>
32-
<li>Fixes: InvalidParameterException occurs when close a streaming log</li>
33-
<li>Fixes: Failed when select file to deploy to Azure Web App</li>
34-
<li>Fixes: Failed to create MySQL instance as resource provider is not registered</li>
31+
<li>Add support for IntelliJ 2021.1 EAP</li>
32+
<li>Add Azure SDK reference book for spring</li>
33+
</ul>
34+
<h4>Changed</h4>
35+
<ul>
36+
<li>Improve resource list performance with cache and preload</li>
37+
<li>Update Azure related run configuration icons</li>
38+
<li>Continue with warning for multi-tenant issues while getting subscriptions</li>
39+
<li>Remove preview label for function and spring cloud</li>
40+
</ul>
41+
<h4>Fixed</h4>
42+
<ul>
43+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/5008">#5008</a> IndexOutOfBoundsException
44+
while create MySQL connection</li>
45+
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/4987">PR #4987</a> InvalidParameterException
46+
occurs when close a streaming log</li>
47+
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/4987">PR #4987</a> Failed when select file to
48+
deploy to Azure Web App </li>
49+
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/4998">PR #4998</a> Fix IDEA203 regression of
50+
Spark failure debug in local</li>
51+
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/5006">PR #5006</a> Fix NPE of exploring ADLS
52+
Gen2 FS in Spark job conf</li>
53+
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/5009">PR #5009</a> Fix bundle build JCEF issue
54+
</li>
55+
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/5014">PR #5014</a> Failed to create MySQL
56+
instance as resource provider is not registered </li>
57+
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/5055">PR #5055</a> Can't deploy to Azure Web App
58+
when there is "Connect Azure Resource" in before launch</li>
3559
</ul>
3660
<p>You may get the full change log <a
3761
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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
<!-- Version: 3.50.0 -->
22
# What's new in Azure Toolkit for IntelliJ
33

4+
## 3.51.0
5+
### Added
6+
- Add support for IntelliJ 2021.1 EAP
7+
- Add Azure SDK reference book for spring
8+
9+
### Changed
10+
- Improve resource list performance with cache and preload
11+
- Update Azure related run configuration icons
12+
- Continue with warning for multi-tenant issues while getting subscriptions
13+
- Remove preview label for function and spring cloud
14+
15+
### Fixed
16+
- [#5008](https://github.com/microsoft/azure-tools-for-java/issues/5008) IndexOutOfBoundsException while create MySQL connection
17+
- [PR #4987](https://github.com/microsoft/azure-tools-for-java/pull/4987) InvalidParameterException occurs when close a streaming log
18+
- [PR #4987](https://github.com/microsoft/azure-tools-for-java/pull/4987) Failed when select file to deploy to Azure Web App
19+
- [PR #4998](https://github.com/microsoft/azure-tools-for-java/pull/4998) Fix IDEA203 regression of Spark failure debug in local
20+
- [PR #5006](https://github.com/microsoft/azure-tools-for-java/pull/5006) Fix NPE of exploring ADLS Gen2 FS in Spark job conf
21+
- [PR #5009](https://github.com/microsoft/azure-tools-for-java/pull/5009) Fix bundle build JCEF issue
22+
- [PR #5014](https://github.com/microsoft/azure-tools-for-java/pull/5014) Failed to create MySQL instance as resource provider is not registered
23+
- [PR #5055](https://github.com/microsoft/azure-tools-for-java/pull/5055) Can't deploy to Azure Web App when there is "Connect Azure Resource" in before launch
24+
425
## 3.50.0
526

627
### 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.51.0-SNAPSHOT</version>
8+
<version>3.51.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.51.0-SNAPSHOT</version>
32+
<version>3.51.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.51.0-SNAPSHOT</version>
7+
<version>3.51.0</version>
88
</parent>
99
<groupId>com.microsoft.azuretools</groupId>
1010
<artifactId>hdinsight-node-common</artifactId>

Utils/pom.xml

Lines changed: 3 additions & 3 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.51.0-SNAPSHOT</version>
30+
<version>3.51.0</version>
3131
<packaging>pom</packaging>
3232
<name>${project.artifactId}-${project.version}</name>
3333
<properties>
34-
<azuretool.version>3.51.0-SNAPSHOT</azuretool.version>
34+
<azuretool.version>3.51.0</azuretool.version>
3535
<kotlin.version>1.3.72</kotlin.version>
3636
<kotlin.jvmTargetVersion>1.8</kotlin.jvmTargetVersion>
3737
<findsecbugs.version>1.11.0</findsecbugs.version>
@@ -45,7 +45,7 @@
4545
<azure.identity.version>1.2.1</azure.identity.version>
4646
<azure.resourcemanager.version>2.1.0</azure.resourcemanager.version>
4747
<azure.toolkit-auth.version>${project.version}</azure.toolkit-auth.version>
48-
<azure.tools-common.version>0.10.0</azure.tools-common.version>
48+
<azure.tools-common.version>0.10.2</azure.tools-common.version>
4949
<azure.version>1.38.0</azure.version>
5050

5151
<aspectj.version>1.8.13</aspectj.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.51.0-SNAPSHOT</version>
7+
<version>3.51.0</version>
88
</parent>
99
<groupId>com.microsoft.azuretools</groupId>
1010
<artifactId>spark-localrun-mock</artifactId>

0 commit comments

Comments
 (0)