Releases: microsoft/vscode-java-debug
Releases · microsoft/vscode-java-debug
Release 0.52.0
0.52.0 - 2023-06-30
Added
- Use the setting
java.debug.settings.debugSupportOnDecompiledSourceto enable/disable debugging support on the decompiled source code. This feature requires Language Support for Java by Red Hat@1.20.0 or higher. See #1356.
Release 0.51.0
0.51.0 - 2023-05-31
Fixed
- NPE when adding lambda breakpoints in reactive projects. See java-debug#477. Thanks to Gayan Perera for contribution.
- Lambda breakpoint on the first line of a method does not work. See java-debug#488. Thanks to Gayan Perera for contribution.
Release 0.50.0
Release 0.49.1
Release 0.49.0
Release 0.48.0
0.48.0 - 2023-02-01
Changed
- Reject invalid DAP request. See java-debug#466.
Fixed
- Prioritize lookup the project source code during debugging. See #1215. Thanks to mozhuanzuojing for contribution.
Release 0.47.0
Release 0.46.0
0.46.0 - 2022-11-02
Added
- Add "Step Into Target" feature to allow stepping directly into a specific function call when paused on a line. See #1192. Thanks to Gayan Perera for contribution.
Changed
- Exclude /node_modules/ from .vscode/launch.json searches. See #1234. Thanks to Brandon Cheng for contribution.
Fixed
- Conditional Breakpoint got error code in reply:504. See #1250.
Release 0.45.0
0.45.0 - 2022-10-12
Added
- Visualize the inline breakpoint locations. See #1193.
- Show an extra column cursor when an inline breakpoint is hit. See #1202.
- Support JEP 425: Virtual Threads (JDK 19). See #1159.
Changed
- Enable async jdwp based on network latency for auto mode. See java-debug#447.
Fixed
- NPE when stopping JDT.LS. See java-debug#448.
Release 0.44.0
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 and java-debug#436. - Add support to specify Java executable via the property
javaExecin launch.json. See #1198. Thanks to Gayan Perera for contribution. - Add support for lambda breakpoints. See java-debug#427. Thanks to Gayan Perera for contribution.