Skip to content

Commit a7949ce

Browse files
Merge pull request #10211 from microsoft/prepare-release-202503
Prepare release 202503
2 parents b5c63cd + 3cf5b69 commit a7949ce

File tree

33 files changed

+54
-43
lines changed

33 files changed

+54
-43
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in this file.
44

55
- [Change Log](#change-log)
6+
- [3.95.0](#3950)
7+
- [3.94.0](#3940)
68
- [3.93.0](#3930)
79
- [3.92.0](#3920)
810
- [3.91.0](#3910)
@@ -115,6 +117,10 @@ All notable changes to "Azure Toolkit for IntelliJ IDEA" will be documented in t
115117
- [3.0.7](#307)
116118
- [3.0.6](#306)
117119

120+
## 3.95.0
121+
- Update function cdn uri
122+
- Integrate rule sets for flagging and making better Azure SDK usage
123+
118124
## 3.94.0
119125
- Fix some known issues.
120126

PluginsAndFeatures/AddLibrary/AzureLibraries/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<parent>
2828
<groupId>com.microsoft.azuretools</groupId>
2929
<artifactId>utils</artifactId>
30-
<version>3.94.0</version>
30+
<version>3.95.0</version>
3131
</parent>
3232
<groupId>com.microsoft.azuretools</groupId>
3333
<artifactId>com.microsoft.azuretools.sdk.lib</artifactId>
@@ -39,9 +39,9 @@
3939
</organization>
4040

4141
<properties>
42-
<azuretool.version>3.94.0</azuretool.version>
42+
<azuretool.version>3.95.0</azuretool.version>
4343
<azuretool.sdk.version>3.32.0.qualifier</azuretool.sdk.version>
44-
<azure.toolkit-lib.version>0.51.0</azure.toolkit-lib.version>
44+
<azure.toolkit-lib.version>0.52.2</azure.toolkit-lib.version>
4545
</properties>
4646
<dependencyManagement>
4747
<dependencies>

PluginsAndFeatures/azure-toolkit-for-eclipse/com.microsoft.azuretools.appservice/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ Export-Package: com.microsoft.azuretools.appservice,
4343
com.microsoft.azuretools.appservice.handlers,
4444
com.microsoft.azuretools.appservice.ui
4545
Bundle-ClassPath: .,
46-
target/lib/azure-toolkit-ide-appservice-lib-0.51.0.jar
46+
target/lib/azure-toolkit-ide-appservice-lib-0.52.2.jar

PluginsAndFeatures/azure-toolkit-for-eclipse/com.microsoft.azuretools.appservice/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<dependency>
1414
<groupId>com.microsoft.azure</groupId>
1515
<artifactId>azure-toolkit-ide-appservice-lib</artifactId>
16-
<version>0.51.0</version>
16+
<version>0.52.2</version>
1717
</dependency>
1818
</dependencies>
1919
<repositories>

PluginsAndFeatures/azure-toolkit-for-eclipse/com.microsoft.azuretools.springcloud/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Require-Bundle: org.eclipse.ui,
2323
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
2424
Bundle-ActivationPolicy: lazy
2525
Bundle-ClassPath: .,
26-
target/lib/azure-toolkit-ide-springcloud-lib-0.51.0.jar
26+
target/lib/azure-toolkit-ide-springcloud-lib-0.52.2.jar
2727
Import-Package: com.microsoft.azuretools.core.actions,
2828
org.eclipse.core.expressions,
2929
org.eclipse.jface.text.hyperlink,

PluginsAndFeatures/azure-toolkit-for-eclipse/com.microsoft.azuretools.springcloud/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<dependency>
1414
<groupId>com.microsoft.azure</groupId>
1515
<artifactId>azure-toolkit-ide-springcloud-lib</artifactId>
16-
<version>0.51.0</version>
16+
<version>0.52.2</version>
1717
</dependency>
1818
</dependencies>
1919
<build>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ allprojects {
4242
}
4343

4444
ext {
45-
azureToolkitLibsVersion = "0.51.0"
46-
azureToolkitIdeLibsVersion = "0.51.0"
45+
azureToolkitLibsVersion = "0.52.2"
46+
azureToolkitIdeLibsVersion = "0.52.2"
4747
}
4848

4949
dependencyManagement {

PluginsAndFeatures/azure-toolkit-for-intellij/azure-intellij-plugin-base/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pluginVersion=3.94.0
1+
pluginVersion=3.95.0
22
intellijDisplayVersion=2024.2
33
intellij_version=IU-242-EAP-SNAPSHOT
44
scala_plugin=org.intellij.scala:2024.2.5

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

Lines changed: 1 addition & 1 deletion
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</name>
5-
<version>3.94.0</version>
5+
<version>3.95.0</version>
66
<vendor email="[email protected]" url="http://www.microsoft.com">Microsoft</vendor>
77

88
<description>

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

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

4+
## 3.95.0
5+
- Update function cdn uri
6+
- Integrate rule sets for flagging and making better Azure SDK usage.
7+
48
## 3.94.0
59
- Fix some known issues.
610

0 commit comments

Comments
 (0)