Releases: microsoft/vscode-java-debug
Releases · microsoft/vscode-java-debug
Release 0.58.1
0.58.1 - 2024-10-31
Added
- The launch config
envFile
now supports an array of env files. #1505. Thanks to Ed Hillmann for contribution.
Fixed
- Fail to debug with java 23 - Unrecognized option: -Xnoagent. java-debug#561.
Release 0.58.0
Release 0.57.0
0.57.0 - 2024-03-26
Added
- Add support for running Java 21 "Unnamed classes and Instance main method". #1444.
Release 0.56.1
0.56.1 - 2024-02-19
Fixed
- Fix the java.lang.NoClassDefFoundError when triggering code completion in DEBUG CONSOLE. See java-debug#534.
Release 0.56.0
0.56.0 - 2024-01-31
Fixed
-
Breakpoint doesn't work on lambdas which returns a generic type. See java-debug#498, #1413 and #1414.
-
Breakpoint with inline lambdas work only with last one. See #1410.
-
StepInto method target doesn't work if the method is part of wrapped expression. See java-debug#519.
Thanks to Gayan Perera for contribution in fixing multiple bugs.
Release 0.55.0
0.55.0 - 2023-11-01
Changed
- Don't duplicate build reference projects when building a Gradle project managed by Build Server. java-debug#511.
Fixed
- Cannot find Java process when using "Attach by Process ID". #1388. Thanks to owl-from-hogvarts for contribution.
Release 0.54.0
0.54.0 - 2023-08-29
Added
- Code completion in DEBUG CONSOLE now adds fully qualified names for unimported classes. See #1246.
- Code completion in DEBUG CONSOLE now displays package names for suggested types. See java-debug#505.
- Integrate the build support for Gradle build server project. See #1372, java-debug#503
Changed
- Respect the setting 'java.debug.settings.forceBuildBeforeLaunch' even if autobuild is disabled. See #1380.
Release 0.53.0
Release 0.52.0
0.52.0 - 2023-06-30
Added
- Use the setting
java.debug.settings.debugSupportOnDecompiledSource
to 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.