build - Prepare for 3.16.0 (#1540)
This commit is contained in:
Родитель
3cfecc8aa0
Коммит
131f4cd300
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -4,6 +4,17 @@ All notable changes to the "vscode-gradle" extension will be documented in this
|
||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## 3.16.0
|
||||||
|
## What's Changed
|
||||||
|
* performance - Merge Task Server & Build Server by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1512
|
||||||
|
* performance - Merge Language Server to Gradle Server by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1525
|
||||||
|
* fix - Catch the error when running Gradle tests by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1524
|
||||||
|
* fix - Wrong status code returned for test completion by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1532
|
||||||
|
* fix - Override LanguageServer setTrace to avoid default Exception throw by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1533
|
||||||
|
* fix - Get daemon status handle project folder name include empty space by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1537
|
||||||
|
* documentation - Update architecture.md for merge server by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1520
|
||||||
|
* documentation - Update doc after merge language server by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1528
|
||||||
|
|
||||||
### 3.15.0
|
### 3.15.0
|
||||||
## What's Changed
|
## What's Changed
|
||||||
* feat - Support delegate tests to Gradle build Server by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1510
|
* feat - Support delegate tests to Gradle build Server by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1510
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
|
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
|
||||||
<artifactId>gradle-jdtls-ext-parent</artifactId>
|
<artifactId>gradle-jdtls-ext-parent</artifactId>
|
||||||
<version>0.4.0</version>
|
<version>0.5.0</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>com.microsoft.gradle.bs.importer.tp</artifactId>
|
<artifactId>com.microsoft.gradle.bs.importer.tp</artifactId>
|
||||||
<name>${base.name} :: Target Platform</name>
|
<name>${base.name} :: Target Platform</name>
|
||||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: Gradle Build Server Importer
|
Bundle-Name: Gradle Build Server Importer
|
||||||
Bundle-SymbolicName: com.microsoft.gradle.bs.importer;singleton:=true
|
Bundle-SymbolicName: com.microsoft.gradle.bs.importer;singleton:=true
|
||||||
Bundle-Version: 0.4.0
|
Bundle-Version: 0.5.0
|
||||||
Bundle-Activator: com.microsoft.gradle.bs.importer.ImporterPlugin
|
Bundle-Activator: com.microsoft.gradle.bs.importer.ImporterPlugin
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-17
|
Bundle-RequiredExecutionEnvironment: JavaSE-17
|
||||||
Bundle-ActivationPolicy: lazy
|
Bundle-ActivationPolicy: lazy
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
|
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
|
||||||
<artifactId>gradle-jdtls-ext-parent</artifactId>
|
<artifactId>gradle-jdtls-ext-parent</artifactId>
|
||||||
<version>0.4.0</version>
|
<version>0.5.0</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>com.microsoft.gradle.bs.importer</artifactId>
|
<artifactId>com.microsoft.gradle.bs.importer</artifactId>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
|
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
|
||||||
<artifactId>gradle-jdtls-ext-parent</artifactId>
|
<artifactId>gradle-jdtls-ext-parent</artifactId>
|
||||||
<name>${base.name} :: Parent</name>
|
<name>${base.name} :: Parent</name>
|
||||||
<version>0.4.0</version>
|
<version>0.5.0</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<properties>
|
<properties>
|
||||||
<base.name>Gradle Build Server Client</base.name>
|
<base.name>Gradle Build Server Client</base.name>
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "vscode-gradle",
|
"name": "vscode-gradle",
|
||||||
"version": "3.15.0",
|
"version": "3.16.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "vscode-gradle",
|
"name": "vscode-gradle",
|
||||||
"version": "3.15.0",
|
"version": "3.16.0",
|
||||||
"license": "SEE LICENSE IN LICENSE.md",
|
"license": "SEE LICENSE IN LICENSE.md",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"await-lock": "^2.2.2",
|
"await-lock": "^2.2.2",
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "vscode-gradle",
|
"name": "vscode-gradle",
|
||||||
"displayName": "Gradle for Java",
|
"displayName": "Gradle for Java",
|
||||||
"description": "Manage Gradle Projects, run Gradle tasks and provide better Gradle file authoring experience in VS Code",
|
"description": "Manage Gradle Projects, run Gradle tasks and provide better Gradle file authoring experience in VS Code",
|
||||||
"version": "3.15.0",
|
"version": "3.16.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"publisher": "vscjava",
|
"publisher": "vscjava",
|
||||||
"aiKey": "b4aae7d0-c65b-4819-92bf-1d2f537ae7ce",
|
"aiKey": "b4aae7d0-c65b-4819-92bf-1d2f537ae7ce",
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
"contributes": {
|
"contributes": {
|
||||||
"javaExtensions": [
|
"javaExtensions": [
|
||||||
"./server/com.microsoft.gradle.bs.importer-0.4.0.jar"
|
"./server/com.microsoft.gradle.bs.importer-0.5.0.jar"
|
||||||
],
|
],
|
||||||
"languages": [
|
"languages": [
|
||||||
{
|
{
|
||||||
|
|
Загрузка…
Ссылка в новой задаче