From 6da77a5127f35289f7f040fae2a235e1b2125b55 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Fri, 28 Aug 2026 11:22:48 -0700 Subject: [PATCH] Update changelog and version for 1.34.1 (#14714) --- Extension/CHANGELOG.md | 10 ++++++++++ Extension/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 20b816275..3d50c118c 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,15 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.34.1: August 28, 2026 +### Bug Fixes +* Fix formatting not inserting the final newline requested by `InsertNewlineAtEOF`. [#12680](https://github.com/microsoft/vscode-cpptools/issues/12680) +* Fix nested quoted `#include` directives failing to resolve source-relative headers when `-iquote` paths are used. [#13606](https://github.com/microsoft/vscode-cpptools/issues/13606) +* Fix incorrect semantic highlighting for explicit function template specializations. [#14491](https://github.com/microsoft/vscode-cpptools/issues/14491) +* Fix IntelliSense using `c17` instead of GCC's default GNU C language standard. [#14560](https://github.com/microsoft/vscode-cpptools/issues/14560) +* Fix unnecessary IntelliSense reparsing after unrelated settings changes and incorrect language updates after `files.associations` changes. +* Fix custom C/C++ `files.associations` entries with certain non-ASCII characters being ignored on Windows. +* Fix `cpptools-srv` crashes under memory pressure while reading or processing RPC messages. + ## Version 1.34.0: August 25, 2026 ### Enhancements * Add folding support for C++ `public`, `private`, and `protected` access sections. [#14645](https://github.com/microsoft/vscode-cpptools/issues/14645) diff --git a/Extension/package.json b/Extension/package.json index 805ab83ff..004ee8436 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.34.0-main", + "version": "1.34.1-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md",