From 24d299fcff54ed6eaf867e62f799a4cd3e66df3a Mon Sep 17 00:00:00 2001 From: Bob Brown Date: Tue, 7 Jul 2026 15:52:55 -0700 Subject: [PATCH 1/2] Rewording an error message (#14561) * Rewording an error message --- Extension/src/nativeStrings.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Extension/src/nativeStrings.json b/Extension/src/nativeStrings.json index 86b44fce4..484bdf550 100644 --- a/Extension/src/nativeStrings.json +++ b/Extension/src/nativeStrings.json @@ -10,7 +10,7 @@ "edit_include_path": "Edit \"includePath\" setting", "disable_error_squiggles": "Disable error squiggles", "enable_error_squiggles": "Enable all error squiggles", - "include_errors_update_include_path_squiggles_disables": "#include errors detected. Please update your includePath. Squiggles are disabled for this translation unit ({0}).", + "include_errors_update_include_path_squiggles_disabled2": "#include errors detected. Please update your includePath. Syntax errors for this file will not be reported until included files are found.", "include_errors_update_include_path_intellisense_disabled": "#include errors detected. Please update your includePath. IntelliSense features for this translation unit ({0}) will be provided by the Tag Parser.", "include_errors_update_compile_commands_or_include_path_intellisense_disabled": "#include errors detected. Consider updating your compile_commands.json or includePath. IntelliSense features for this translation unit ({0}) will be provided by the Tag Parser.", "could_not_parse_compile_commands": "\"{0}\" could not be parsed. 'includePath' from c_cpp_properties.json in folder '{1}' will be used instead.", @@ -120,7 +120,7 @@ "formatting_diff": "Formatting diffed output:", "disable_inactive_regions": "Disable inactive region colorization", "error_limit_exceeded": "Error limit exceeded, {0} error(s) not reported.", - "include_errors_update_compile_commands_or_include_path_squiggles_disabled": "#include errors detected. Consider updating your compile_commands.json or includePath. Squiggles are disabled for this translation unit ({0}).", + "include_errors_update_compile_commands_or_include_path_squiggles_disabled2": "#include errors detected. Consider updating your compile_commands.json or includePath. Syntax errors for this file will not be reported until included files are found.", "cannot_reset_database": "The IntelliSense database could not be reset. To manually reset, close all VS Code instances and then delete this file: {0}", "formatting_failed_see_output": "Formatting failed. See the output window for details.", "populating_include_completion_cache": "Populating include completion cache.", @@ -158,7 +158,7 @@ "fallback_to_no_bitness": "Failed to query compiler. Falling back to no bitness.", "intellisense_client_creation_aborted": "IntelliSense client creation aborted: {0}", "include_errors_config_provider_intellisense_disabled": "#include errors detected based on information provided by the configurationProvider setting. IntelliSense features for this translation unit ({0}) will be provided by the Tag Parser.", - "include_errors_config_provider_squiggles_disabled": "#include errors detected based on information provided by the configurationProvider setting. Squiggles are disabled for this translation unit ({0}).", + "include_errors_config_provider_squiggles_disabled2": "#include errors detected based on information provided by the configurationProvider setting. Syntax errors for this file will not be reported until included files are found.", "preprocessor_keyword": { "text": "preprocessor keyword", "hint": "Refers to C/C++ processor keywords" @@ -699,4 +699,4 @@ "help_allow_missing_lsp_config": "Allow the server to start even if the specified --lsp-config file does not exist.", "initialize_failed_during_engine_setup": "Initialization failed during engine setup.", "important_label": "Important:" -} +} \ No newline at end of file From 6f40e5bc24df2131daa2fa3707ad42b5a99f58ad Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Wed, 8 Jul 2026 11:45:52 -0700 Subject: [PATCH 2/2] Update changelog and version for 1.33.4. (#14568) --- Extension/CHANGELOG.md | 6 ++++++ Extension/package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index f028025b6..0d8e5c500 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,11 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.33.4: July 8, 2026 +### Bug Fixes +* Fix the wording for the `#include` errors detected message. [#8227](https://github.com/microsoft/vscode-cpptools/issues/8227) +* Fix another "directory_cache" crash. +* Update some localization. + ## Version 1.33.3: July 6, 2026 ### Enhancement * Allow platform overrides in `cppbuild` tasks. [#11601](https://github.com/microsoft/vscode-cpptools/issues/11601) diff --git a/Extension/package.json b/Extension/package.json index 41abfff67..eb08ea14f 100644 --- a/Extension/package.json +++ b/Extension/package.json @@ -2,7 +2,7 @@ "name": "cpptools", "displayName": "C/C++", "description": "C/C++ IntelliSense, debugging, and code browsing.", - "version": "1.33.3-main", + "version": "1.33.4-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md",