Skip to content

Commit d24f781

Browse files
authored
Merge pull request #13384 from microsoft/main
Merge for 1.24.3 (pre-release)
2 parents 399d558 + a807d57 commit d24f781

File tree

87 files changed

+150
-248
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+150
-248
lines changed

.github/actions/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@octokit/rest": "^19.0.3",
1616
"@slack/web-api": "^6.9.1",
1717
"applicationinsights": "^2.5.1",
18-
"axios": "^1.6.8",
18+
"axios": "^1.8.2",
1919
"uuid": "^8.3.2"
2020
},
2121
"devDependencies": {

Extension/.vscodeignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ typings/**
4646
import_edge_strings.js
4747
localized_string_ids.h
4848
translations_auto_pr.js
49+
readme.developer.md
50+
Reinstalling the Extension.md
51+
*.d.ts
4952

5053
# ignore i18n language files
5154
i18n/**

Extension/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# C/C++ for Visual Studio Code Changelog
22

3+
## Version 1.24.3: March 18, 2025
4+
### Enhancements
5+
* Add detected test frameworks to the Copilot context when `#cpp` is used. [PR #13285](https://github.com/microsoft/vscode-cpptools/pull/13285)
6+
* Update clang-tidy and clang-format from 19.1.7 to 20.1.0. [PR #13348](https://github.com/microsoft/vscode-cpptools/pull/13348)
7+
* Remove some unnecessary files from the vsix. [PR #13368](https://github.com/microsoft/vscode-cpptools/pull/13368)
8+
* Improve the logging when a non-existent path is used for indexing. [PR #13372](https://github.com/microsoft/vscode-cpptools/pull/13372)
9+
* Remove the `C_Cpp.updateChannel` setting. [PR #13376](https://github.com/microsoft/vscode-cpptools/pull/13376)
10+
* Switch to only passing the root framework to clang-tidy.
11+
12+
### Bug Fixes
13+
* Fix a bug with symlink resolving with `compile_commands.json`. [#13321](https://github.com/microsoft/vscode-cpptools/issues/13321)
14+
* Fix a performance issue on macOS when processing `compile_commands.json` with a lot of include paths. [#13366](https://github.com/microsoft/vscode-cpptools/issues/13366)
15+
* Fix some localization bugs. [PR #13373](https://github.com/microsoft/vscode-cpptools/pull/13373)
16+
* Fix IntelliSense showing the wrong size of objects. [#13375](https://github.com/microsoft/vscode-cpptools/issues/13375)
17+
* Fix a `${workspaceFolder}/*` include path not being used as a non-recursive browse path.
18+
* Fix some potential IntelliSense process crashes when processing Copilot snippets.
19+
* Fix a regression with compiler query caching in the database.
20+
321
## Version 1.24.2: March 6, 2025
422
### Enhancements
523
* Various improvements to Copilot snippets. [PR #13296](https://github.com/microsoft/vscode-cpptools/pull/13296)

Extension/bin/linux.clang.arm.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"defaults": [
33
"-D__building_module(x)=0",
4-
"--pack_alignment",
5-
"8",
64
"-Dunix=1",
75
"-D__unix__=1",
86
"-D__linux__=1",

Extension/bin/linux.clang.arm64.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"defaults": [
33
"-D__building_module(x)=0",
4-
"--pack_alignment",
5-
"8",
64
"-Dunix=1",
75
"-D__unix__=1",
86
"-D__linux__=1",

Extension/bin/linux.clang.x64.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"defaults": [
33
"-D__building_module(x)=0",
4-
"--pack_alignment",
5-
"8",
64
"-Dunix=1",
75
"-D__unix__=1",
86
"-D__linux__=1",

Extension/bin/linux.clang.x86.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"defaults": [
33
"-D__building_module(x)=0",
4-
"--pack_alignment",
5-
"8",
64
"-Dunix=1",
75
"-D__unix__=1",
86
"-D__linux__=1",

Extension/bin/linux.gcc.arm.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"defaults": [
3-
"--pack_alignment",
4-
"8",
53
"-Dunix=1",
64
"-D__unix__=1",
75
"-D__linux__=1",

Extension/bin/linux.gcc.arm64.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"defaults": [
3-
"--pack_alignment",
4-
"8",
53
"-Dunix=1",
64
"-D__unix__=1",
75
"-D__linux__=1",

0 commit comments

Comments
 (0)