File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ class WindowsUtils(object):
1313 _minimumRequiredBuild = 17763
1414
1515 # This lookup table is based on the list of valid tags from <https://hub.docker.com/r/microsoft/windowsservercore/>
16- # and list of build-to-release mapping from https://docs.microsoft.com/en-us/windows/release-health/release-information
16+ # and list of build-to-release mappings from the following pages:
17+ # - https://docs.microsoft.com/en-us/windows/release-health/release-information
18+ # - https://docs.microsoft.com/en-us/windows/release-health/windows11-release-information
1719 _knownTagsByBuildNumber = {
1820 17763 : "ltsc2019" ,
1921 18362 : "1903" ,
@@ -22,6 +24,7 @@ class WindowsUtils(object):
2224 19042 : "20H2" ,
2325 19043 : "21H1" ,
2426 20348 : "ltsc2022" ,
27+ 22000 : "ltsc2022" ,
2528 }
2629
2730 _knownTags = list (_knownTagsByBuildNumber .values ())
You can’t perform that action at this time.
0 commit comments