From abec52ffbe20bceac16507ba1639bf13d7bcf027 Mon Sep 17 00:00:00 2001 From: Jinbo Wang Date: Mon, 15 Apr 2019 13:55:22 +0800 Subject: [PATCH 1/3] Update 0.18.0 changelog --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0d2b7f1..fd653213 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to the "vscode-java-debugger" extension will be documented i The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## 0.18.0 - 2019-04-16 +### Added +- Support "Logical Structure" for debug variables (e.g. Map and Collection classes). [#227](https://github.com/Microsoft/vscode-java-debug/issues/227). +- Jump to source code when clicking the stack trace info in Debug Console. [#490](https://github.com/Microsoft/vscode-java-debug/issues/490), [#506](https://github.com/Microsoft/vscode-java-debug/issues/506). +- Automatically add `--enable-preview` to vmArgs when necessary. [#553](https://github.com/Microsoft/vscode-java-debug/issues/553). + +### Changed +- Disable `java.debug.settings.showStaticVariables` by default to not show the static fields for debug variables. + +### Fixed +- Fix: Debug Console does not autocomplete when a .class file is open. [#535](https://github.com/Microsoft/vscode-java-debug/issues/535). + ## 0.17.0 - 2019-03-06 ### Added - Popup the exception details via a UI widget when an exception breakpoint is hit. [#522](https://github.com/Microsoft/vscode-java-debug/issues/522). From 6476f0927cd52f58e1e73560774c20ecf6968877 Mon Sep 17 00:00:00 2001 From: Jinbo Wang Date: Mon, 15 Apr 2019 14:29:12 +0800 Subject: [PATCH 2/3] Address review comments --- CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd653213..112c1a01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,15 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## 0.18.0 - 2019-04-16 ### Added -- Support "Logical Structure" for debug variables (e.g. Map and Collection classes). [#227](https://github.com/Microsoft/vscode-java-debug/issues/227). -- Jump to source code when clicking the stack trace info in Debug Console. [#490](https://github.com/Microsoft/vscode-java-debug/issues/490), [#506](https://github.com/Microsoft/vscode-java-debug/issues/506). +- Enable "Logical Structure" view for Map and Collection variables. [#227](https://github.com/Microsoft/vscode-java-debug/issues/227). +- Add the stacktrace source link support in Debug Console output. [#490](https://github.com/Microsoft/vscode-java-debug/issues/490), [#506](https://github.com/Microsoft/vscode-java-debug/issues/506). - Automatically add `--enable-preview` to vmArgs when necessary. [#553](https://github.com/Microsoft/vscode-java-debug/issues/553). ### Changed -- Disable `java.debug.settings.showStaticVariables` by default to not show the static fields for debug variables. +- Disable `java.debug.settings.showStaticVariables` by default to not show the static fields. ### Fixed -- Fix: Debug Console does not autocomplete when a .class file is open. [#535](https://github.com/Microsoft/vscode-java-debug/issues/535). +- Fix: Debug Console does not support autocomplete when a .class file is open. [#535](https://github.com/Microsoft/vscode-java-debug/issues/535). ## 0.17.0 - 2019-03-06 ### Added From b656077fd6d4f1d3f93cf3d322bedc3e8eea268c Mon Sep 17 00:00:00 2001 From: Jinbo Wang Date: Mon, 15 Apr 2019 14:44:04 +0800 Subject: [PATCH 3/3] Address review comments --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 112c1a01..6bb93780 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## 0.18.0 - 2019-04-16 ### Added - Enable "Logical Structure" view for Map and Collection variables. [#227](https://github.com/Microsoft/vscode-java-debug/issues/227). -- Add the stacktrace source link support in Debug Console output. [#490](https://github.com/Microsoft/vscode-java-debug/issues/490), [#506](https://github.com/Microsoft/vscode-java-debug/issues/506). +- Add the source hyperlinks for the stack traces in the Debug Console output. [#490](https://github.com/Microsoft/vscode-java-debug/issues/490), [#506](https://github.com/Microsoft/vscode-java-debug/issues/506). - Automatically add `--enable-preview` to vmArgs when necessary. [#553](https://github.com/Microsoft/vscode-java-debug/issues/553). ### Changed