Showing results for August 2025 - C++ Team Blog

Aug 19, 2025
Post comments count5
Post likes count4

Announcing Proxy 4: The Next Leap in C++ Polymorphism

Mingxin Wang
Mingxin Wang

Version 4 of Microsoft's Proxy library brings feature improvements, better diagnostics, better code generation, modern compiler/debugger support.

C++Announcement
Aug 18, 2025
Post comments count3
Post likes count3

Dependabot support for vcpkg

Jamie Magee
Jamie Magee

We are excited to announce that GitHub’s Dependabot now brings automated dependency updates to C++ projects using vcpkg. This support is available for projects using vcpkg manifest files, empowering teams to keep their library dependencies current and secure with minimal effort. With Dependabot, your repo can receive automatic pull requests to upgr...

C++Vcpkg
Aug 5, 2025
Post comments count0
Post likes count0

What’s New in vcpkg (July 2025)

Augustin Popa
Augustin Popa

This blog post summarizes changes to the vcpkg package manager as part of the 2025.07.25 registry release, 2025-06-20, 2025-07-16, and 2025-07-21 tool releases, as well as changes to vcpkg documentation throughout July. This release includes a new command for printing package SPDX licenses, binary caching optimizations, and support for visionOS, So...

C++Vcpkg
Aug 4, 2025
Post comments count0
Post likes count1

Dynamically Update C++ syntax using Next Edit Suggestions

Sinem Akinci
Sinem Akinci

When working in a C++ repo, you often are maintaining and updating existing code just as often as you are writing new code. However, updating code in C++ can often require navigating to several different locations in a file to ensure consistency, which can disrupt your logical workflow. For example, changing a data member’s access level typically i...

C++New FeatureCopilot