Skip to content

Commit bca7983

Browse files
Merge pull request #6138 from microsoft/changelog-november
changelog and what's new
2 parents 2af991c + 8e3ace2 commit bca7983

File tree

3 files changed

+87
-15
lines changed

3 files changed

+87
-15
lines changed

CHANGELOG.md

Lines changed: 29 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.59.0](#3590)
67
- [3.58.0](#3580)
78
- [3.57.1](#3571)
89
- [3.57.0](#3570)
@@ -74,6 +75,34 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
7475
- [3.0.7](#307)
7576
- [3.0.6](#306)
7677

78+
## 3.59.0
79+
### Added
80+
- Add Support for **Azure Database for PostgreSQL**, so that user can create/manage/consume PostgreSQL directly in IntelliJ.
81+
- create/manage PostgreSQL server instances
82+
- connect PostgreSQL with Intellij's DB Tools
83+
- consume PostgreSQL from local project/Azure WebApp via Resource Connector feature.
84+
- Add `Add SSH Configuration` on **Azure Virtual Machine** instance nodes, so that user can add Azure VM to SSH Configurations by one click.
85+
- Add dependency support for Azure SDK libs, so that our plugin will be suggested if Azure SDK is used but the plugin is not installed.
86+
- Add support for 2021.3
87+
88+
### Changed
89+
- BeforeRunTask for Azure Resource Connector will show which resources are connected to the run configuration.
90+
91+
### Fixed
92+
- CVE issues.
93+
- progress indicator shows `<unknown>.<unknow>` on menu actions.
94+
- URL starts with 'http' instead of 'https' in Web App properties window and Open in Browser option
95+
- Pops up com.azure.core.management.exception.ManagementException while deploying spring cloud with a creating service
96+
- Local run the project for connector, often pops up the error "java.util.ConcurrentModificationException"
97+
- No validation for invalid values with VNet and Public IP in Create VM dialog
98+
- Pops up NPE error with invalid values for Quota and Retention Period in Create Web App dialog
99+
- Web App name and Function name can't pass if it starts with numbers
100+
- Unclear validation info for invalid values in Create new Application Insights dialog
101+
- BeforeRunTask `Azure Resource Connector` will not be added to self-defined run configuration
102+
- Reopen projects for connector, often pops up the error "java.lang.ClassCastException"
103+
- Pops up NPE when searching with GET and showing hash typed key value with Redis
104+
- Creating Web App can be successfully submitted even with an existing name
105+
77106
## 3.58.0
78107
### Added
79108
- Add support for Azure AD (Preview)

PluginsAndFeatures/azure-toolkit-for-intellij/azure-intellij-plugin-lib/src/main/resources/whatsnew.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,34 @@
11
<!-- Version: 3.58.0 -->
22
# What's new in Azure Toolkit for IntelliJ
33

4+
## 3.59.0
5+
### Added
6+
- Add Support for **Azure Database for PostgreSQL**, so that user can create/manage/consume PostgreSQL directly in IntelliJ.
7+
- create/manage PostgreSQL server instances
8+
- connect PostgreSQL with Intellij's DB Tools
9+
- consume PostgreSQL from local project/Azure WebApp via Resource Connector feature.
10+
- Add `Add SSH Configuration` on **Azure Virtual Machine** instance nodes, so that user can add Azure VM to SSH Configurations by one click.
11+
- Add dependency support for Azure SDK libs, so that our plugin will be suggested if Azure SDK is used but the plugin is not installed.
12+
- Add support for 2021.3
13+
14+
### Changed
15+
- BeforeRunTask for Azure Resource Connector will show which resources are connected to the run configuration.
16+
17+
### Fixed
18+
- CVE issues.
19+
- progress indicator shows `<unknown>.<unknow>` on menu actions.
20+
- URL starts with 'http' instead of 'https' in Web App properties window and Open in Browser option
21+
- Pops up com.azure.core.management.exception.ManagementException while deploying spring cloud with a creating service
22+
- Local run the project for connector, often pops up the error "java.util.ConcurrentModificationException"
23+
- No validation for invalid values with VNet and Public IP in Create VM dialog
24+
- Pops up NPE error with invalid values for Quota and Retention Period in Create Web App dialog
25+
- Web App name and Function name can't pass if it starts with numbers
26+
- Unclear validation info for invalid values in Create new Application Insights dialog
27+
- BeforeRunTask `Azure Resource Connector` will not be added to self-defined run configuration
28+
- Reopen projects for connector, often pops up the error "java.lang.ClassCastException"
29+
- Pops up NPE when searching with GET and showing hash typed key value with Redis
30+
- Creating Web App can be successfully submitted even with an existing name
31+
432
## 3.58.0
533
We are pround to annouce the support for Azure AD in Azure Toolkit for IntelliJ! You may create your Azure AD application in IntelliJ and view the AD application templates as well as correspond code snippets. All the features could be founded in menu `Tools` -> `Azure`
634

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

Lines changed: 30 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -25,27 +25,42 @@
2525
<change-notes>
2626
<![CDATA[
2727
<html>
28-
<h3>3.58.0</h3>
28+
<h3>3.59.0</h3>
2929
<h4>Added</h4>
3030
<ul>
31-
<li>Add support for Azure AD (Preview)
32-
<ul>
33-
<li>Register Azure AD application</li>
34-
<li>View Azure AD application templates</li>
35-
</ul>
36-
</li>
37-
<li>Support connect to Azure Redis for spring boot project</li>
38-
</ul>
31+
<li>Add Support for **Azure Database for PostgreSQL**, so that user can create/manage/consume PostgreSQL directly in IntelliJ.
32+
<ul>
33+
<li>create/manage PostgreSQL server instances</li>
34+
<li>connect PostgreSQL with Intellij's DB Tools</li>
35+
<li>consume PostgreSQL from local project/Azure WebApp via Resource Connector feature. </li>
36+
</ul>
37+
</li>
38+
<li>Add `Add SSH Configuration` on **Azure Virtual Machine** instance nodes, so that user can add Azure VM to SSH Configurations by one click. </li>
39+
<li>Add dependency support for Azure SDK libs, so that our plugin will be suggested if Azure SDK is used but the plugin is not installed. </li>
40+
<li>Add support for 2021.3</li>
41+
<ul>
42+
3943
<h4>Changed</h4>
4044
<ul>
41-
<li>Remove outdated spring cloud dependency management</li>
42-
</ul>
45+
<li>BeforeRunTask for Azure Resource Connector will show which resources are connected to the run configuration.</li>
46+
<ul>
47+
4348
<h4>Fixed</h4>
4449
<ul>
45-
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/5923">#5923</a> Fix bug: ADLA accounts can't be listed in Spark on Cosmos subscription issue</li>
46-
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/5968">#5968</a> Fix bug: HDInsight project wizard accessibility issue</li>
47-
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/5996">#5996</a> Fix bug: Config not applied when starting livy interactive console</li>
48-
</ul>
50+
<li>CVE issues</li>
51+
<li>progress indicator shows `<unknown>.<unknow>` on menu actions.</li>
52+
<li>URL starts with 'http' instead of 'https' in Web App properties window and Open in Browser option</li>
53+
<li>Pops up com.azure.core.management.exception.ManagementException while deploying spring cloud with a creating service</li>
54+
<li>Local run the project for connector, often pops up the error "java.util.ConcurrentModificationException"</li>
55+
<li>No validation for invalid values with VNet and Public IP in Create VM dialog</li>
56+
<li>Pops up NPE error with invalid values for Quota and Retention Period in Create Web App dialog</li>
57+
<li>Web App name and Function name can't pass if it starts with numbers</li>
58+
<li>Unclear validation info for invalid values in Create new Application Insights dialog</li>
59+
<li>BeforeRunTask `Azure Resource Connector` will not be added to self-defined run configuration</li>
60+
<li>Reopen projects for connector, often pops up the error "java.lang.ClassCastException"</li>
61+
<li>Pops up NPE when searching with GET and showing hash typed key value with Redis</li>
62+
<li>Creating Web App can be successfully submitted even with an existing name</li>
63+
<ul>
4964
<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>
5065
</html>
5166
]]>

0 commit comments

Comments
 (0)