Skip to content

Commit 868a561

Browse files
endgame-202401 changelog
1 parent 7b342e7 commit 868a561

File tree

3 files changed

+51
-4
lines changed

3 files changed

+51
-4
lines changed

CHANGELOG.md

Lines changed: 19 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.85.0](#3850)
67
- [3.84.0](#3840)
78
- [3.83.0](#3830)
89
- [3.82.0](#3820)
@@ -106,6 +107,24 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
106107
- [3.0.7](#307)
107108
- [3.0.6](#306)
108109

110+
## 3.85.0
111+
### Added
112+
- Support for containerized FunctionApps (based on Azure Container Apps)
113+
- Support for creating docker WebApp/FunctionApp
114+
- Support for Managing Azure Container Registries (ACR) with bundled Docker plugin (2023.3) in integrated `Services` view.
115+
- Warn user when creating/deploying WebApps/FunctionApps of (to-be-) deprected runtime.
116+
117+
### Updated
118+
- Update icon of WebApp/FunctionApp to indicate its runtime.
119+
120+
### Fixed
121+
- [#8118](https://github.com/microsoft/azure-tools-for-java/issues/8118): NPE at EnvVarLineMarkerProvider.
122+
- [#8113](https://github.com/microsoft/azure-tools-for-java/issues/8113): java.nio.file.NoSuchFileException at AzureModule.getDefaultProfileName.
123+
- [#8109](https://github.com/microsoft/azure-tools-for-java/issues/8109): java.lang.ClassCastException at StoragePathPrefixCompletionProvider.addCompletions.
124+
- [#8093](https://github.com/microsoft/azure-tools-for-java/issues/8093): Speed Search not working correctly.
125+
- [#8081](https://github.com/microsoft/azure-tools-for-java/issues/8081): java.lang.AssertionError at AzureCognitiveServices.accounts.
126+
- [#8063](https://github.com/microsoft/azure-tools-for-java/issues/8063): java.lang.ArrayIndexOutOfBoundsException at TreeUtils.selectResourceNode.
127+
109128
## 3.84.0
110129
### Added
111130
- Browse Azure sample projects and create new project from them.

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
<!-- Version: 3.83.0 -->
22
# What's new in Azure Toolkit for IntelliJ
3+
## 3.85.0
4+
### Added
5+
- Support for containerized FunctionApps (based on Azure Container Apps)
6+
- Support for creating docker WebApp/FunctionApp
7+
- Support for Managing Azure Container Registries (ACR) with bundled Docker plugin (2023.3) in integrated `Services` view.
8+
- Warn user when creating/deploying WebApps/FunctionApps of (to-be-) deprected runtime.
9+
10+
### Updated
11+
- Update icon of WebApp/FunctionApp to indicate its runtime.
12+
13+
### Fixed
14+
- [#8118](https://github.com/microsoft/azure-tools-for-java/issues/8118): NPE at EnvVarLineMarkerProvider.
15+
- [#8113](https://github.com/microsoft/azure-tools-for-java/issues/8113): java.nio.file.NoSuchFileException at AzureModule.getDefaultProfileName.
16+
- [#8109](https://github.com/microsoft/azure-tools-for-java/issues/8109): java.lang.ClassCastException at StoragePathPrefixCompletionProvider.addCompletions.
17+
- [#8093](https://github.com/microsoft/azure-tools-for-java/issues/8093): Speed Search not working correctly.
18+
- [#8081](https://github.com/microsoft/azure-tools-for-java/issues/8081): java.lang.AssertionError at AzureCognitiveServices.accounts.
19+
- [#8063](https://github.com/microsoft/azure-tools-for-java/issues/8063): java.lang.ArrayIndexOutOfBoundsException at TreeUtils.selectResourceNode.
320

421
## 3.84.0
522
### Added

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

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,26 @@
2727
<change-notes>
2828
<![CDATA[
2929
<html>
30-
<h2 id="3-84-0">3.84.0</h2>
30+
<h2 id="3-85-0">3.85.0</h2>
3131
<h3 id="added">Added</h3>
3232
<ul>
33-
<li>Browse Azure sample projects and create new project from them. </li>
34-
<li>More &quot;shortcut&quot; actions to manage Azure Kubernetes Service (AKS) resources with bundled Kubernetes plugin (2023.3). </li>
33+
<li>Support for containerized FunctionApps (based on Azure Container Apps) </li>
34+
<li>Support for creating docker WebApp/FunctionApp</li>
35+
<li>Support for Managing Azure Container Registries (ACR) with bundled Docker plugin (2023.3) in integrated <code>Services</code> view. </li>
36+
<li>Warn user when creating/deploying WebApps/FunctionApps of (to-be-) deprected runtime.</li>
3537
</ul>
3638
<h3 id="updated">Updated</h3>
3739
<ul>
38-
<li>Migrate to use App Service stack API to get supported runtimes for Azure WebApps/Functions.</li>
40+
<li>Update icon of WebApp/FunctionApp to indicate its runtime.</li>
41+
</ul>
42+
<h3 id="fixed">Fixed</h3>
43+
<ul>
44+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/8118">#8118</a>: NPE at EnvVarLineMarkerProvider.</li>
45+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/8113">#8113</a>: java.nio.file.NoSuchFileException at AzureModule.getDefaultProfileName.</li>
46+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/8109">#8109</a>: java.lang.ClassCastException at StoragePathPrefixCompletionProvider.addCompletions.</li>
47+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/8093">#8093</a>: Speed Search not working correctly.</li>
48+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/8081">#8081</a>: java.lang.AssertionError at AzureCognitiveServices.accounts.</li>
49+
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/8063">#8063</a>: java.lang.ArrayIndexOutOfBoundsException at TreeUtils.selectResourceNode.</li>
3950
</ul>
4051
<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>
4152
</html>

0 commit comments

Comments
 (0)