Skip to content

Commit beebee3

Browse files
jdneoJiaaming
authored andcommitted
build: Prepare for 3.14.0 (microsoft#1499)
1 parent c25a94e commit beebee3

File tree

7 files changed

+26
-7
lines changed

7 files changed

+26
-7
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ All notable changes to the "vscode-gradle" extension will be documented in this
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## 3.14.0
8+
### What's Changed
9+
* enhancement - Bump Gradle Wrapper to v8.5 and change Java 21 min Gradle version by @JoseLion in https://github.com/microsoft/vscode-gradle/pull/1455
10+
* enhancement - Group the Gradle related menus in the file explorer into a submenu labeled 'Gradle' by @testforstephen in https://github.com/microsoft/vscode-gradle/pull/1474
11+
* enhancement - Upgrade Build Server for Gradle to 0.2.0
12+
* fix - Exclude the project itself becoming its project classpath entry by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1464
13+
* fix - Append the log message to build output if it's from compilation report. by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1490
14+
* fix - Set GradleExecution jdk use java.import.gradle.java.home by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1491
15+
* fix - Refresh the output folders after build tasks by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1493
16+
* build - Fix buildJars task by @donat in https://github.com/microsoft/vscode-gradle/pull/1481
17+
* build - Add Build Server debug config by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1486
18+
* build - Move Gradle Daemons implementation from Java into Typescript by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1489
19+
20+
## New Contributors
21+
* @donat made their first contribution in https://github.com/microsoft/vscode-gradle/pull/1481
22+
* @Jiaaming made their first contribution in https://github.com/microsoft/vscode-gradle/pull/1486
23+
24+
**Full Changelog**: https://github.com/microsoft/vscode-gradle/compare/3.13.5...3.14.0
25+
726
## 3.13.5
827
### Added
928
- Implement onWillUpdate() in GradleBuildServerBuildSupport. [PR#1405](https://github.com/microsoft/vscode-gradle/pull/1405)

extension/jdtls.ext/com.microsoft.gradle.bs.importer.target/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
66
<artifactId>gradle-jdtls-ext-parent</artifactId>
7-
<version>0.2.0</version>
7+
<version>0.3.0</version>
88
</parent>
99
<artifactId>com.microsoft.gradle.bs.importer.tp</artifactId>
1010
<name>${base.name} :: Target Platform</name>

extension/jdtls.ext/com.microsoft.gradle.bs.importer/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: Gradle Build Server Importer
44
Bundle-SymbolicName: com.microsoft.gradle.bs.importer;singleton:=true
5-
Bundle-Version: 0.2.0
5+
Bundle-Version: 0.3.0
66
Bundle-Activator: com.microsoft.gradle.bs.importer.ImporterPlugin
77
Bundle-RequiredExecutionEnvironment: JavaSE-17
88
Bundle-ActivationPolicy: lazy

extension/jdtls.ext/com.microsoft.gradle.bs.importer/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
77
<artifactId>gradle-jdtls-ext-parent</artifactId>
8-
<version>0.2.0</version>
8+
<version>0.3.0</version>
99
</parent>
1010
<artifactId>com.microsoft.gradle.bs.importer</artifactId>
1111
<packaging>eclipse-plugin</packaging>

extension/jdtls.ext/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
55
<artifactId>gradle-jdtls-ext-parent</artifactId>
66
<name>${base.name} :: Parent</name>
7-
<version>0.2.0</version>
7+
<version>0.3.0</version>
88
<packaging>pom</packaging>
99
<properties>
1010
<base.name>Gradle Build Server Client</base.name>

extension/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extension/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-gradle",
33
"displayName": "Gradle for Java",
44
"description": "Manage Gradle Projects, run Gradle tasks and provide better Gradle file authoring experience in VS Code",
5-
"version": "3.13.5",
5+
"version": "3.14.0",
66
"private": true,
77
"publisher": "vscjava",
88
"aiKey": "b4aae7d0-c65b-4819-92bf-1d2f537ae7ce",

0 commit comments

Comments
 (0)