0.25.1 bug fixes. (#4130)

* 0.25.1 bug fixes.
This commit is contained in:
Sean McManus
2019-08-23 17:31:55 -07:00
committed by GitHub
parent d7520eacf3
commit 3251ee599b
3 changed files with 833 additions and 142 deletions
+8 -1
View File
@@ -1,5 +1,12 @@
# C/C++ for Visual Studio Code Change Log
## Version 0.25.1: August 26, 2019
### Bug Fixes
* Fix `Switch Header/Source` for `.H` and `.C` targets. [#3048](https://github.com/microsoft/vscode-cpptools/issues/3048)
* Fix links in `Log Diagnostics` output. [#4122](https://github.com/microsoft/vscode-cpptools/issues/4122)
* Fix `NullReferenceException` when debugging if `"description"` is missing. [#4125}(https://github.com/microsoft/vscode-cpptools/issues/4125)
* Fix `files.exclude` processing when using `\\`. [#4127](https://github.com/microsoft/vscode-cpptools/issues/4127)
## Version 0.25.0: August 21, 2019
### New Features
* Add `Find All References`. [#15](https://github.com/microsoft/vscode-cpptools/issues/15)
@@ -15,7 +22,7 @@
* `-imsvc`. [#4032](https://github.com/microsoft/vscode-cpptools/issues/4032)
* Switch to using VS Code's `Go to Declaration`. [#2959](https://github.com/microsoft/vscode-cpptools/issues/2959)
* Added `compilerArgs` property setting. [PR #3950](https://github.com/microsoft/vscode-cpptools/pull/3950)
* Added support for V3 API. [#3987](https://github.com/microsoft/vscode-cpptools/pull/3987)
* Added support for V3 API. [PR #3987](https://github.com/microsoft/vscode-cpptools/pull/3987)
* Add `not supported` messages for ARM and Alpine containers. [PR #4027](https://github.com/microsoft/vscode-cpptools/pull/4027)
* Add validation for paths from `env` variables. [#3912](https://github.com/microsoft/vscode-cpptools/issues/3912)
+812 -128
View File
File diff suppressed because it is too large Load Diff
+13 -13
View File
@@ -2,7 +2,7 @@
"name": "cpptools",
"displayName": "C/C++",
"description": "C/C++ IntelliSense, debugging, and code browsing.",
"version": "0.25.0-master",
"version": "0.25.1-master",
"publisher": "ms-vscode",
"preview": true,
"icon": "LanguageCCPP_color_128x.png",
@@ -1449,35 +1449,35 @@
"@types/minimatch": "^3.0.3",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.1",
"@types/node": "^12.7.2",
"@types/plist": "^3.0.2",
"@types/tmp": "^0.1.0",
"@types/webpack": "^4.32.1",
"@types/webpack": "^4.39.0",
"@types/yauzl": "^2.9.1",
"async-child-process": "^1.1.1",
"await-notify": "^1.0.1",
"gulp": "^4.0.2",
"gulp-env": "^0.4.0",
"gulp-mocha": "^6.0.0",
"gulp-mocha": "^7.0.1",
"gulp-tslint": "^8.1.4",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"tslint": "^5.19.0",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.5.3",
"vrsource-tslint-rules": "^6.0.0",
"vscode": "^1.1.36",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"dependencies": {
"escape-string-regexp": "^2.0.0",
"http-proxy-agent": "^2.1.0",
"https-proxy-agent": "^2.2.2",
"jsonc-parser": "^2.1.0",
"jsonc-parser": "^2.1.1",
"minimatch": "^3.0.4",
"mkdirp": "^0.5.1",
"plist": "^2.0.1",
"plist": "^3.0.1",
"tmp": "^0.1.0",
"vscode-cpptools": "^3.0.1",
"vscode-debugadapter": "^1.35.0",
@@ -1489,7 +1489,7 @@
"runtimeDependencies": [
{
"description": "C/C++ language components (Linux / x86_64)",
"url": "https://go.microsoft.com/fwlink/?linkid=2098277",
"url": "https://go.microsoft.com/fwlink/?linkid=2102112",
"platforms": [
"linux"
],
@@ -1503,7 +1503,7 @@
},
{
"description": "C/C++ language components (Linux / x86)",
"url": "https://go.microsoft.com/fwlink/?linkid=2098276",
"url": "https://go.microsoft.com/fwlink/?linkid=2102307",
"platforms": [
"linux"
],
@@ -1519,7 +1519,7 @@
},
{
"description": "C/C++ language components (OS X)",
"url": "https://go.microsoft.com/fwlink/?linkid=2098195",
"url": "https://go.microsoft.com/fwlink/?linkid=2102306",
"platforms": [
"darwin"
],
@@ -1530,7 +1530,7 @@
},
{
"description": "C/C++ language components (Windows)",
"url": "https://go.microsoft.com/fwlink/?linkid=2098194",
"url": "https://go.microsoft.com/fwlink/?linkid=2102113",
"platforms": [
"win32"
],