| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 344022b commit f41953b
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,6 +4,12 @@ All notable changes to the "vscode-java-debugger" extension will be documented i | |||
| 4 | 4 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) | |
| 5 | 5 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | |
| 6 | 6 | ||
| 7 | + ## 0.44.0 - 2022-09-01 | ||
| 8 | + ### Added | ||
| 9 | + - **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). | ||
| 10 | + - 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. | ||
| 11 | + - 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. | ||
| 12 | + | ||
| 7 | 13 | ## 0.43.0 - 2022-07-27 | |
| 8 | 14 | ### Added | |
| 9 | 15 | - 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. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,7 +2,7 @@ | |||
| 2 | 2 | "name": "vscode-java-debug", | |
| 3 | 3 | "displayName": "Debugger for Java", | |
| 4 | 4 | "description": "A lightweight Java debugger for Visual Studio Code", | |
| 5 | - "version": "0.43.0", | ||
| 5 | + "version": "0.44.0", | ||
| 6 | 6 | "publisher": "vscjava", | |
| 7 | 7 | "preview": true, | |
| 8 | 8 | "aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516", | |
@@ -54,7 +54,7 @@ | |||
| 54 | 54 | } | |
| 55 | 55 | ], | |
| 56 | 56 | "javaExtensions": [ | |
| 57 | - "./server/com.microsoft.java.debug.plugin-0.39.0.jar" | ||
| 57 | + "./server/com.microsoft.java.debug.plugin-0.40.0.jar" | ||
| 58 | 58 | ], | |
| 59 | 59 | "commands": [ | |
| 60 | 60 | { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments