Skip to content

Commit

Permalink
build - Prepare for 3.16.3 (#1577)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo authored Aug 12, 2024
1 parent 2061b3a commit b31d370
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 8 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ 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/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 3.16.3
## What's Changed
* enhancement - Activate the extension when gradle files are in sub-folders of the workspace by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1570
* enhancement - Notify user to install jdk when GradleServerEnv not found by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1569
* fix - Language server generatePipepath error by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1557
* fix - Add bspProxy connectors error listeners by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1558
* fix - Fallback to BuildShip when importer connect hit max attempts by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1560
* fix - Improve bspProxy start sequence by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1563
* fix - Deduplicate the project dependency by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1568
* fix - Refine waitForImporterPipePath event & listener sequence by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1573
* fix - Fallback to Buildship when multiple gradle projects in same level by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1574
* fix - Create linked folder for resource if it's placed out of the project by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1575
* fix - Fallback to Buildship when failed to generate named pipe by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1576
* docs - Refine doc & Remove redundant file by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1561
* docs - Add comments for taskServerClient handleConnectError by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1565
* build - Bump @grpc/grpc-js from 1.8.14 to 1.8.22 in /extension by @dependabot in https://github.com/microsoft/vscode-gradle/pull/1494
* build - Bump node version to 18.20.4 by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1567

## 3.16.2
### What's Changed
* fix - Stop start build server when getRandomPipepath return empty by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1545
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
<artifactId>gradle-jdtls-ext-parent</artifactId>
<version>0.5.2</version>
<version>0.5.3</version>
</parent>
<artifactId>com.microsoft.gradle.bs.importer.tp</artifactId>
<name>${base.name} :: Target Platform</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Gradle Build Server Importer
Bundle-SymbolicName: com.microsoft.gradle.bs.importer;singleton:=true
Bundle-Version: 0.5.2
Bundle-Version: 0.5.3
Bundle-Activator: com.microsoft.gradle.bs.importer.ImporterPlugin
Bundle-RequiredExecutionEnvironment: JavaSE-17
Bundle-ActivationPolicy: lazy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
<artifactId>gradle-jdtls-ext-parent</artifactId>
<version>0.5.2</version>
<version>0.5.3</version>
</parent>
<artifactId>com.microsoft.gradle.bs.importer</artifactId>
<packaging>eclipse-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion extension/jdtls.ext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
<artifactId>gradle-jdtls-ext-parent</artifactId>
<name>${base.name} :: Parent</name>
<version>0.5.2</version>
<version>0.5.3</version>
<packaging>pom</packaging>
<properties>
<base.name>Gradle Build Server Client</base.name>
Expand Down
4 changes: 2 additions & 2 deletions extension/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-gradle",
"displayName": "Gradle for Java",
"description": "Manage Gradle Projects, run Gradle tasks and provide better Gradle file authoring experience in VS Code",
"version": "3.16.2",
"version": "3.16.3",
"private": true,
"publisher": "vscjava",
"aiKey": "b4aae7d0-c65b-4819-92bf-1d2f537ae7ce",
Expand Down Expand Up @@ -48,7 +48,7 @@
"main": "./dist/index.js",
"contributes": {
"javaExtensions": [
"./server/com.microsoft.gradle.bs.importer-0.5.2.jar"
"./server/com.microsoft.gradle.bs.importer-0.5.3.jar"
],
"languages": [
{
Expand Down

0 comments on commit b31d370

Please sign in to comment.