This commit is contained in:
Sheng Chen 2024-11-11 10:11:30 +08:00 коммит произвёл GitHub
Родитель 097684dc9c
Коммит bc9d569312
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
13 изменённых файлов: 26 добавлений и 14 удалений

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

@ -4,6 +4,18 @@ All notable changes to the "vscode-java-test" extension will be documented in th
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).
## 0.43.0
## What's Changed
* feat - Set which encoding your test JVM will start with by @awilkins in https://github.com/microsoft/vscode-java-test/pull/1735
* fix - method parsing error by @jdneo in https://github.com/microsoft/vscode-java-test/pull/1722
* fix - Use project's jacoco agent when it's available by @jdneo in https://github.com/microsoft/vscode-java-test/pull/1723
* docs - Fix TestNG Docs link by @antublue in https://github.com/microsoft/vscode-java-test/pull/1736
* build - Update jacoco to 0.8.12 by @jdneo in https://github.com/microsoft/vscode-java-test/pull/1720
## New Contributors
* @antublue made their first contribution in https://github.com/microsoft/vscode-java-test/pull/1736
* @awilkins made their first contribution in https://github.com/microsoft/vscode-java-test/pull/1735
## 0.42.0
## What's Changed
* feat - allow other extensions to register test runner by @jdneo in https://github.com/microsoft/vscode-java-test/pull/1705

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

@ -7,7 +7,7 @@
<parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<version>0.42.0</version>
<version>0.43.0</version>
</parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>test-runner-build-tools</artifactId>

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

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
<bundle id="com.microsoft.java.test.plugin" version="0.42.0"/>
<bundle id="com.microsoft.java.test.plugin" version="0.43.0"/>
</site>

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

@ -4,7 +4,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>com.microsoft.java.test</groupId>
<version>0.42.0</version>
<version>0.43.0</version>
</parent>
<artifactId>com.microsoft.java.test.plugin.site</artifactId>
<packaging>eclipse-repository</packaging>

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

@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Automatic-Module-Name: com.microsoft.java.test.plugin.test
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: com.microsoft.java.test.plugin.test;singleton:=true
Bundle-Version: 0.42.0
Bundle-Version: 0.43.0
Bundle-RequiredExecutionEnvironment: JavaSE-17
Import-Package: org.osgi.framework;version="1.3.0"
Bundle-Localization: plugin

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

@ -5,7 +5,7 @@
<parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<version>0.42.0</version>
<version>0.43.0</version>
</parent>
<artifactId>com.microsoft.java.test.plugin.test</artifactId>
<packaging>eclipse-test-plugin</packaging>

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

@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Automatic-Module-Name: com.microsoft.java.test.plugin
Bundle-Name: com.microsoft.java.test.plugin
Bundle-SymbolicName: com.microsoft.java.test.plugin;singleton:=true
Bundle-Version: 0.42.0
Bundle-Version: 0.43.0
Bundle-Activator: com.microsoft.java.test.plugin.util.JUnitPlugin
Bundle-RequiredExecutionEnvironment: JavaSE-17
Import-Package: org.eclipse.jdt.core,

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

@ -5,7 +5,7 @@
<parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<version>0.42.0</version>
<version>0.43.0</version>
</parent>
<artifactId>com.microsoft.java.test.plugin</artifactId>
<packaging>eclipse-plugin</packaging>

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

@ -4,7 +4,7 @@
<parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<version>0.42.0</version>
<version>0.43.0</version>
</parent>
<artifactId>com.microsoft.java.test.runner</artifactId>
<packaging>jar</packaging>

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

@ -4,7 +4,7 @@
<parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<version>0.42.0</version>
<version>0.43.0</version>
</parent>
<artifactId>com.microsoft.java.test.tp</artifactId>
<name>${base.name} :: Target Platform</name>

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

@ -4,7 +4,7 @@
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<name>${base.name} :: Parent</name>
<version>0.42.0</version>
<version>0.43.0</version>
<packaging>pom</packaging>
<properties>
<base.name>Test Runner for Java</base.name>

4
package-lock.json сгенерированный
Просмотреть файл

@ -1,12 +1,12 @@
{
"name": "vscode-java-test",
"version": "0.42.0",
"version": "0.43.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "vscode-java-test",
"version": "0.42.0",
"version": "0.43.0",
"dependencies": {
"fs-extra": "^10.1.0",
"get-port": "^4.2.0",

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

@ -5,7 +5,7 @@
"repository": {
"url": "https://github.com/Microsoft/vscode-java-test"
},
"version": "0.42.0",
"version": "0.43.0",
"publisher": "vscjava",
"bugs": {
"url": "https://github.com/Microsoft/vscode-java-test/issues"
@ -72,7 +72,7 @@
"./server/org.eclipse.jdt.junit5.runtime_1.1.300.v20231214-1952.jar",
"./server/org.opentest4j_1.3.0.jar",
"./server/org.jacoco.core_0.8.12.202403310830.jar",
"./server/com.microsoft.java.test.plugin-0.42.0.jar"
"./server/com.microsoft.java.test.plugin-0.43.0.jar"
],
"viewsWelcome": [
{