Bump version & prepare changelog for 0.44.0 (#1209)

This commit is contained in:
Jinbo Wang 2022-09-01 09:22:19 +08:00 committed by GitHub
parent 344022b039
commit f41953b41b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 4 deletions

View File

@ -4,6 +4,12 @@ All notable changes to the "vscode-java-debugger" extension will be documented i
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 0.44.0 - 2022-09-01
### Added
- **Experimental**: Support processing JDWP commands asynchronously to improve response speed of remote debugging. It's only enabled by default on VS Code Insiders. You can also opt-in by setting `java.debug.settings.jdwp.async`. See [#1208](https://github.com/microsoft/vscode-java-debug/pull/1208) and [java-debug#436](https://github.com/microsoft/java-debug/pull/436).
- Add support to specify Java executable via the property `javaExec` in launch.json. See [#1198](https://github.com/microsoft/vscode-java-debug/pull/1198). Thanks to [Gayan Perera](https://github.com/gayanper) for contribution.
- Add support for lambda breakpoints. See [java-debug#427](https://github.com/microsoft/java-debug/pull/427). Thanks to [Gayan Perera](https://github.com/gayanper) for contribution.
## 0.43.0 - 2022-07-27 ## 0.43.0 - 2022-07-27
### Added ### Added
- Support adding function breakpoints from the editor gutter. [java-debug#426](https://github.com/microsoft/java-debug/pull/426). Thanks to [Gayan Perera](https://github.com/gayanper) for contribution. - Support adding function breakpoints from the editor gutter. [java-debug#426](https://github.com/microsoft/java-debug/pull/426). Thanks to [Gayan Perera](https://github.com/gayanper) for contribution.

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "vscode-java-debug", "name": "vscode-java-debug",
"version": "0.43.0", "version": "0.44.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "vscode-java-debug", "name": "vscode-java-debug",
"version": "0.43.0", "version": "0.44.0",
"hasInstallScript": true, "hasInstallScript": true,
"license": "SEE LICENSE IN LICENSE.txt", "license": "SEE LICENSE IN LICENSE.txt",
"dependencies": { "dependencies": {

View File

@ -2,7 +2,7 @@
"name": "vscode-java-debug", "name": "vscode-java-debug",
"displayName": "Debugger for Java", "displayName": "Debugger for Java",
"description": "A lightweight Java debugger for Visual Studio Code", "description": "A lightweight Java debugger for Visual Studio Code",
"version": "0.43.0", "version": "0.44.0",
"publisher": "vscjava", "publisher": "vscjava",
"preview": true, "preview": true,
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516", "aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
@ -54,7 +54,7 @@
} }
], ],
"javaExtensions": [ "javaExtensions": [
"./server/com.microsoft.java.debug.plugin-0.39.0.jar" "./server/com.microsoft.java.debug.plugin-0.40.0.jar"
], ],
"commands": [ "commands": [
{ {