Skip to content

Commit

Permalink
chore: Prepare for 0.38.0 (#1533)
Browse files Browse the repository at this point in the history
* chore: Prepare for 0.38.0
---------

Signed-off-by: Sheng Chen <[email protected]>
  • Loading branch information
jdneo authored Feb 24, 2023
1 parent e67c44d commit 52c9189
Show file tree
Hide file tree
Showing 11 changed files with 49 additions and 40 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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.38.0
### Added
- Support JUnit 5 parallel execution. [#1472](https://github.com/microsoft/vscode-java-test/issues/1472), contributed by [@fladdimir](https://github.com/fladdimir)

### Fixed
- Sorting of parameterized tests should be natural. [#1465](https://github.com/microsoft/vscode-java-test/issues/1465), contributed by [@Kropie](https://github.com/Kropie)
- Diff test messages may be duplicated. [#1522](https://github.com/microsoft/vscode-java-test/issues/1522), contributed by [@fladdimir](https://github.com/fladdimir)
- Overload test methods are not handled properly. [#1517](https://github.com/microsoft/vscode-java-test/issues/1517), contributed by [@Kropie](https://github.com/Kropie)

## 0.37.1
### Fixed
- Tests cannot be launched. [#1481](https://github.com/microsoft/vscode-java-test/issues/1481)
Expand Down
2 changes: 1 addition & 1 deletion java-extension/build-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<version>0.37.1</version>
<version>0.38.0</version>
</parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>test-runner-build-tools</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
<bundle id="com.microsoft.java.test.plugin" version="0.37.1"/>
<bundle id="com.microsoft.java.test.plugin" version="0.38.0"/>
</site>
2 changes: 1 addition & 1 deletion java-extension/com.microsoft.java.test.plugin.site/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>com.microsoft.java.test</groupId>
<version>0.37.1</version>
<version>0.38.0</version>
</parent>
<artifactId>com.microsoft.java.test.plugin.site</artifactId>
<packaging>eclipse-repository</packaging>
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: com.microsoft.java.test.plugin
Bundle-SymbolicName: com.microsoft.java.test.plugin;singleton:=true
Bundle-Version: 0.37.1
Bundle-Version: 0.38.0
Bundle-Activator: com.microsoft.java.test.plugin.util.JUnitPlugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Import-Package: org.eclipse.jdt.core,
Expand Down
2 changes: 1 addition & 1 deletion java-extension/com.microsoft.java.test.plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<version>0.37.1</version>
<version>0.38.0</version>
</parent>
<artifactId>com.microsoft.java.test.plugin</artifactId>
<packaging>eclipse-plugin</packaging>
Expand Down
13 changes: 7 additions & 6 deletions java-extension/com.microsoft.java.test.plugin/target.target
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,21 @@
<unit id="org.eclipse.equinox.sdk.feature.group" version="0.0.0"/>
<unit id="org.eclipse.jdt.source.feature.group" version="0.0.0"/>
<unit id="org.eclipse.sdk.feature.group" version="0.0.0"/>
<repository location="https://download.eclipse.org/eclipse/updates/4.27-I-builds/I20221206-1800"/>
<unit id="org.mockito.mockito-core" version="0.0.0"/>
<repository location="https://download.eclipse.org/eclipse/updates/4.27-I-builds/I20230215-0610/"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.xtend.sdk.feature.group" version="0.0.0"/>
<unit id="org.eclipse.xtext.sdk.feature.group" version="0.0.0"/>
<repository location="https://download.eclipse.org/releases/2021-09/202109151000/"/>
<unit id="org.eclipse.xtext.xbase.lib" version="0.0.0"/>
<unit id="org.apache.commons.lang3" version="3.1.0.v201403281430"/>
<repository location="https://download.eclipse.org/releases/2022-12/"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.jdt.ls.core" version="0.0.0"/>
<repository location="https://download.eclipse.org/jdtls/snapshots/repository/latest/"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.apache.commons.lang3" version="3.1.0.v201403281430"/>
<repository location="https://download.eclipse.org/tools/orbit/R-builds/R20200529191137/repository/"/>
<repository location="https://download.eclipse.org/lsp4j/updates/releases/0.20.0/"/>
<unit id="org.eclipse.lsp4j.sdk.feature.group" version="0.0.0"/>
</location>
</locations>
</target>
2 changes: 1 addition & 1 deletion java-extension/com.microsoft.java.test.runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<version>0.37.1</version>
<version>0.38.0</version>
</parent>
<artifactId>com.microsoft.java.test.runner</artifactId>
<packaging>jar</packaging>
Expand Down
21 changes: 10 additions & 11 deletions java-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.microsoft.java.test</groupId>
<artifactId>parent</artifactId>
<name>${base.name} :: Parent</name>
<version>0.37.1</version>
<version>0.38.0</version>
<packaging>pom</packaging>
<properties>
<base.name>Test Runner for Java</base.name>
Expand Down Expand Up @@ -53,9 +53,14 @@
</build>
<repositories>
<repository>
<id>202212</id>
<id>202303</id>
<layout>p2</layout>
<url>https://download.eclipse.org/eclipse/updates/4.27-I-builds/I20221206-1800</url>
<url>https://download.eclipse.org/eclipse/updates/4.27-I-builds/I20230215-0610/</url>
</repository>
<repository>
<id>xbase</id>
<layout>p2</layout>
<url>https://download.eclipse.org/releases/2022-12/</url>
</repository>
<repository>
<id>oss.sonatype.org</id>
Expand All @@ -70,15 +75,9 @@
<url>https://download.eclipse.org/jdtls/snapshots/repository/latest/</url>
</repository>
<repository>
<id>orbit</id>
<layout>p2</layout>
<url>https://download.eclipse.org/tools/orbit/R-builds/R20200529191137/repository/</url>
</repository>
<!-- only used to download lsp4j 0.12.0 and its dependencies -->
<repository>
<id>202112</id>
<id>lsp4j</id>
<layout>p2</layout>
<url>https://download.eclipse.org/releases/2021-12/202112081000/</url>
<url>https://download.eclipse.org/lsp4j/updates/releases/0.20.0/</url>
</repository>
</repositories>
</project>
4 changes: 2 additions & 2 deletions package-lock.json

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

30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"repository": {
"url": "https://github.com/Microsoft/vscode-java-test"
},
"version": "0.37.1",
"version": "0.38.0",
"publisher": "vscjava",
"bugs": {
"url": "https://github.com/Microsoft/vscode-java-test/issues"
Expand Down Expand Up @@ -55,23 +55,23 @@
"main": "./main.js",
"contributes": {
"javaExtensions": [
"./server/junit-jupiter-api_5.9.1.jar",
"./server/junit-jupiter-engine_5.9.1.jar",
"./server/junit-jupiter-migrationsupport_5.9.1.jar",
"./server/junit-jupiter-params_5.9.1.jar",
"./server/junit-platform-commons_1.9.1.jar",
"./server/junit-platform-engine_1.9.1.jar",
"./server/junit-platform-launcher_1.9.1.jar",
"./server/junit-platform-runner_1.9.1.jar",
"./server/junit-platform-suite-api_1.9.1.jar",
"./server/junit-platform-suite-commons_1.9.1.jar",
"./server/junit-platform-suite-engine_1.9.1.jar",
"./server/junit-vintage-engine_5.9.1.jar",
"./server/junit-jupiter-api_5.9.2.jar",
"./server/junit-jupiter-engine_5.9.2.jar",
"./server/junit-jupiter-migrationsupport_5.9.2.jar",
"./server/junit-jupiter-params_5.9.2.jar",
"./server/junit-platform-commons_1.9.2.jar",
"./server/junit-platform-engine_1.9.2.jar",
"./server/junit-platform-launcher_1.9.2.jar",
"./server/junit-platform-runner_1.9.2.jar",
"./server/junit-platform-suite-api_1.9.2.jar",
"./server/junit-platform-suite-commons_1.9.2.jar",
"./server/junit-platform-suite-engine_1.9.2.jar",
"./server/junit-vintage-engine_5.9.2.jar",
"./server/org.apiguardian.api_1.1.2.jar",
"./server/org.eclipse.jdt.junit4.runtime_1.3.0.v20220609-1843.jar",
"./server/org.eclipse.jdt.junit5.runtime_1.1.100.v20220907-0450.jar",
"./server/org.opentest4j_1.2.0.v20211018-1956.jar",
"./server/com.microsoft.java.test.plugin-0.37.1.jar"
"./server/org.opentest4j_1.2.0.jar",
"./server/com.microsoft.java.test.plugin-0.38.0.jar"
],
"viewsWelcome": [
{
Expand Down

0 comments on commit 52c9189

Please sign in to comment.