mirror of https://github.com/docker/cli.git
vendor: github.com/Microsoft/hcsshim v0.11.1
full diff: https://github.com/microsoft/hcsshim/compare/v0.9.10...v0.11.1 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
23f50a0665
commit
f90890fb48
|
@ -50,7 +50,7 @@ require (
|
||||||
require (
|
require (
|
||||||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
|
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
|
||||||
github.com/Microsoft/go-winio v0.6.1 // indirect
|
github.com/Microsoft/go-winio v0.6.1 // indirect
|
||||||
github.com/Microsoft/hcsshim v0.9.10 // indirect
|
github.com/Microsoft/hcsshim v0.11.1 // indirect
|
||||||
github.com/beorn7/perks v1.0.1 // indirect
|
github.com/beorn7/perks v1.0.1 // indirect
|
||||||
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
||||||
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c // indirect
|
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c // indirect
|
||||||
|
|
867
vendor.sum
867
vendor.sum
File diff suppressed because it is too large
Load Diff
|
@ -45,6 +45,15 @@ func Build() uint16 {
|
||||||
return Get().Build
|
return Get().Build
|
||||||
}
|
}
|
||||||
|
|
||||||
func (osv OSVersion) ToString() string {
|
// String returns the OSVersion formatted as a string. It implements the
|
||||||
|
// [fmt.Stringer] interface.
|
||||||
|
func (osv OSVersion) String() string {
|
||||||
return fmt.Sprintf("%d.%d.%d", osv.MajorVersion, osv.MinorVersion, osv.Build)
|
return fmt.Sprintf("%d.%d.%d", osv.MajorVersion, osv.MinorVersion, osv.Build)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ToString returns the OSVersion formatted as a string.
|
||||||
|
//
|
||||||
|
// Deprecated: use [OSVersion.String].
|
||||||
|
func (osv OSVersion) ToString() string {
|
||||||
|
return osv.String()
|
||||||
|
}
|
||||||
|
|
|
@ -1,37 +1,63 @@
|
||||||
package osversion
|
package osversion
|
||||||
|
|
||||||
|
// Windows Client and Server build numbers.
|
||||||
|
//
|
||||||
|
// See:
|
||||||
|
// https://learn.microsoft.com/en-us/windows/release-health/release-information
|
||||||
|
// https://learn.microsoft.com/en-us/windows/release-health/windows-server-release-info
|
||||||
|
// https://learn.microsoft.com/en-us/windows/release-health/windows11-release-information
|
||||||
const (
|
const (
|
||||||
// RS1 (version 1607, codename "Redstone 1") corresponds to Windows Server
|
// RS1 (version 1607, codename "Redstone 1") corresponds to Windows Server
|
||||||
// 2016 (ltsc2016) and Windows 10 (Anniversary Update).
|
// 2016 (ltsc2016) and Windows 10 (Anniversary Update).
|
||||||
RS1 = 14393
|
RS1 = 14393
|
||||||
|
// V1607 (version 1607, codename "Redstone 1") is an alias for [RS1].
|
||||||
|
V1607 = RS1
|
||||||
|
// LTSC2016 (Windows Server 2016) is an alias for [RS1].
|
||||||
|
LTSC2016 = RS1
|
||||||
|
|
||||||
// RS2 (version 1703, codename "Redstone 2") was a client-only update, and
|
// RS2 (version 1703, codename "Redstone 2") was a client-only update, and
|
||||||
// corresponds to Windows 10 (Creators Update).
|
// corresponds to Windows 10 (Creators Update).
|
||||||
RS2 = 15063
|
RS2 = 15063
|
||||||
|
// V1703 (version 1703, codename "Redstone 2") is an alias for [RS2].
|
||||||
|
V1703 = RS2
|
||||||
|
|
||||||
// RS3 (version 1709, codename "Redstone 3") corresponds to Windows Server
|
// RS3 (version 1709, codename "Redstone 3") corresponds to Windows Server
|
||||||
// 1709 (Semi-Annual Channel (SAC)), and Windows 10 (Fall Creators Update).
|
// 1709 (Semi-Annual Channel (SAC)), and Windows 10 (Fall Creators Update).
|
||||||
RS3 = 16299
|
RS3 = 16299
|
||||||
|
// V1709 (version 1709, codename "Redstone 3") is an alias for [RS3].
|
||||||
|
V1709 = RS3
|
||||||
|
|
||||||
// RS4 (version 1803, codename "Redstone 4") corresponds to Windows Server
|
// RS4 (version 1803, codename "Redstone 4") corresponds to Windows Server
|
||||||
// 1803 (Semi-Annual Channel (SAC)), and Windows 10 (April 2018 Update).
|
// 1803 (Semi-Annual Channel (SAC)), and Windows 10 (April 2018 Update).
|
||||||
RS4 = 17134
|
RS4 = 17134
|
||||||
|
// V1803 (version 1803, codename "Redstone 4") is an alias for [RS4].
|
||||||
|
V1803 = RS4
|
||||||
|
|
||||||
// RS5 (version 1809, codename "Redstone 5") corresponds to Windows Server
|
// RS5 (version 1809, codename "Redstone 5") corresponds to Windows Server
|
||||||
// 2019 (ltsc2019), and Windows 10 (October 2018 Update).
|
// 2019 (ltsc2019), and Windows 10 (October 2018 Update).
|
||||||
RS5 = 17763
|
RS5 = 17763
|
||||||
|
// V1809 (version 1809, codename "Redstone 5") is an alias for [RS5].
|
||||||
|
V1809 = RS5
|
||||||
|
// LTSC2019 (Windows Server 2019) is an alias for [RS5].
|
||||||
|
LTSC2019 = RS5
|
||||||
|
|
||||||
// V19H1 (version 1903) corresponds to Windows Server 1903 (semi-annual
|
// V19H1 (version 1903, codename 19H1) corresponds to Windows Server 1903 (semi-annual
|
||||||
// channel).
|
// channel).
|
||||||
V19H1 = 18362
|
V19H1 = 18362
|
||||||
|
// V1903 (version 1903) is an alias for [V19H1].
|
||||||
|
V1903 = V19H1
|
||||||
|
|
||||||
// V19H2 (version 1909) corresponds to Windows Server 1909 (semi-annual
|
// V19H2 (version 1909, codename 19H2) corresponds to Windows Server 1909 (semi-annual
|
||||||
// channel).
|
// channel).
|
||||||
V19H2 = 18363
|
V19H2 = 18363
|
||||||
|
// V1909 (version 1909) is an alias for [V19H2].
|
||||||
|
V1909 = V19H2
|
||||||
|
|
||||||
// V20H1 (version 2004) corresponds to Windows Server 2004 (semi-annual
|
// V20H1 (version 2004, codename 20H1) corresponds to Windows Server 2004 (semi-annual
|
||||||
// channel).
|
// channel).
|
||||||
V20H1 = 19041
|
V20H1 = 19041
|
||||||
|
// V2004 (version 2004) is an alias for [V20H1].
|
||||||
|
V2004 = V20H1
|
||||||
|
|
||||||
// V20H2 corresponds to Windows Server 20H2 (semi-annual channel).
|
// V20H2 corresponds to Windows Server 20H2 (semi-annual channel).
|
||||||
V20H2 = 19042
|
V20H2 = 19042
|
||||||
|
|
|
@ -12,8 +12,8 @@ github.com/Microsoft/go-winio/internal/fs
|
||||||
github.com/Microsoft/go-winio/internal/socket
|
github.com/Microsoft/go-winio/internal/socket
|
||||||
github.com/Microsoft/go-winio/internal/stringbuffer
|
github.com/Microsoft/go-winio/internal/stringbuffer
|
||||||
github.com/Microsoft/go-winio/pkg/guid
|
github.com/Microsoft/go-winio/pkg/guid
|
||||||
# github.com/Microsoft/hcsshim v0.9.10
|
# github.com/Microsoft/hcsshim v0.11.1
|
||||||
## explicit; go 1.13
|
## explicit; go 1.18
|
||||||
github.com/Microsoft/hcsshim/osversion
|
github.com/Microsoft/hcsshim/osversion
|
||||||
# github.com/beorn7/perks v1.0.1
|
# github.com/beorn7/perks v1.0.1
|
||||||
## explicit; go 1.11
|
## explicit; go 1.11
|
||||||
|
|
Loading…
Reference in New Issue