* chore: Prepare for 0.22.0
---------

Signed-off-by: Sheng Chen <sheche@microsoft.com>
This commit is contained in:
Sheng Chen 2023-04-23 10:13:51 +08:00 коммит произвёл GitHub
Родитель b304e48da2
Коммит 3512b8bddb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
9 изменённых файлов: 558 добавлений и 404 удалений

Просмотреть файл

@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Support creating files and folders in Java Projects explorer. [#598](https://github.com/microsoft/vscode-java-dependency/issues/598)
- Apply file decorators to project level. [#481](https://github.com/microsoft/vscode-java-dependency/issues/481)
- Give more hints about the project import status. [#580](https://github.com/microsoft/vscode-java-dependency/issues/580)
### Changed
- Improve workflow of creating resources from Java Projects explorer. [PR#741](https://github.com/microsoft/vscode-java-dependency/pull/741), [PR#754](https://github.com/microsoft/vscode-java-dependency/pull/754)
### Fixed
- Apply `files.exclude` to Java Projects explorer. [#214](https://github.com/microsoft/vscode-java-dependency/issues/214)
- Empty packages will not appear sometimes. [#600](https://github.com/microsoft/vscode-java-dependency/issues/600)

Просмотреть файл

@ -57,9 +57,8 @@ You can tell that the glob pattern is supported. And here's more - you can incl
## Requirements
- JDK (version 11 or later)
- VS Code (version 1.44.0 or later)
- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) (version 0.32.0 or later)
- VS Code (version 1.77.0+)
- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java)
## Settings
@ -72,6 +71,7 @@ You can tell that the glob pattern is supported. And here's more - you can incl
| `java.dependency.refreshDelay` | The delay time (ms) the auto refresh is invoked when changes are detected. | `2000ms` |
| `java.dependency.packagePresentation` | Specify how to display the package. Supported values are: `flat`, `hierarchical`.| `flat` |
| `java.project.exportJar.targetPath` | The output path of export jar. When this setting is **empty** , a file explorer will pop up to let the user select the output location.| `${workspaceFolder}/${workspaceFolderBasename}.jar` |
| `java.project.explorer.showNonJavaResources` | When enabled, the explorer shows non-Java resources. | `true` |
## Contribution

Просмотреть файл

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: JDTLS EXT Core
Bundle-SymbolicName: com.microsoft.jdtls.ext.core;singleton:=true
Bundle-Version: 0.21.2
Bundle-Version: 0.22.0
Bundle-Activator: com.microsoft.jdtls.ext.core.JdtlsExtActivator
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-ActivationPolicy: lazy

Просмотреть файл

@ -5,7 +5,7 @@
<parent>
<groupId>com.microsoft.jdtls.ext</groupId>
<artifactId>jdtls-ext-parent</artifactId>
<version>0.21.2</version>
<version>0.22.0</version>
</parent>
<artifactId>com.microsoft.jdtls.ext.core</artifactId>
<packaging>eclipse-plugin</packaging>

Просмотреть файл

@ -4,7 +4,7 @@
<parent>
<groupId>com.microsoft.jdtls.ext</groupId>
<artifactId>jdtls-ext-parent</artifactId>
<version>0.21.2</version>
<version>0.22.0</version>
</parent>
<artifactId>com.microsoft.jdtls.ext.tp</artifactId>
<name>${base.name} :: Target Platform</name>

Просмотреть файл

@ -4,7 +4,7 @@
<groupId>com.microsoft.jdtls.ext</groupId>
<artifactId>jdtls-ext-parent</artifactId>
<name>${base.name} :: Parent</name>
<version>0.21.2</version>
<version>0.22.0</version>
<packaging>pom</packaging>
<properties>
<base.name>Java Project Manager</base.name>

936
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -2,7 +2,7 @@
"name": "vscode-java-dependency",
"displayName": "Project Manager for Java",
"description": "%description%",
"version": "0.21.2",
"version": "0.22.0",
"publisher": "vscjava",
"preview": true,
"aiKey": "5c642b22-e845-4400-badb-3f8509a70777",
@ -45,7 +45,7 @@
"main": "./main.js",
"contributes": {
"javaExtensions": [
"./server/com.microsoft.jdtls.ext.core-0.21.2.jar"
"./server/com.microsoft.jdtls.ext.core-0.22.0.jar"
],
"commands": [
{
@ -888,7 +888,7 @@
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"typescript": "^4.9.4",
"vscode-extension-tester": "^4.4.1",
"vscode-extension-tester": "^5.5.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0"
},

Просмотреть файл

@ -26,7 +26,7 @@ async function main(): Promise<void> {
await exTester.installFromMarketplace("redhat.java");
await exTester.downloadChromeDriver(version);
await exTester.setupRequirements({vscodeVersion: version});
process.exit(await exTester.runTests(testPath, {vscodeVersion: version}));
process.exit(await exTester.runTests(testPath, {vscodeVersion: version, resources: []}));
} catch (err) {
console.log(err);
process.exit(1);