Skip to content

Commit 08ca302

Browse files
Prepare changelog for 0.42.0 (#1184)
1 parent a58dba9 commit 08ca302

File tree

3 files changed

+127
-46
lines changed

3 files changed

+127
-46
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to the "vscode-java-debugger" extension will be documented i
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.42.0 - 2022-06-29
8+
### Added
9+
- Support function breakpoints, see [#258](https://github.com/microsoft/vscode-java-debug/issues/258). The current version support adding a function breakpoint with the syntax as `FullyQualifiedClassName#methodName` (e.g. `java.util.ArrayList#add`). Thanks to [Gayan Perera](https://github.com/gayanper) for contribution.
10+
11+
### Changed
12+
- Mark native frames and unavailable methods as subtle. [java-debug#409](https://github.com/microsoft/java-debug/pull/409). Thanks to [Mathias Fußenegger](https://github.com/mfussenegger) for contribution.
13+
14+
### Fixed
15+
- fix artifactId typo in Troubleshooting.md. [#1180](https://github.com/microsoft/vscode-java-debug/pull/1180). Thanks to [btoo](https://github.com/btoo) for contribution.
16+
717
## 0.41.0- 2022-06-01
818
### Added
919
- Provide "Stop Java" button when triggering "Run Java" action. [#1166](https://github.com/microsoft/vscode-java-debug/issues/1166).

package-lock.json

Lines changed: 114 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-java-debug",
33
"displayName": "Debugger for Java",
44
"description": "A lightweight Java debugger for Visual Studio Code",
5-
"version": "0.41.0",
5+
"version": "0.42.0",
66
"publisher": "vscjava",
77
"preview": true,
88
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
@@ -54,7 +54,7 @@
5454
}
5555
],
5656
"javaExtensions": [
57-
"./server/com.microsoft.java.debug.plugin-0.37.0.jar"
57+
"./server/com.microsoft.java.debug.plugin-0.38.0.jar"
5858
],
5959
"commands": [
6060
{
@@ -963,7 +963,7 @@
963963
"dotenv": "^16.0.1",
964964
"lodash": "^4.17.21",
965965
"uuid": "^8.3.2",
966-
"vscode-extension-telemetry-wrapper": "^0.12.0",
966+
"vscode-extension-telemetry-wrapper": "^0.13.1",
967967
"vscode-languageclient": "6.0.0-next.9",
968968
"vscode-languageserver-types": "3.16.0",
969969
"vscode-tas-client": "^0.1.47"

0 commit comments

Comments
 (0)