Bump version to 0.46.0 & prepare changelog (#1251)
* Bump version to 0.46.0 & prepare changelog
This commit is contained in:
parent
ac256885f9
commit
573db5c244
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -4,6 +4,16 @@ 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.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](https://github.com/microsoft/vscode-java-debug/issues/1192). Thanks to [Gayan Perera](https://github.com/gayanper) for contribution.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Exclude **/node_modules/** from .vscode/launch.json searches. See [#1234](https://github.com/microsoft/vscode-java-debug/pull/1234). Thanks to [Brandon Cheng](https://github.com/gluxon) for contribution.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Conditional Breakpoint got error code in reply:504. See [#1250](https://github.com/microsoft/vscode-java-debug/issues/1250).
|
||||||
|
|
||||||
## 0.45.0 - 2022-10-12
|
## 0.45.0 - 2022-10-12
|
||||||
### Added
|
### Added
|
||||||
- Visualize the inline breakpoint locations. See [#1193](https://github.com/microsoft/vscode-java-debug/issues/1193).
|
- Visualize the inline breakpoint locations. See [#1193](https://github.com/microsoft/vscode-java-debug/issues/1193).
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "vscode-java-debug",
|
"name": "vscode-java-debug",
|
||||||
"version": "0.45.0",
|
"version": "0.46.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "vscode-java-debug",
|
"name": "vscode-java-debug",
|
||||||
"version": "0.45.0",
|
"version": "0.46.0",
|
||||||
"license": "SEE LICENSE IN LICENSE.txt",
|
"license": "SEE LICENSE IN LICENSE.txt",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"compare-versions": "^4.1.4",
|
"compare-versions": "^4.1.4",
|
||||||
|
|
|
@ -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.45.0",
|
"version": "0.46.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.41.0.jar"
|
"./server/com.microsoft.java.debug.plugin-0.42.0.jar"
|
||||||
],
|
],
|
||||||
"commands": [
|
"commands": [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue