Unsure when this started but when you generate the system_info report, it has this section
Other Libraries: ========================================== OpenColorIO: 2, 1, 1 OpenImageIO: 2, 3, 20 OpenShadingLanguage: 1, 12, 6 OpenSubdiv: 0, 0, 0 OpenVDB: 9, 0, 0 Alembic: 1, 8, 3 USD: 0, 22, 3
OSD Lists as 0, 0, 0 this is due to opensubdiv_capi.cc not actually including the OSD version header, so it's not getting the version define, and the code in openSubdiv_getVersionHex is really well prepared to deal with any or no version at all of OSD, catches the problem and returns 0, 0, 0
Given this file is only build when OSD is enabled we can just blindly include OpenSubdiv/version.h here