Add comment (#41219)

JohnMcPMS committed Jul 31, 2026 at 12:09 UTC e7197ca7774aa0ea66354632a6527c482fbde213
1 file changed +3
src/windows/service/exe/WSLCSessionManager.cpp
+3
@@ -581,6 +581,9 @@ try
581 TraceLoggingValue(ClientVersion->Minor, "Minor"),
582 TraceLoggingValue(ClientVersion->Revision, "Revision"));
583
584 + // Moved to 2.9.5 in https://github.com/microsoft/WSL/pull/41199 to add OpenContainer to a compat interface.
585 + // While we could have prevented moving this forward, as we are still in preview it should be acceptable to break.
586 + // This also forces callers to experience the SDK support error early, hopefully leading to better support if a post-release support floor needs to be raised.
587 constexpr std::tuple<uint32_t, uint32_t, uint32_t> c_minClientVersion{2, 9, 5};
588
589 const std::tuple<uint32_t, uint32_t, uint32_t> clientVersion{ClientVersion->Major, ClientVersion->Minor, ClientVersion->Revision};