Skip to content

Commit 27a687d

Browse files
authored
Merge pull request #5281 from microsoft/prepare-endgame-s187
Prepare endgame s187
2 parents 7838611 + b1e62ee commit 27a687d

File tree

12 files changed

+52
-32
lines changed

12 files changed

+52
-32
lines changed

CHANGELOG.md

Lines changed: 12 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.53.0](#3530)
67
- [3.52.0](#3520)
78
- [3.51.0](#3510)
89
- [3.50.0](#3500)
@@ -67,6 +68,17 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
6768
- [3.0.7](#307)
6869
- [3.0.6](#306)
6970

71+
## 3.53.0
72+
### Added
73+
- Management workflow for Azure SQL Server
74+
- New login ui for service principal authentication
75+
76+
### Changed
77+
- Deprecated file based service principal authentication
78+
79+
### Fixed
80+
- [PR #5228](https://github.com/microsoft/azure-tools-for-java/pull/5228) Fix OAuth/Device login could not be cancelled
81+
7082
## 3.52.0
7183
### Added
7284
- Support OAuth for authentication

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.53.0-SNAPSHOT</version>
31+
<version>3.53.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.53.0-SNAPSHOT</azuretool.version>
41+
<azuretool.version>3.53.0</azuretool.version>
4242
<azuretool.sdk.version>3.25.0.qualifier</azuretool.sdk.version>
4343
</properties>
4444
<dependencies>

PluginsAndFeatures/azure-toolkit-for-intellij/azure-sdk-reference-book/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212
exclude group: "com.fasterxml.jackson", module: "jackson-bom"
1313
}
1414
compile project(':azure-intellij-plugin-lib')
15-
compile "com.microsoft.azure:azure-toolkit-common-lib:0.7.0-SNAPSHOT"
15+
compile "com.microsoft.azure:azure-toolkit-common-lib:0.7.0"
1616

17-
aspect "com.microsoft.azure:azure-toolkit-common-lib:0.7.0-SNAPSHOT"
17+
aspect "com.microsoft.azure:azure-toolkit-common-lib:0.7.0"
1818
}

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ subprojects {
103103
compileOnly 'org.projectlombok:lombok:1.18.8'
104104
annotationProcessor 'org.projectlombok:lombok:1.18.8'
105105

106-
compile 'com.microsoft.azure:azure-toolkit-common-lib:0.7.0-SNAPSHOT', {
106+
compile 'com.microsoft.azure:azure-toolkit-common-lib:0.7.0', {
107107
exclude group: "com.squareup.okhttp3", module: "okhttp"
108108
exclude group: "com.squareup.okhttp3", module: "okhttp-urlconnection"
109109
exclude group: "com.squareup.okhttp3", module: "logging-interceptor"
@@ -171,24 +171,24 @@ dependencies {
171171
exclude group: "com.squareup.okhttp3", module: "logging-interceptor"
172172
}
173173
compile 'com.microsoft.azure:azure-client-authentication:1.7.5', { force = true }
174-
compile 'com.microsoft.azure:azure-toolkit-resource-lib:0.7.0-SNAPSHOT', { force = true }
175-
compile 'com.microsoft.azure:azure-toolkit-springcloud-lib:0.7.0-SNAPSHOT', { force = true }
176-
aspect "com.microsoft.azure:azure-toolkit-common-lib:0.7.0-SNAPSHOT", {
174+
compile 'com.microsoft.azure:azure-toolkit-resource-lib:0.7.0', { force = true }
175+
compile 'com.microsoft.azure:azure-toolkit-springcloud-lib:0.7.0', { force = true }
176+
aspect "com.microsoft.azure:azure-toolkit-common-lib:0.7.0", {
177177
exclude group: "com.squareup.okhttp3", module: "okhttp"
178178
exclude group: "com.squareup.okhttp3", module: "okhttp-urlconnection"
179179
exclude group: "com.squareup.okhttp3", module: "logging-interceptor"
180180
}
181-
compile 'com.microsoft.azuretools:azuretools-core:3.53.0-SNAPSHOT', {
181+
compile 'com.microsoft.azuretools:azuretools-core:3.53.0', {
182182
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
183183
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
184184
exclude group: "javax.xml.bind", module: "jaxb-api"
185185
}
186-
compile 'com.microsoft.azuretools:azure-explorer-common:3.53.0-SNAPSHOT', {
186+
compile 'com.microsoft.azuretools:azure-explorer-common:3.53.0', {
187187
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
188188
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
189189
exclude group: "javax.xml.bind", module: "jaxb-api"
190190
}
191-
compile 'com.microsoft.azuretools:hdinsight-node-common:3.53.0-SNAPSHOT', {
191+
compile 'com.microsoft.azuretools:hdinsight-node-common:3.53.0', {
192192
exclude group: "com.microsoft.azure", module: "azure-client-authentication"
193193
exclude group: "com.microsoft.azure", module: "azure-client-runtime"
194194
exclude group: "javax.xml.bind", module: "jaxb-api"

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

Lines changed: 10 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.53.0-SNAPSHOT</version>
5+
<version>3.53.0</version>
66
<vendor email="[email protected]" url="http://www.microsoft.com">Microsoft</vendor>
77

88
<description><![CDATA[
@@ -25,20 +25,23 @@
2525
<change-notes>
2626
<![CDATA[
2727
<html>
28-
<h3>3.52.0</h3>
28+
<h3>3.53.0</h3>
2929
<h4>Added</h4>
3030
<ul>
31-
<li>Support OAuth for authentication</li>
32-
<li>Add support for management/client sdk in Azure SDK reference book</li>
31+
<li>Management workflow for Azure SQL Server</li>
32+
33+
<li>New login ui for service principal authentication</li>
3334
</ul>
3435
<h4>Changed</h4>
3536
<ul>
36-
<li>Improve UI for azure service connector</li>
37+
<li>Deprecated file based service principal authentication</li>
3738
</ul>
3839
<h4>Fixed</h4>
3940
<ul>
40-
<li><a href="https://github.com/microsoft/azure-tools-for-java/issues/5121">#5121</a> Fix project disposed exception for workspace tagging</li>
41-
<li><a href="https://github.com/microsoft/azure-tools-for-java/pull/5163">PR #5163</a> Fix enable local access may not work for Azure MySQL</li>
41+
<li>
42+
<a href="https://github.com/microsoft/azure-tools-for-java/pull/5228">PR #5228</a>
43+
Fix OAuth/Device login could not be cancelled
44+
</li>
4245
</ul>
4346
<p>You may get the full change log <a
4447
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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
<!-- Version: 3.51.0 -->
22
# What's new in Azure Toolkit for IntelliJ
33

4+
## 3.53.0
5+
### Added
6+
- Management workflow for Azure SQL Server
7+
- New login ui for service principal authentication
8+
9+
### Changed
10+
- Deprecated file based service principal authentication
11+
12+
### Fixed
13+
- [PR #5228](https://github.com/microsoft/azure-tools-for-java/pull/5228) Fix OAuth/Device login could not be cancelled
14+
415
## 3.52.0
516
### Added
617
- Support OAuth for authentication

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.53.0-SNAPSHOT</version>
8+
<version>3.53.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.53.0-SNAPSHOT</version>
32+
<version>3.53.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.53.0-SNAPSHOT</version>
7+
<version>3.53.0</version>
88
</parent>
99
<groupId>com.microsoft.azuretools</groupId>
1010
<artifactId>hdinsight-node-common</artifactId>

Utils/pom.xml

Lines changed: 3 additions & 9 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.53.0-SNAPSHOT</version>
30+
<version>3.53.0</version>
3131
<packaging>pom</packaging>
3232
<name>${project.artifactId}-${project.version}</name>
3333
<properties>
34-
<azuretool.version>3.53.0-SNAPSHOT</azuretool.version>
34+
<azuretool.version>3.53.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>
@@ -72,9 +72,8 @@
7272
<rx.version>1.3.8</rx.version>
7373
<slf4j-api.version>1.7.30</slf4j-api.version>
7474

75-
<azure.toolkit-lib.version>0.7.0-SNAPSHOT</azure.toolkit-lib.version>
75+
<azure.toolkit-lib.version>0.7.0</azure.toolkit-lib.version>
7676
<azure.storage.version>8.6.5</azure.storage.version>
77-
<azure.auth.helper.version>0.7.0-SNAPSHOT</azure.auth.helper.version>
7877
<azure.security.keyvault.secrets.version>4.2.0</azure.security.keyvault.secrets.version>
7978
<azure.security.keyvault.keys.version>4.2.0</azure.security.keyvault.keys.version>
8079
<azure.security.keyvault.certificates.version>4.1.0</azure.security.keyvault.certificates.version>
@@ -355,11 +354,6 @@
355354
<artifactId>azure-security-keyvault-certificates</artifactId>
356355
<version>${azure.security.keyvault.certificates.version}</version>
357356
</dependency>
358-
<dependency>
359-
<groupId>com.microsoft.azure</groupId>
360-
<artifactId>azure-auth-helper</artifactId>
361-
<version>${azure.auth.helper.version}</version>
362-
</dependency>
363357
<dependency>
364358
<groupId>com.microsoft.azure.appplatform.v2020_07_01</groupId>
365359
<artifactId>azure-mgmt-appplatform</artifactId>

0 commit comments

Comments
 (0)