Skip to content

Commit 385a267

Browse files
authored
Update changelog for 1.5.0. (#7797)
* Update changelog for 1.5.0. * Update fwlinks.
1 parent bbf217f commit 385a267

File tree

2 files changed

+33
-41
lines changed

2 files changed

+33
-41
lines changed

Extension/CHANGELOG.md

Lines changed: 19 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,22 @@
11
# C/C++ for Visual Studio Code Change Log
22

3-
## Version 1.5.0-insiders3: July 1, 2021
4-
### Enhancement
5-
* Add auto-detection of clang compilers on Windows (and different versions of cl.exe). [#6718](https://github.com/microsoft/vscode-cpptools/issues/6718)
6-
* Stop adding .cu files to `files.associations` (switch to using setTextDocumentLanguage). [#7359](https://github.com/microsoft/vscode-cpptools/issues/7359)
7-
8-
### Bug Fixes
9-
* Add abort handling to recursive includes directory iteration. [#6461](https://github.com/microsoft/vscode-cpptools/issues/6461)
10-
* Fix include completion with recursive includes in header files. [#6842](https://github.com/microsoft/vscode-cpptools/issues/6842)
11-
* Add the get-task-allow entitlement to macOS binaries to enable call stacks to be obtained when SIP is enabled. [#7412](https://github.com/microsoft/vscode-cpptools/issues/7412)
12-
* Fix `browse.path` being incorrect if an invalid `compileCommands` is set. [#7737](https://github.com/microsoft/vscode-cpptools/issues/7737)
13-
* Fix incorrect error message when `C_Cpp.errorSquiggles` is `"Enabled"`. [#7744](https://github.com/microsoft/vscode-cpptools/issues/7744)
14-
* Fix compiler querying sometimes not working with Cygwin. [#7751](https://github.com/microsoft/vscode-cpptools/issues/7751)
15-
16-
## Version 1.5.0-insiders2: June 21, 2021
3+
## Version 1.5.0: July 8, 2021
174
### New Feature
18-
* Add "Inline macro" code action. [#4183](https://github.com/microsoft/vscode-cpptools/issues/4183)
5+
* Add the "Inline macro" code action. [#4183](https://github.com/microsoft/vscode-cpptools/issues/4183)
6+
* Add a Windows ARM64 debugger. [PR #7798](https://github.com/microsoft/vscode-cpptools/pull/7798)
197

20-
### Bug Fixes
21-
* Fix code folding causing `} else if` lines to be hidden. [#5521](https://github.com/microsoft/vscode-cpptools/issues/5521)
22-
* Fix empty `launch.json` being created when debug configuration selection is canceled. [#7517](https://github.com/microsoft/vscode-cpptools/issues/7517)
23-
* Fix Find All References on a global variable giving incorrect references to local variables. [#7702](https://github.com/microsoft/vscode-cpptools/issues/7702)
24-
* Fix `vcFormat` not working near the end of the file with UTF-8 characters > 1 byte. [#7704](https://github.com/microsoft/vscode-cpptools/issues/7704)
25-
* Fix configuration squiggle on a recursively resolved `forcedInclude`. [PR #7722](https://github.com/microsoft/vscode-cpptools/pull/7722)
26-
* Fix `Build and Debug Active File` for certain file extensions (.cu, .cp, etc.).
27-
* jogo- (@jogo-) [PR #7726](https://github.com/microsoft/vscode-cpptools/pull/7726)
28-
* Fix an infinite loop when importing a module with a template.
29-
30-
## Version 1.5.0-insiders: June 14, 2021
318
### Enhancements
9+
* Add auto-detection of clang compilers on Windows (and different versions of cl.exe). [#6718](https://github.com/microsoft/vscode-cpptools/issues/6718)
10+
* Stop adding .cu files to `files.associations` (switch to using setTextDocumentLanguage). [#7359](https://github.com/microsoft/vscode-cpptools/issues/7359)
3211
* Add "Symbol Options" for CppVsdbg to configure symbol settings [PR #7680](https://github.com/microsoft/vscode-cpptools/pull/7680)
3312
* Update CppVsdbg to use newer CppEE and msdia.
3413

3514
### Bug Fixes
3615
* Fix switch header/source not checking `files.exclude`. [#4429](https://github.com/microsoft/vscode-cpptools/issues/4429)
16+
* Fix code folding causing `} else if` lines to be hidden. [#5521](https://github.com/microsoft/vscode-cpptools/issues/5521)
17+
* Add abort handling to recursive includes directory iteration. [#6461](https://github.com/microsoft/vscode-cpptools/issues/6461)
18+
* Fix include completion with recursive includes in header files. [#6842](https://github.com/microsoft/vscode-cpptools/issues/6842)
19+
* Add the get-task-allow entitlement to macOS binaries to enable call stacks to be obtained when SIP is enabled. [#7412](https://github.com/microsoft/vscode-cpptools/issues/7412)
3720
* Fix Find All References reporting certain references in headers as inactive. [#7609](https://github.com/microsoft/vscode-cpptools/issues/7609)
3821
* Fix IntelliSense process crash and tag parser failure with columns > 65535. [#7621](https://github.com/microsoft/vscode-cpptools/issues/7621)
3922
* Fix incorrect localization translations.
@@ -43,9 +26,18 @@
4326
* Change references of "OS X" to "macOS".
4427
* Tyler Davis (@TylerADavis) [PR #7636](https://github.com/microsoft/vscode-cpptools/pull/7636)
4528
* Prevent the root path from being added to the `browse.path`. [#7648](https://github.com/microsoft/vscode-cpptools/issues/7648)
46-
* Fix configuration squiggle when `${workspaceFolder}` is used with `compilerPath`. [#7649](https://github.com/microsoft/vscode-cpptools/issues/7649)
29+
* Fix a configuration squiggle when `${workspaceFolder}` is used with `compilerPath`. [#7649](https://github.com/microsoft/vscode-cpptools/issues/7649)
4730
* Fix an issue causing editorConfig not to be used or cached. [PR #7666](https://github.com/microsoft/vscode-cpptools/pull/7666)
4831
* Fix document symbols nesting with templates. [#7673](https://github.com/microsoft/vscode-cpptools/issues/7673)
32+
* Fix include paths not being found when the paths start with /D or /I. [#7701](https://github.com/microsoft/vscode-cpptools/issues/7701), [#7757](https://github.com/microsoft/vscode-cpptools/issues/7756)
33+
* Fix Find All References on a global variable giving incorrect references to local variables. [#7702](https://github.com/microsoft/vscode-cpptools/issues/7702)
34+
* Fix `vcFormat` not working near the end of the file with UTF-8 characters > 1 byte. [#7704](https://github.com/microsoft/vscode-cpptools/issues/7704)
35+
* Fix a configuration squiggle for a recursively resolved `forcedInclude`. [PR #7722](https://github.com/microsoft/vscode-cpptools/pull/7722)
36+
* Fix `Build and Debug Active File` for certain file extensions (.cu, .cp, etc.).
37+
* jogo- (@jogo-) [PR #7726](https://github.com/microsoft/vscode-cpptools/pull/7726)
38+
* Fix `browse.path` being incorrect if an invalid `compileCommands` is set. [#7737](https://github.com/microsoft/vscode-cpptools/issues/7737)
39+
* Fix an incorrect error message when `C_Cpp.errorSquiggles` is `"Enabled"`. [#7744](https://github.com/microsoft/vscode-cpptools/issues/7744)
40+
* Fix compiler querying sometimes not working with Cygwin. [#7751](https://github.com/microsoft/vscode-cpptools/issues/7751)
4941
* Fix a duplicate IntelliSense update when a new C/C++ file is opened and after switching from a non-C/C++ file and back.
5042
* Fix a potential IntelliSense process crash on shutdown.
5143

Extension/package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2797,7 +2797,7 @@
27972797
"runtimeDependencies": [
27982798
{
27992799
"description": "C/C++ language components (Linux / x86_64)",
2800-
"url": "https://go.microsoft.com/fwlink/?linkid=2164295",
2800+
"url": "https://go.microsoft.com/fwlink/?linkid=2167520",
28012801
"platforms": [
28022802
"linux"
28032803
],
@@ -2808,11 +2808,11 @@
28082808
"./bin/cpptools",
28092809
"./bin/cpptools-srv"
28102810
],
2811-
"integrity": "2E6E25B3B9C10ECC25A5B523C413182D185F13492602CF92896C658E6959CBFA"
2811+
"integrity": "32AC1D58A5A21527AA24583011F5A3694FCEFB5920677D0CA8D13F70BC0102BE"
28122812
},
28132813
{
28142814
"description": "C/C++ language components (Linux / armhf)",
2815-
"url": "https://go.microsoft.com/fwlink/?linkid=2164297",
2815+
"url": "https://go.microsoft.com/fwlink/?linkid=2167624",
28162816
"platforms": [
28172817
"linux"
28182818
],
@@ -2823,11 +2823,11 @@
28232823
"./bin/cpptools",
28242824
"./bin/cpptools-srv"
28252825
],
2826-
"integrity": "25F5776247184254D49B9FCC25D0D018AECF1D8930FC517F25C9FCC0A9E650AC"
2826+
"integrity": "9CB1C36A34DD2F7A53FF5471F1FBB5C0AD65A9E67C17013C7FBF65CDDAF7A7E1"
28272827
},
28282828
{
28292829
"description": "C/C++ language components (Linux / aarch64)",
2830-
"url": "https://go.microsoft.com/fwlink/?linkid=2165100",
2830+
"url": "https://go.microsoft.com/fwlink/?linkid=2167623",
28312831
"platforms": [
28322832
"linux"
28332833
],
@@ -2838,11 +2838,11 @@
28382838
"./bin/cpptools",
28392839
"./bin/cpptools-srv"
28402840
],
2841-
"integrity": "186614524A13EC75BF68798861818D25CE82FDE293C57B725C11F62B0694EC55"
2841+
"integrity": "D8F6A5A4A8A13F6F872C94BD522602A7C0E5E5CCA58CE7CE1ED3DC32F82850AC"
28422842
},
28432843
{
28442844
"description": "C/C++ language components (macOS / x86_64)",
2845-
"url": "https://go.microsoft.com/fwlink/?linkid=2164296",
2845+
"url": "https://go.microsoft.com/fwlink/?linkid=2167518",
28462846
"platforms": [
28472847
"darwin"
28482848
],
@@ -2853,11 +2853,11 @@
28532853
"./bin/cpptools",
28542854
"./bin/cpptools-srv"
28552855
],
2856-
"integrity": "8E19E1BDD95FCC80F74529E6B5C24AB761F7D84B92CF44C33DAE38A8F11F6FB5"
2856+
"integrity": "3EF54224CED1BCC6D64B2A93BFA8093E3D75510C8F96E943049CCB4C656161A2"
28572857
},
28582858
{
28592859
"description": "C/C++ language components (macOS / ARM64)",
2860-
"url": "https://go.microsoft.com/fwlink/?linkid=2164187",
2860+
"url": "https://go.microsoft.com/fwlink/?linkid=2167519",
28612861
"platforms": [
28622862
"darwin"
28632863
],
@@ -2868,11 +2868,11 @@
28682868
"./bin/cpptools",
28692869
"./bin/cpptools-srv"
28702870
],
2871-
"integrity": "1225791C05E0DBD708D0EE9598ACBC94B742E25C7CAE92C5C89791AF924D4B96"
2871+
"integrity": "02F2BE96493256237995EF51D4E0CD0345727D27A61135C6FCDB88608406C908"
28722872
},
28732873
{
28742874
"description": "C/C++ language components (Windows)",
2875-
"url": "https://go.microsoft.com/fwlink/?linkid=2164298",
2875+
"url": "https://go.microsoft.com/fwlink/?linkid=2167517",
28762876
"platforms": [
28772877
"win32"
28782878
],
@@ -2884,11 +2884,11 @@
28842884
"./bin/cpptools.exe",
28852885
"./bin/cpptools-srv.exe"
28862886
],
2887-
"integrity": "8D9E008B789D13DF4175795400E9402D43D199846CEC1DC4DD1F319B4C0D5492"
2887+
"integrity": "1E23884810A6EBF56BC7C5C4CB5317723CC3519039D56BF07310735870163E77"
28882888
},
28892889
{
28902890
"description": "C/C++ language components (Windows ARM64)",
2891-
"url": "https://go.microsoft.com/fwlink/?linkid=2165101",
2891+
"url": "https://go.microsoft.com/fwlink/?linkid=2167516",
28922892
"platforms": [
28932893
"win32"
28942894
],
@@ -2899,7 +2899,7 @@
28992899
"./bin/cpptools.exe",
29002900
"./bin/cpptools-srv.exe"
29012901
],
2902-
"integrity": "4B94A64721FE8D0E1F93AACBA1190A9DC00DF7225E20BF628AC57BEC6301AA7D"
2902+
"integrity": "26CCA79735F15BE0595510E2A170794CBF7E2EE72F2A565CD9D26970EA35547F"
29032903
},
29042904
{
29052905
"description": "ClangFormat (Linux / x86_64)",

0 commit comments

Comments
 (0)