Skip to content

Commit 17af46c

Browse files
Merge branch 'endgame-202209' into endgame-202209.next
2 parents 38c9820 + 9728e5f commit 17af46c

File tree

4 files changed

+37
-1
lines changed

4 files changed

+37
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,16 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
111111
- [#4725](https://github.com/microsoft/azure-tools-for-java/issues/4725): Misaligned label in Web App property view
112112
- [#301](https://github.com/microsoft/azure-tools-for-java/issues/301): Should validate username when creating a VM
113113
- [#106](https://github.com/microsoft/azure-tools-for-java/issues/106): azureSettings file in WebApps shouldn't be created by default
114+
- No response when click on Open `Azure Storage Expolrer for storage` while the computer does not install Azure Storage Explorer.
115+
- The shortcut keys for the browser and expansion are the same.
116+
- All the roles of the HDInsight cluster are reader.
117+
- Local console and Livy console run failed.
118+
- Job view page: The two links in the job view page open the related pages very slowly.
119+
- Click on Job node, show IDE error occurred.
114120
- Other bugs.
115121

122+
### Changed
123+
- Remove menu `Submit Apache Spark Application`
116124

117125
## 3.68.1
118126
### Fixed

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,17 @@
2424
- [#4725](https://github.com/microsoft/azure-tools-for-java/issues/4725): Misaligned label in Web App property view
2525
- [#301](https://github.com/microsoft/azure-tools-for-java/issues/301): Should validate username when creating a VM
2626
- [#106](https://github.com/microsoft/azure-tools-for-java/issues/106): azureSettings file in WebApps shouldn't be created by default
27+
- No response when click on Open `Azure Storage Expolrer for storage` while the computer does not install Azure Storage Explorer.
28+
- The shortcut keys for the browser and expansion are the same.
29+
- All the roles of the HDInsight cluster are reader.
30+
- Local console and Livy console run failed.
31+
- Job view page: The two links in the job view page open the related pages very slowly.
32+
- Click on Job node, show IDE error occurred.
2733
- Other bugs.
2834

35+
### Changed
36+
- Remove menu `Submit Apache Spark Application`
37+
2938
## 3.68.1
3039
### Fixed
3140
- Fixed the data modification failure issue of `Azure Cosmos DB API for MongoDB` Data Sources.

PluginsAndFeatures/azure-toolkit-for-intellij/src/main/java/com/microsoft/azure/hdinsight/jobs/framework/JobViewEditor.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
import javax.swing.*;
2525
import java.beans.PropertyChangeListener;
26+
import java.util.WeakHashMap;
2627

2728
public class JobViewEditor implements FileEditor {
2829

@@ -36,6 +37,7 @@ public class JobViewEditor implements FileEditor {
3637
private final String uuid;
3738

3839
private static Logger LOG = Logger.getInstance(JobViewEditor.class.getName());
40+
private WeakHashMap<Key,Object> userDatas = new WeakHashMap<Key,Object>();
3941

4042
public JobViewEditor(@NotNull final Project project, @NotNull final VirtualFile file, final JobViewEditorProvider provider) {
4143
LOG.info("start open JobView page");
@@ -136,12 +138,17 @@ public void dispose() {
136138
@Nullable
137139
@Override
138140
public <T> T getUserData(@NotNull Key<T> key) {
141+
if (userDatas.containsKey(key)) {
142+
WeakHashMap<Key<T>,Object> userData = new WeakHashMap<Key<T>,Object>();
143+
userData.put(key,userDatas.get(key));
144+
return (T) userData;
145+
}
139146
return null;
140147
}
141148

142149
@Override
143150
public <T> void putUserData(@NotNull Key<T> key, @Nullable T t) {
144-
151+
this.userDatas.put(key, t);
145152
}
146153

147154
@Override

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,19 @@
5050
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/4725">#4725</a>: Misaligned label in Web App property view</li>
5151
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/301">#301</a>: Should validate username when creating a VM</li>
5252
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/106">#106</a>: azureSettings file in WebApps shouldn&#39;t be created by default</li>
53+
<li>No response when click on Open <code>Azure Storage Expolrer for storage</code> while the computer does not install Azure Storage Explorer.</li>
54+
<li>The shortcut keys for the browser and expansion are the same.</li>
55+
<li>All the roles of the HDInsight cluster are reader.</li>
56+
<li>Local console and Livy console run failed.</li>
57+
<li>Job view page: The two links in the job view page open the related pages very slowly.</li>
58+
<li>Click on Job node, show IDE error occurred.</li>
5359
<li>Other bugs</li>
60+
</ul>
61+
<h4>Changed</h4>
62+
<ul>
63+
<li>
64+
Remove menu <code>Submit Apache Spark Application</code>
65+
</li>
5466
</ul>
5567
<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>
5668
</html>

0 commit comments

Comments
 (0)