From 2f0efe905584b00ec57637865c89a36ae07fe666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20B=C3=A4umer?= Date: Wed, 10 Sep 2025 17:34:41 +0200 Subject: [PATCH 1/2] Wait maximum 3 seconds for the Copilot chat extension to activate. (#13918) --- Extension/src/LanguageServer/copilotProviders.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Extension/src/LanguageServer/copilotProviders.ts b/Extension/src/LanguageServer/copilotProviders.ts index 31cf21f3e..c402afec8 100644 --- a/Extension/src/LanguageServer/copilotProviders.ts +++ b/Extension/src/LanguageServer/copilotProviders.ts @@ -159,7 +159,14 @@ export async function getCopilotChatApi(): Promise(resolve => { + setTimeout(() => { + resolve(undefined); + }, 3000); + }) + ]); } catch { return undefined; } From c101b677c4246c20ef152cfbc7cc0b2fd8e9f228 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Wed, 10 Sep 2025 11:22:34 -0700 Subject: [PATCH 2/2] Update changelog for 1.27.5. (#13920) --- Extension/CHANGELOG.md | 11 +++++++++++ Extension/package.json | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 1e65389a5..dc0a9eca1 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,10 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.27.5: September 10, 2025 +### Bug Fix +* Fix extension activation getting stuck by GitHub Copilot activation. [#13914](https://github.com/microsoft/vscode-cpptools/issues/13914) + * Thank you for the contribution. [@dbaeumer (Dirk Bäumer)](https://github.com/dbaeumer) [PR #13918](https://github.com/microsoft/vscode-cpptools/pull/13918) + ## Version 1.27.4: September 9, 2025 ### Bug Fixes * Fix crash recovery. [#13838](https://github.com/microsoft/vscode-cpptools/issues/13838) @@ -50,7 +55,13 @@ * Fix activation failing if the `c_cpp_properties.json` exists but fails to be opened. [#13829](https://github.com/microsoft/vscode-cpptools/issues/13829) * Fix an IntelliSense bug that could cause incorrect string lengths to be reported for string literals in files that use certain file encodings. +## Version 1.26.5: September 10, 2025 +### Bug Fix +* Fix extension activation getting stuck by GitHub Copilot activation. [#13914](https://github.com/microsoft/vscode-cpptools/issues/13914) + * Thank you for the contribution. [@dbaeumer (Dirk Bäumer)](https://github.com/dbaeumer) [PR #13918](https://github.com/microsoft/vscode-cpptools/pull/13918) + ## Version 1.26.4: September 9, 2025 +### Enhancement * Update GitHub Copilot APIs. [PR #13877](https://github.com/microsoft/vscode-cpptools/pull/13877) * Thank you for the contribution. [@dbaeumer (Dirk Bäumer)](https://github.com/dbaeumer) diff --git a/Extension/package.json b/Extension/package.json index 74dcdae5e..cdfa82d47 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.27.4-main", + "version": "1.27.5-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md",