From 393147f9951e325547901a25ce0a31fdd72e1afa Mon Sep 17 00:00:00 2001 From: wenyutang-ms Date: Sun, 4 Jan 2026 10:57:29 +0800 Subject: [PATCH 1/3] build: release 0.44.0 --- CHANGELOG.md | 5 +++++ README.md | 7 ++++++- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c72caf45..f53c17ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.3 +## What's Changed +* feat - junit 6 support in https://github.com/microsoft/vscode-java-test/pull/1820 +* fix - update build script for xml size limit in https://github.com/microsoft/vscode-java-test/pull/1815 + ## 0.43.2 ## What's Changed * fix - Update to jacoco 0.8.14 by @fbricon in https://github.com/microsoft/vscode-java-test/pull/1798 diff --git a/README.md b/README.md index 74cdb3a4..1e174e55 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ A lightweight extension to run and debug Java test cases in Visual Studio Code. - JUnit 4 (v4.8.0+) - JUnit 5 (v5.1.0+) +- Junit 6 (v6.0.1+) - TestNG (v6.9.13.3+) > Note: JUnit 3 styled tests are not supported in this extension (i.e. extends `junit.framework.TestCase`). @@ -106,9 +107,13 @@ There are other VS Code embedded commands for testing, which can be found by sea There are some other VS Code embedded settings for testing, which can be found by searching `testing` in the Settings view. ## Project Setup +### JUnit 6 + +Please refer to [Getting Started](https://docs.junit.org/6.0.1/overview.html#overview-getting-started) from the JUnit 6's official document for getting started documentation. + ### JUnit 5 -Please refer to [Getting Started](https://junit.org/junit5/docs/current/user-guide/#overview-getting-started) from the JUnit 5's official document for getting started documentation. +Please refer to [Getting Started](https://docs.junit.org/5.14.1/overview.html) from the JUnit 5's official document for getting started documentation. > Note: If your project does not use build tools(Maven/Gradle/...), please make sure [junit-platform-console-standalone.jar](https://search.maven.org/search?q=g:org.junit.platform%20AND%20a:junit-platform-console-standalone) is on your project classpath. diff --git a/package-lock.json b/package-lock.json index 30187568..512608db 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-java-test", - "version": "0.43.2", + "version": "0.44.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-java-test", - "version": "0.43.2", + "version": "0.44.0", "dependencies": { "fs-extra": "^10.1.0", "get-port": "^4.2.0", diff --git a/package.json b/package.json index e01a5df8..a5c55c99 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "repository": { "url": "https://github.com/Microsoft/vscode-java-test" }, - "version": "0.43.2", + "version": "0.44.0", "publisher": "vscjava", "bugs": { "url": "https://github.com/Microsoft/vscode-java-test/issues" From 2b93968afa8fee21446a2fb8e9ff5e240048518f Mon Sep 17 00:00:00 2001 From: wenyutang-ms Date: Sun, 4 Jan 2026 11:01:29 +0800 Subject: [PATCH 2/3] build: release 0.44.0 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f53c17ec..d5bb9657 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.3 +## 0.44.0 ## What's Changed * feat - junit 6 support in https://github.com/microsoft/vscode-java-test/pull/1820 * fix - update build script for xml size limit in https://github.com/microsoft/vscode-java-test/pull/1815 From df0b815fffe24b7cc9ab6968c9ec9fef0b496faa Mon Sep 17 00:00:00 2001 From: wenyutang-ms Date: Sun, 4 Jan 2026 11:17:07 +0800 Subject: [PATCH 3/3] fix: update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1e174e55..77e0010f 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ A lightweight extension to run and debug Java test cases in Visual Studio Code. - JUnit 4 (v4.8.0+) - JUnit 5 (v5.1.0+) -- Junit 6 (v6.0.1+) +- JUnit 6 (v6.0.1+) - TestNG (v6.9.13.3+) > Note: JUnit 3 styled tests are not supported in this extension (i.e. extends `junit.framework.TestCase`).