Bump version & prepare changelog for 0.45.0 (#1235)
This commit is contained in:
parent
91a6080401
commit
225d0fd77b
12
CHANGELOG.md
12
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](https://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## 0.45.0 - 2022-10-12
|
||||
### Added
|
||||
- Visualize the inline breakpoint locations. See [#1193](https://github.com/microsoft/vscode-java-debug/issues/1193).
|
||||
- Show an extra column cursor when an inline breakpoint is hit. See [#1202](https://github.com/microsoft/vscode-java-debug/issues/1202).
|
||||
- Support JEP 425: Virtual Threads (JDK 19). See [#1159](https://github.com/microsoft/vscode-java-debug/issues/1159).
|
||||
|
||||
### Changed
|
||||
- Enable async jdwp based on network latency for auto mode. See [java-debug#447](https://github.com/microsoft/java-debug/pull/447).
|
||||
|
||||
### Fixed
|
||||
- NPE when stopping JDT.LS. See [java-debug#448](https://github.com/microsoft/java-debug/issues/448).
|
||||
|
||||
## 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](https://github.com/microsoft/vscode-java-debug/pull/1208) and [java-debug#436](https://github.com/microsoft/java-debug/pull/436).
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "vscode-java-debug",
|
||||
"version": "0.44.0",
|
||||
"version": "0.45.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "vscode-java-debug",
|
||||
"version": "0.44.0",
|
||||
"version": "0.45.0",
|
||||
"license": "SEE LICENSE IN LICENSE.txt",
|
||||
"dependencies": {
|
||||
"compare-versions": "^4.1.4",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "vscode-java-debug",
|
||||
"displayName": "Debugger for Java",
|
||||
"description": "A lightweight Java debugger for Visual Studio Code",
|
||||
"version": "0.44.0",
|
||||
"version": "0.45.0",
|
||||
"publisher": "vscjava",
|
||||
"preview": true,
|
||||
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
|
||||
|
@ -54,7 +54,7 @@
|
|||
}
|
||||
],
|
||||
"javaExtensions": [
|
||||
"./server/com.microsoft.java.debug.plugin-0.40.0.jar"
|
||||
"./server/com.microsoft.java.debug.plugin-0.41.0.jar"
|
||||
],
|
||||
"commands": [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue