This repository was archived by the owner on Jan 29, 2026. It is now read-only.
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request updates the project's toolchain and dependencies to their latest versions. The primary focus is upgrading major compiler versions (Clang 20→21, GCC 14→15, NVHPC 25.7→25.11) and core dependencies (fmt, google-test, google-benchmark, nlohmann-json). The PR also refactors proxy_fmt.h to maintain compatibility with fmt 12.x by replacing the removed fmt::is_char check with version-based type aliases.
- Updated three major compiler toolchains to their latest versions
- Upgraded four key dependencies to newer releases
- Refactored fmt integration code to use version-specific type aliases instead of removed API
- Consolidated FetchContent setup in parent CMakeLists.txt for better organization
Reviewed changes
Copilot reviewed 12 out of 13 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/bvt-clang.yml |
Updates Clang from version 20 to 21 in the main build and test workflow |
.github/workflows/bvt-gcc.yml |
Updates GCC from version 14 to 15 using Docker container approach |
.github/workflows/bvt-nvhpc.yml |
Updates NVHPC from version 25.7 to 25.11 |
.github/workflows/bvt-compatibility.yml |
Adds Clang 20 to compatibility tests alongside existing compiler versions |
CMakeLists.txt |
Consolidates FetchContent setup and declares fmt 12.1.0 in parent CMake file |
include/proxy/v4/proxy.h |
Fixes whitespace formatting in macro definition |
include/proxy/v4/proxy_fmt.h |
Refactors to use version-based type aliases instead of removed fmt::is_char API |
tests/proxy_fmt_format_tests.cpp |
Removes NVCOMPILER pragma guards that are no longer needed |
tests/CMakeLists.txt |
Updates google-test to 1.17.0 and removes redundant FetchContent declarations |
benchmarks/CMakeLists.txt |
Updates google-benchmark to 1.9.4 and removes redundant FetchContent setup |
docs/CMakeLists.txt |
Removes redundant fmt FetchContent declaration now in parent CMake |
tools/report_generator/CMakeLists.txt |
Updates nlohmann-json to 3.12.0 with new archive URL |
cmake/msft_proxy4ModuleTargets.cmake |
Adds Clang compiler flag to suppress C++2b extension warnings |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
tian-lt
approved these changes
Dec 6, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
fmtfrom 11.2.0 to 12.1.0. Also refactoredproxy_fmt.hnot to rely onfmt::is_charbecause it's removed in the latest 12.x.google-benchmarkfrom 1.9.0 to 1.9.4.google-testfrom 1.15.2 to 1.17.0.nlohmann-jsonfrom 3.11.3 to 3.12.0.