From 6ea023c14a9626881442406d646c5006e84a99c0 Mon Sep 17 00:00:00 2001
From: Colen Garoutte-Carson <49173979+Colengms@users.noreply.github.com>
Date: Tue, 23 Jun 2026 11:52:58 -0700
Subject: [PATCH 1/3] Update survey URL (#14538)
---
Extension/README.md | 2 +-
Extension/src/LanguageServer/extension.ts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Extension/README.md b/Extension/README.md
index d6a505631..6a06178cc 100644
--- a/Extension/README.md
+++ b/Extension/README.md
@@ -61,7 +61,7 @@ File questions, issues, or feature requests for the extension.
If someone has already filed an issue that encompasses your feedback, please leave a 👍 or 👎 reaction on the issue to upvote or downvote it to help us prioritize the issue.
-**[Quick survey](https://www.research.net/r/VBVV6C6)**
+**[Quick survey](https://aka.ms/vcvscodesurvey)**
Let us know what you think of the extension by taking the quick survey.
diff --git a/Extension/src/LanguageServer/extension.ts b/Extension/src/LanguageServer/extension.ts
index d1dc32dc6..55516f626 100644
--- a/Extension/src/LanguageServer/extension.ts
+++ b/Extension/src/LanguageServer/extension.ts
@@ -944,7 +944,7 @@ function onToggleRefGroupView(): void {
function onTakeSurvey(): void {
telemetry.logLanguageServerEvent("onTakeSurvey");
- const uri: vscode.Uri = vscode.Uri.parse(`https://www.research.net/r/VBVV6C6?o=${os.platform()}&m=${vscode.env.machineId}`);
+ const uri: vscode.Uri = vscode.Uri.parse(`https://aka.ms/vcvscodesurvey`);
void vscode.commands.executeCommand('vscode.open', uri);
}
From 1ad8241f6625de53a016ae5b04655e815dac8a0e Mon Sep 17 00:00:00 2001
From: Sean McManus
Date: Tue, 23 Jun 2026 16:11:05 -0700
Subject: [PATCH 2/3] Update .github/actions dependencies. (#14542)
---
.github/actions/package-lock.json | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/actions/package-lock.json b/.github/actions/package-lock.json
index b9c24ae37..256495ff6 100644
--- a/.github/actions/package-lock.json
+++ b/.github/actions/package-lock.json
@@ -5439,9 +5439,9 @@
}
},
"node_modules/undici": {
- "version": "6.24.0",
- "resolved": "https://pkgs.dev.azure.com/azure-public/VisualCpp/_packaging/cpp_PublicPackages/npm/registry/undici/-/undici-6.24.0.tgz",
- "integrity": "sha1-rTa4ebSILRSt3BPdZB2n7XrHYjo=",
+ "version": "6.27.0",
+ "resolved": "https://pkgs.dev.azure.com/azure-public/VisualCpp/_packaging/cpp_PublicPackages/npm/registry/undici/-/undici-6.27.0.tgz",
+ "integrity": "sha1-Qfnkj3xaQNJzdsqurYyan8e8qcQ=",
"license": "MIT",
"engines": {
"node": ">=18.17"
From faa8f425eced85825e47a8d843070718c923cf29 Mon Sep 17 00:00:00 2001
From: Sean McManus
Date: Tue, 23 Jun 2026 17:29:43 -0700
Subject: [PATCH 3/3] Update changelog for 1.33.1. (#14543)
---
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 bd0bb5bc7..577a7c798 100644
--- a/Extension/CHANGELOG.md
+++ b/Extension/CHANGELOG.md
@@ -1,5 +1,11 @@
# C/C++ for Visual Studio Code Changelog
+## Version 1.33.1: June 24, 2026
+### Bug Fixes
+* Fix some crash regressions.
+* Fix IntelliSense incorrectly resolving `#include` files through a symbolic link after the target directory was deleted from disk.
+* Fix "tag parsing finished" status randomly getting reported too soon after a 'Reset IntelliSense Database' command.
+
## Version 1.33.0: June 22, 2026
### New Feature
* Unification of tag parsing with the VS implementation. In particular, it's now done using multiple parallel `cpptools-srv2` processes. [PR #14426](https://github.com/microsoft/vscode-cpptools/pull/14426)
diff --git a/Extension/package.json b/Extension/package.json
index f6761096f..e1fcedc58 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.0-main",
+ "version": "1.33.1-main",
"publisher": "ms-vscode",
"icon": "LanguageCCPP_color_128x.png",
"readme": "README.md",