Skip to content

Commit f3b1ecd

Browse files
authored
Prepare for release (#4579)
* Bump version for release * Update release notes
1 parent 3cb9f35 commit f3b1ecd

File tree

12 files changed

+41
-42
lines changed

12 files changed

+41
-42
lines changed

BuildProduct.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SCRIPTPATH=$(dirname "$SCRIPT")
77
cd "$SCRIPTPATH"
88

99
# Utils
10-
VERSION="3.42.0"
10+
VERSION="3.43.0"
1111
MAVEN_QUIET=""
1212

1313
# Eclipse

CHANGELOG.md

Lines changed: 10 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.42.0](#3420)
67
- [3.41.1](#3411)
78
- [3.41.0](#3410)
89
- [3.40.0](#3400)
@@ -55,6 +56,15 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
5556
- [3.0.7](#307)
5657
- [3.0.6](#306)
5758

59+
## 3.42.0
60+
61+
### Added
62+
- Support Custom Binding for Azure Functions
63+
64+
### Fixed
65+
- [#1110](https://github.com/microsoft/azure-maven-plugins/issues/1110) Fixes XSS issue in authentication
66+
67+
5868
## 3.41.1
5969

6070
### Fixed

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.42.0</version>
31+
<version>3.43.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.42.0</azuretool.version>
41+
<azuretool.version>3.43.0</azuretool.version>
4242
<azuretool.sdk.version>3.24.0.qualifier</azuretool.sdk.version>
4343
</properties>
4444
<dependencies>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,17 +96,17 @@ dependencies {
9696
compile 'net.minidev:json-smart:2.3'
9797
compile 'com.microsoft.azure:azure-client-runtime:1.7.5', { force = true }
9898
compile 'com.microsoft.azure:azure-client-authentication:1.7.5', { force = true }
99-
compile 'com.microsoft.azuretools:azuretools-core:3.42.0', {
99+
compile 'com.microsoft.azuretools:azuretools-core:3.43.0', {
100100
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
101101
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
102102
exclude group: "javax.xml.bind", module: "jaxb-api"
103103
}
104-
compile 'com.microsoft.azuretools:azure-explorer-common:3.42.0', {
104+
compile 'com.microsoft.azuretools:azure-explorer-common:3.43.0', {
105105
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
106106
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
107107
exclude group: "javax.xml.bind", module: "jaxb-api"
108108
}
109-
compile 'com.microsoft.azuretools:hdinsight-node-common:3.42.0', {
109+
compile 'com.microsoft.azuretools:hdinsight-node-common:3.43.0', {
110110
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
111111
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
112112
exclude group: "javax.xml.bind", module: "jaxb-api"

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

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

77
<description><![CDATA[
@@ -24,10 +24,17 @@
2424
<change-notes>
2525
<![CDATA[
2626
<html>
27-
<h3>3.41.1</h3>
27+
<h3>3.42.0</h3>
28+
<h4>Added</h4>
29+
<ul>
30+
<li>Support Custom Binding for Azure Functions</li>
31+
</ul>
2832
<h4>Fixed</h4>
2933
<ul>
30-
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4576">#4576</a> Can not list webapps in web app deployment panel</li>
34+
<li>
35+
<a href="https://github.com/microsoft/azure-maven-plugins/issues/1110">#1110</a>
36+
Fixes XSS issue in authentication
37+
</li>
3138
</ul>
3239
<p>You may get the full change log <a
3340
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: 8 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<!-- Version: 3.40.0 -->
22
# What's new in Azure Toolkit for IntelliJ
33

4+
## 3.42.0
5+
6+
### Added
7+
- Support Custom Binding for Azure Functions
8+
9+
### Fixed
10+
- [#1110](https://github.com/microsoft/azure-maven-plugins/issues/1110) Fixes XSS issue in authentication
11+
412
## 3.41.1
513

614
### Fixed
@@ -121,32 +129,6 @@ Azure Toolkit support Log Streaming for App Service now! You could get the live
121129
- [#4204](https://github.com/microsoft/azure-tools-for-java/issues/4204) Deploy Azure Spring Cloud App dialog default value is apply
122130
- [#4231](https://github.com/microsoft/azure-tools-for-java/issues/4231) Cannot use Auth file for spring cloud authentication
123131

124-
## 3.35.0
125-
126-
We are proud to announce the support for [Azure Spring Cloud](https://docs.microsoft.com/en-us/azure/spring-cloud/) in Azure Toolkit!
127-
128-
You could have full Azure Spring Cloud experience in IntelliJ Toolkit, which cludes resolve project dependencies
129-
, create/deploy and troubleshooting spring cloud apps. You may try the azure spring cloud in intellij toolkit with the [quick start](https://docs.microsoft.com/en-us/azure/spring-cloud/spring-cloud-tutorial-intellij-deploy-apps?source=intellijwhatsnew).
130-
131-
![Azure Spring Cloud](https://user-images.githubusercontent.com/12445236/82417195-c4344100-9aad-11ea-9791-fd0f33f446cd.png)
132-
133-
### Added
134-
- Add Azure Spring Cloud support in Azure Toolkits
135-
- Manage Azure Spring Cloud project dependencies
136-
- Manage Azure Spring Cloud apps in Azure Explorer
137-
* Create/Delete/Start/Stop/Restart
138-
* Assign/un-assign public endpoint
139-
* Update environment variables
140-
* Update JVM options
141-
* View app properties
142-
- Deploying apps from current project
143-
- Monitoring and troubleshooting apps
144-
* Getting public url
145-
* Getting test endpoint
146-
* Instance status(shown in app properties view)
147-
- Support trigger function with timer trigger
148-
- Support log streaming for Windows functions
149-
150132
### Fixed
151133
- [#4157](https://github.com/microsoft/azure-tools-for-java/issues/4157) Can't trigger function/admin http function when click 'Trigger Function' button
152134
- [#4160](https://github.com/microsoft/azure-tools-for-java/issues/4160) Nothing shown in function run mark

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.42.0</version>
8+
<version>3.43.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.42.0</version>
32+
<version>3.43.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.42.0</version>
7+
<version>3.43.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.42.0</version>
30+
<version>3.43.0</version>
3131
<packaging>pom</packaging>
3232
<name>${project.artifactId}-${project.version}</name>
3333
<properties>
34-
<azuretool.version>3.42.0</azuretool.version>
34+
<azuretool.version>3.43.0</azuretool.version>
3535
<applicationinsights.version>2.6.1</applicationinsights.version>
3636
<kotlin.version>1.3.72</kotlin.version>
3737
<kotlin.jvmTargetVersion>1.8</kotlin.jvmTargetVersion>

0 commit comments

Comments
 (0)