tag v0.165.0 Tagger: imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> Changes with 0.165.0 ---------------- * distro: move rhel9 into a generic distro (osbuild/images#1645) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger * Revert "distro: drop `ImageType.BasePartitionTable()`" (osbuild/images#1691) * Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza * Update dependencies 2025-07-20 (osbuild/images#1675) * Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger * defs: add missing `bootstrap_containers` (osbuild/images#1679) * Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza * disk: handle adding `PReP` partition on PPC64/s390x (HMS-8884) (osbuild/images#1681) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger * distro: bring per-distro checkOptions back (osbuild/images#1678) * Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza * distro: cleanups in the pkg/distro/generic area (osbuild/images#1686) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger * distro: move rhel8 into a generic distro (osbuild/images#1643) * Author: Michael Vogt, Reviewers: Nobody * distro: small followups for PR#1682 (osbuild/images#1689) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger, Tomáš Hozza * distro: unify transform/match into a single concept (osbuild/images#1682) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Tomáš Hozza * distros: de-duplicate runner build packages for centos10 (osbuild/images#1680) * Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza * github: disable Go dep updates through dependabot (osbuild/images#1683) * Author: Achilleas Koutsou, Reviewers: Simon de Vlieger, Tomáš Hozza * repos: include almalinux 9.6 (osbuild/images#1677) * Author: Simon de Vlieger, Reviewers: Lukáš Zapletal, Tomáš Hozza * rhel9: wsl distribution config (osbuild/images#1694) * Author: Simon de Vlieger, Reviewers: Michael Vogt, Sanne Raymaekers * test/manifests/all-customizations: don't embed local file via URI (osbuild/images#1684) * Author: Tomáš Hozza, Reviewers: Achilleas Koutsou, Brian C. Lane — Somewhere on the Internet, 2025-07-28 --- tag v0.166.0 Tagger: imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> Changes with 0.166.0 ---------------- * customizations/subscription: conditionally enable semanage call (HMS-8866) (osbuild/images#1673) * Author: Sanne Raymaekers, Reviewers: Achilleas Koutsou, Michael Vogt * distro/rhel-10: versionlock shim-x64 in the azure-cvm image (osbuild/images#1697) * Author: Achilleas Koutsou, Reviewers: Michael Vogt, Simon de Vlieger * manifestmock: move container/pkg/commit mocks into helper (osbuild/images#1700) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger * rhel9: `vagrant-libvirt`, `vagrant-virtualbox` (osbuild/images#1693) * Author: Simon de Vlieger, Reviewers: Michael Vogt, Sanne Raymaekers * rhel{9,10}: centos WSL refinement (HMS-8922) (osbuild/images#1690) * Author: Simon de Vlieger, Reviewers: Ondřej Budai, Sanne Raymaekers, Tomáš Hozza — Somewhere on the Internet, 2025-07-29 --- tag v0.167.0 Tagger: imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> Changes with 0.167.0 ---------------- * RHEL/Azure: drop obsolete WAAgentConfig keys [RHEL-93894] and remove loglevel kernel option [RHEL-102372] (osbuild/images#1611) * Author: Achilleas Koutsou, Reviewers: Michael Vogt, Ondřej Budai, Sanne Raymaekers * Update dependencies 2025-07-27 (osbuild/images#1699) * Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger * distro/rhel9: set default_kernel to kernel-uki-virt (osbuild/images#1704) * Author: Achilleas Koutsou, Reviewers: Ondřej Budai, Simon de Vlieger * distro: drop legacy loaders and update tests (osbuild/images#1687) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Tomáš Hozza * distro: fix issues with yaml distro definitions and enable yaml checks (osbuild/images#1702) * Author: Achilleas Koutsou, Reviewers: Michael Vogt, Ondřej Budai, Simon de Vlieger — Somewhere on the Internet, 2025-07-30 --- tag v0.168.0 Tagger: imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> Changes with 0.168.0 ---------------- * distro: fix bug in variable substitution for static distros (osbuild/images#1710) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger * rhel{9,10}: azure for non-RHEL (HMS-8949) (osbuild/images#1707) * Author: Simon de Vlieger, Reviewers: Achilleas Koutsou, Michael Vogt — Somewhere on the Internet, 2025-07-30 ---
91 lines
3 KiB
Go
91 lines
3 KiB
Go
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 (
|
|
// RS1 (version 1607, codename "Redstone 1") corresponds to Windows Server
|
|
// 2016 (ltsc2016) and Windows 10 (Anniversary Update).
|
|
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
|
|
// corresponds to Windows 10 (Creators Update).
|
|
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
|
|
// 1709 (Semi-Annual Channel (SAC)), and Windows 10 (Fall Creators Update).
|
|
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
|
|
// 1803 (Semi-Annual Channel (SAC)), and Windows 10 (April 2018 Update).
|
|
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
|
|
// 2019 (ltsc2019), and Windows 10 (October 2018 Update).
|
|
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, codename 19H1) corresponds to Windows Server 1903 (semi-annual
|
|
// channel).
|
|
V19H1 = 18362
|
|
// V1903 (version 1903) is an alias for [V19H1].
|
|
V1903 = V19H1
|
|
|
|
// V19H2 (version 1909, codename 19H2) corresponds to Windows Server 1909 (semi-annual
|
|
// channel).
|
|
V19H2 = 18363
|
|
// V1909 (version 1909) is an alias for [V19H2].
|
|
V1909 = V19H2
|
|
|
|
// V20H1 (version 2004, codename 20H1) corresponds to Windows Server 2004 (semi-annual
|
|
// channel).
|
|
V20H1 = 19041
|
|
// V2004 (version 2004) is an alias for [V20H1].
|
|
V2004 = V20H1
|
|
|
|
// V20H2 corresponds to Windows Server 20H2 (semi-annual channel).
|
|
V20H2 = 19042
|
|
|
|
// V21H1 corresponds to Windows Server 21H1 (semi-annual channel).
|
|
V21H1 = 19043
|
|
|
|
// V21H2Win10 corresponds to Windows 10 (November 2021 Update).
|
|
V21H2Win10 = 19044
|
|
|
|
// V21H2Server corresponds to Windows Server 2022 (ltsc2022).
|
|
V21H2Server = 20348
|
|
// LTSC2022 (Windows Server 2022) is an alias for [V21H2Server]
|
|
LTSC2022 = V21H2Server
|
|
|
|
// V21H2Win11 corresponds to Windows 11 (original release).
|
|
V21H2Win11 = 22000
|
|
|
|
// V22H2Win10 corresponds to Windows 10 (2022 Update).
|
|
V22H2Win10 = 19045
|
|
|
|
// V22H2Win11 corresponds to Windows 11 (2022 Update).
|
|
V22H2Win11 = 22621
|
|
|
|
// V23H2 is the 23H2 release in the Windows Server annual channel.
|
|
V23H2 = 25398
|
|
|
|
// Windows Server 2025 build 26100
|
|
V25H1Server = 26100
|
|
LTSC2025 = V25H1Server
|
|
)
|