Bump version to 0.34.0 & prepare changelog (#1007)

This commit is contained in:
Jinbo Wang 2021-05-21 16:18:14 +08:00 committed by GitHub
parent 5fc5db2543
commit 47b59dfd50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 10 deletions

View File

@ -4,6 +4,10 @@ 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.34.0 - 2021-05-26
### Changed
- Allow customizing the "classPaths" and "modulePaths" configurations via launch.json. See [#93](https://github.com/microsoft/vscode-java-debug/issues/93), [#980](https://github.com/microsoft/vscode-java-debug/issues/980).
## 0.33.1 - 2021-04-30 ## 0.33.1 - 2021-04-30
### Fixed ### Fixed
- HotFix: After upgrade from vscode-java v0.77.0 to v0.78.0 can't debug tests. [#995](https://github.com/microsoft/vscode-java-debug/issues/995). - HotFix: After upgrade from vscode-java v0.77.0 to v0.78.0 can't debug tests. [#995](https://github.com/microsoft/vscode-java-debug/issues/995).

14
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "vscode-java-debug", "name": "vscode-java-debug",
"version": "0.33.1", "version": "0.34.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
@ -2220,9 +2220,9 @@
} }
}, },
"hosted-git-info": { "hosted-git-info": {
"version": "2.8.8", "version": "2.8.9",
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
"integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
"dev": true "dev": true
}, },
"http-proxy-agent": { "http-proxy-agent": {
@ -2747,9 +2747,9 @@
} }
}, },
"lodash": { "lodash": {
"version": "4.17.20", "version": "4.17.21",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
"integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
}, },
"log-symbols": { "log-symbols": {
"version": "3.0.0", "version": "3.0.0",

View File

@ -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.33.1", "version": "0.34.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.31.1.jar" "./server/com.microsoft.java.debug.plugin-0.32.0.jar"
], ],
"commands": [ "commands": [
{ {
@ -957,7 +957,7 @@
}, },
"dependencies": { "dependencies": {
"compare-versions": "^3.6.0", "compare-versions": "^3.6.0",
"lodash": "^4.17.20", "lodash": "^4.17.21",
"uuid": "^8.3.1", "uuid": "^8.3.1",
"vscode-extension-telemetry-wrapper": "^0.9.0", "vscode-extension-telemetry-wrapper": "^0.9.0",
"vscode-languageclient": "6.0.0-next.9", "vscode-languageclient": "6.0.0-next.9",