Kernel

From The iPhone Wiki
Jump to: navigation, search

The kernel of iOS is the XNU kernel. To learn about what "kernel" means in general, see the Wikipedia article.

Pre-2.0, it was vulnerable to the Ramdisk Hack and may still be, but iBoot doesn't allow boot-args to be passed anymore. It is mapped to memory at 0x80000000, forcing a 2/2GB address separation, similar to Windows 32-bit model. On older iOS versions the separation was 3/1 (mapping the kernel at 0xC0000000), closer to the Linux model.

Note, that this is NOT like 32-bit versions of macOS, wherein the kernel resides in its own address space, but more like 64-bit versions, wherein CR3 is shared (albeit an address space larger by several orders of magnitude). See the appropriate section.

ASLR

Main article: Kernel ASLR

As of iOS 6, the kernel is subject to ASLR, much akin to Mountain Lion (OS X 10.8). This makes exploitation harder as the location of kernel code cannot be known.

On production and development devices, the kernel is always stored as a statically linked cache stored at /System/Library/Caches/com.apple.kernelcaches/kernelcache that is decompressed and run on startup.

Stack

The kernel maintains thread specific stacks by calling kernel_memory_allocate, this allocates stacks in the specified kalloc zone. The bootstrap thread has its own specific static kernel stack, which is specified by _intstack. IRQ and FIQ handlers will also have their own execution stack which is specified by _irqstack.

Boot-Args

Like its macOS counterpart, iOS's XNU accepts command line arguments (though the actual passing of arguments is done by iBoot, which as of late refuses to do so). Arguments may be directed at the kernel proper, or any one of the many KExts (discussed below). The arguments of the kernel are largely the same as those of macOS.

Kexts use boot-args as well, as can be seen when disassembly by calls to PE_parse_boot_argn (usually exported, _PE_parse_boot_argn 8027A8EC on the iOS 6.1.3 kernel, discovered by Haifisch). Finding references (using IDA) reveals hundreds places in the code wherein arguments are parsed in modules, pertaining to Flash, HDMI, and AMFI.


The list of boot-args can be extracted from any kernel dump once the address of _PE_parse_boot_argn is determined (which is usually automatically). A list from iOS 8.4 is shown below:

# perform a full disassembly, isolate decompiled lines (^;) with PE_parse.. and isolate string between quotes, sorted uniquely:
# morpheus@Zephyr (~)$ jtool -d __TEXT.__text kernel.8.4.dump | grep PE_parse |grep '^; '| cut -d\" -f2 | cut -d\" -f1 | sort -u
-b
-disable_atm
-factory_debug
-l
-multiq-deep-drain
-no-zp
-no64exec
-novfscache
-oldmezname
-panic_on_exception_triage
-progress
-qos-policy-allow
-s
-vm16k
-vnode_cache_defeat
-x
-zc
-zinfop
-zp
aks_default_class
assert
bg_preempt
boot-uuid
colors
cpumon_ustackshots_trigger_pct
darkwake
dart
dcc
debug
diag
disable_exc_resource
fill
hwm_user_cores
ifa_debug
ifnet_debug
imp_interactive_receiver 
inaddr_nhash
initmcl
interrupt_accounting
io
io_throttle_period_tier1
io_throttle_period_tier2
io_throttle_period_tier3
io_throttle_window_tier1
io_throttle_window_tier2
io_throttle_window_tier3
iosched
iotrace
jcon
jtag
keepsyms
kernel_stack_pages
kextlog
kmapoff
lcks
lo_txstart
longterm
max_cpumon_interval
max_cpumon_percentage
max_task_pmem
maxmem
maxoffset
mbuf_debug
mbuf_pool
mcache_flags
mleak_sample_factor
mseg
msgbuf
mtxspin
multiq_drain_band_limit
multiq_drain_depth_limit
multiq_drain_urgent_first
nbuf
ncl
net.inet.ip.scopedroute
net.inet6.ip6.scopedroute
net_affinity
net_rtref
net_rxpoll
network-type
panic_on_cs_killed
preempt
qos_override_mode
rd
rootdev
rte_debug
sched
sched_decay_penalty
sched_decay_usage_age_factor
sched_pri_decay_limit
sched_use_combined_fgbg_decay
serial
serverperfmode
slto_us
socket_debug
task_policy_suppression_disable
task_wakeups_monitor_interval
task_wakeups_monitor_rate
task_wakeups_monitor_ustackshots_trigger_pct
tbi
trace
trace_panic
trace_typefilter
trace_wake
unrestrict_coalition_syscalls
vm_compression_limit
vm_compressor
vm_compressor_immediate
vm_compressor_threads
wfi
wqsize 
zalloc_debug
zlog
zp-factor
zp-scale
zrecs
zsize

Versions

In the beginning iOS had consistently maintained a fairly higher kernel version than the corresponding version of macOS. Over time, iOS and macOS have "moved nearer" together; OS X El Capitan's XNU was 3247.1.106~1 and iOS 9.0 was 3248.1.2~3. This is not surprising, considering that iOS introduced novel features (such as Kernel ASLR, the default freezer, and various security hardening features) which are first incorporated in it, and later made it to macOS. It seems that Apple is gradually uniting the iOS and macOS kernels over time, and with iOS 9 and OS X El Capitan the version numbers are nearer to each other then ever before. The compilation date for each version will vary slightly between processors. This is due to the fact that compilations are sequential. The following demonstrates the OS versions at present (via terminal uname -a command):

audioOS 16.1:

Darwin Kernel Version 22.1.0: Thu Sep 29 23:20:02 PDT 2022; root:xnu-8792.43.3~6/RELEASE_ARM64_T8006

macOS 13.0:

Darwin Kernel Version 22.1.0: Sun Oct  9 20:15:52 PDT 2022; root:xnu-8792.41.9~2/RELEASE_ARM64_T8112

bridgeOS 7.0:

Darwin Kernel Version 22.1.0: Sun Oct  9 19:46:56 PDT 2022; root:xnu-8792.41.9~1/RELEASE_ARM64_T8010

iOS/iPadOS 16.1:

Darwin Kernel Version 22.1.0: Thu Oct  6 19:34:16 PDT 2022; root:xnu-8792.42.7~1/RELEASE_ARM64_T8120

tvOS 16.1:

Darwin Kernel Version 22.1.0: Thu Sep 29 23:20:06 PDT 2022; root:xnu-8792.43.3~6/RELEASE_ARM64_T8110

watchOS 9.1:

Darwin Kernel Version 22.1.0: Fri Sep 30 00:53:52 PDT 2022; root:xnu-8792.44.1~11/RELEASE_ARM64_T8301

Note: The RELEASE_ARM_xxxxxxxx file obviously differs on device / CPU and the time varies by a few minutes per device.

audioOS (HomePod Software)

Version Build Comment
11.0.2 Darwin Kernel Version 17.0.0: Sun Jul 23 09:03:24 PDT 2017; root:xnu-4570.1.12.0.2~13/RELEASE_ARM64_T7000
11.2 beta Darwin Kernel Version 17.3.0: Wed Oct 25 20:11:04 PDT 2017; root:xnu-4570.30.79~23/RELEASE_ARM64_T7000
11.2 beta 2 Darwin Kernel Version 17.3.0: Sun Oct 29 17:30:04 PDT 2017; root:xnu-4570.30.85~17/RELEASE_ARM64_T7000
11.2.5 beta Darwin Kernel Version 17.4.0: Sat Dec 2 21:26:33 PST 2017; root:xnu-4570.40.6~8/RELEASE_ARM64_T7000
11.2.5 beta 2 Darwin Kernel Version 17.4.0: Wed Dec 13 22:51:57 PST 2017; root:xnu-4570.40.9~7/RELEASE_ARM64_T7000
11.2.5 beta 3 Darwin Kernel Version 17.4.0: Fri Dec 8 19:35:52 PST 2017; root:xnu-4570.40.9~1/RELEASE_ARM64_T7000
11.3 Darwin Kernel Version 17.5.0: Tue Mar 13 21:32:10 PDT 2018; root:xnu-4570.52.2~8/RELEASE_ARM64_T7000
11.4 Darwin Kernel Version 17.6.0: Mon Apr 30 18:48:33 PDT 2018; root:xnu-4570.60.21~3/RELEASE_ARM64_T7000
11.4.1 Darwin Kernel Version 17.7.0: Mon Jun 11 19:06:28 PDT 2018; root:xnu-4570.70.24~3/RELEASE_ARM64_T7000
12.0 Darwin Kernel Version 18.0.0: Tue Aug 14 22:07:17 PDT 2018; root:xnu-4903.202.2~1/RELEASE_ARM64_T7000
12.1 Darwin Kernel Version 18.2.0: Tue Oct 16 21:02:34 PDT 2018; root:xnu-4903.222.5~1/RELEASE_ARM64_T7000
12.1.1 Darwin Kernel Version 18.2.0: Mon Nov 12 20:32:00 PST 2018; root:xnu-4903.232.2~1/RELEASE_ARM64_T7000
12.1.3 Darwin Kernel Version 18.2.0: Wed Dec 19 20:28:48 PST 2018; root:xnu-4903.242.2~1/RELEASE_ARM64_T7000
12.2 Darwin Kernel Version 18.5.0: Tue Mar 5 19:52:15 PST 2019; root:xnu-4903.252.2~1/RELEASE_ARM64_T7000
12.3 Darwin Kernel Version 18.6.0: Thu Apr 25 22:14:03 PDT 2019; root:xnu-4903.262.2~2/RELEASE_ARM64_T7000
12.4 Darwin Kernel Version 18.7.0: Fri Jun 21 22:24:15 PDT 2019; root:xnu-4903.270.47~7/RELEASE_ARM64_T7000
13.2 Darwin Kernel Version 19.0.0: Wed Oct 9 22:42:11 PDT 2019; root:xnu-6153.42.1~1/RELEASE_ARM64_T7000
13.2.1
13.3 Darwin Kernel Version 19.2.0: Mon Nov 4 17:46:35 PST 2019; root:xnu-6153.60.66~39/RELEASE_ARM64_T7000
13.3.1 Darwin Kernel Version 19.3.0: Thu Jan 9 21:11:17 PST 2020; root:xnu-6153.82.3~1/RELEASE_ARM64_T7000
13.4 Darwin Kernel Version 19.4.0: Mon Feb 24 21:41:10 PST 2020; root:xnu-6153.103.3~1/RELEASE_ARM64_T7000
13.4.5 Darwin Kernel Version 19.5.0: Tue Apr 28 20:23:10 PDT 2020; root:xnu-6153.123.1~1/RELEASE_ARM64_T7000
13.4.6 Darwin Kernel Version 19.5.0: Tue May 26 21:01:19 PDT 2020; root:xnu-6153.123.2~1/RELEASE_ARM64_T7000
13.4.8 Darwin Kernel Version 19.6.0: Fri Jun 26 21:16:39 PDT 2020; root:xnu-6153.143.1~3/RELEASE_ARM64_T7000
14.0 beta Darwin Kernel Version 20.0.0: Thu Jun 11 20:57:23 PDT 2020; root:xnu-7090.0.0.113.2~1/RELEASE_ARM64_T7000
14.0 beta 2 Darwin Kernel Version 20.0.0: Wed Jun 24 01:30:37 PDT 2020; root:xnu-7132.0.0.0.1~280/RELEASE_ARM64_T7000
14.0 beta 3 Darwin Kernel Version 20.0.0: Wed Jul 15 22:18:09 PDT 2020; root:xnu-7168.0.0.133.1~2/RELEASE_ARM64_T7000
14.0 beta 4 Darwin Kernel Version 20.0.0: Mon Jul 27 00:32:47 PDT 2020; root:xnu-7195.0.8.0.1~19/RELEASE_ARM64_T7000
14.1 beta 5 Darwin Kernel Version 20.0.0: Wed Aug 12 22:04:35 PDT 2020; root:xnu-7195.0.33~61/RELEASE_ARM64_T7000
14.1 beta 6 Darwin Kernel Version 20.0.0: Mon Aug 17 06:07:03 PDT 2020; root:xnu-7195.0.41~14/RELEASE_ARM64_T7000
14.1 beta 7 Darwin Kernel Version 20.0.0: Wed Aug 26 22:35:02 PDT 2020; root:xnu-7195.1.3~3/RELEASE_ARM64_T7000
14.1 beta 8 Darwin Kernel Version 20.0.0: Sun Aug 30 21:50:50 PDT 2020; root:xnu-7195.1.4~3/RELEASE_ARM64_T7000
14.1 Darwin Kernel Version 20.0.0: Fri Sep 4 21:28:41 PDT 2020; root:xnu-7195.1.4~4/RELEASE_ARM64_T8006
14.2 beta Darwin Kernel Version 20.1.0: Fri Sep 11 18:37:59 PDT 2020; root:xnu-7195.40.84.172.1~1/RELEASE_ARM64_T7000
14.2 beta 2 Darwin Kernel Version 20.1.0: Sun Sep 20 23:08:43 PDT 2020; root:xnu-7195.40.113.0.2~19/RELEASE_ARM64_T7000
14.2 beta 3 Darwin Kernel Version 20.1.0: Tue Oct 6 23:53:40 PDT 2020; root:xnu-7195.40.141~33/RELEASE_ARM64_T7000
14.2 beta 4 Darwin Kernel Version 20.1.0: Tue Oct 13 07:28:58 PDT 2020; root:xnu-7195.40.143~15/RELEASE_ARM64_T7000
14.2 Darwin Kernel Version 20.1.0: Sun Oct 11 10:01:15 PDT 2020; root:xnu-7195.40.143~11/RELEASE_ARM64_T8006
14.2.1
14.3 beta Darwin Kernel Version 20.2.0: Sun Nov 1 21:47:57 PST 2020; root:xnu-7195.60.63~18/RELEASE_ARM64_T7000
14.3 beta 2 Darwin Kernel Version 20.2.0: Wed Nov 11 04:15:24 PST 2020; root:xnu-7195.63.1~2/RELEASE_ARM64_T8006
14.3 beta 3
14.3 RC Darwin Kernel Version 20.2.0: Thu Nov 12 21:59:12 PST 2020; root:xnu-7195.63.1~3/RELEASE_ARM64_T8006
14.3
14.4 beta Darwin Kernel Version 20.3.0: Sun Dec 6 21:38:47 PST 2020; root:xnu-7195.80.16~14/RELEASE_ARM64_T8006
14.4 beta 2 Darwin Kernel Version 20.3.0: Mon Jan 4 21:09:25 PST 2021; root:xnu-7195.80.30~7/RELEASE_ARM64_T8006
14.4 RC Darwin Kernel Version 20.3.0: Tue Jan 5 18:30:47 PST 2021; root:xnu-7195.80.35~1/RELEASE_ARM64_T8006
14.4
14.5 beta Darwin Kernel Version 20.4.0: Thu Jan 21 20:43:45 PST 2021; root:xnu-7195.100.296.113.1~1/RELEASE_ARM64_T8006
14.5 beta 3 Darwin Kernel Version 20.4.0: Mon Feb 22 20:24:45 PST 2021; root:xnu-7195.100.354.133.1~1/RELEASE_ARM64_T8006
14.5 beta 4 Darwin Kernel Version 20.4.0: Thu Mar 4 20:20:05 PST 2021; root:xnu-7195.100.367~26/RELEASE_ARM64_T8006
14.5 beta 5
14.5 beta 6 Darwin Kernel Version 20.4.0: Thu Mar 25 02:54:56 PDT 2021; root:xnu-7195.100.367~84/RELEASE_ARM64_T8006
14.5 beta 7
14.5 RC Darwin Kernel Version 20.4.0: Sun Feb 28 20:46:56 PST 2021; root:xnu-7195.100.367~4/RELEASE_ARM64_T8006
14.5
14.6 beta Darwin Kernel Version 20.5.0: Thu Apr 15 00:07:17 PDT 2021; root:xnu-7195.120.38.0.1~33/RELEASE_ARM64_T8006
14.6 beta 2 Darwin Kernel Version 20.5.0: Fri Apr 23 15:45:25 PDT 2021; root:xnu-7195.120.53~15/RELEASE_ARM64_T8006
14.6 beta 3 Darwin Kernel Version 20.5.0: Tue May 4 20:17:09 PDT 2021; root:xnu-7195.123.1~2/RELEASE_ARM64_T8006
14.6 RC Darwin Kernel Version 20.5.0: Sat May 8 05:49:45 PDT 2021; root:xnu-7195.123.1~3/RELEASE_ARM64_T8006
14.6
14.7 beta Darwin Kernel Version 20.6.0: Sun May 9 21:50:24 PDT 2021; root:xnu-7195.140.13.0.1~17/RELEASE_ARM64_T8006
14.7 beta 2 Darwin Kernel Version 20.6.0: Sun May 23 18:15:35 PDT 2021; root:xnu-7195.140.22~16/RELEASE_ARM64_T8006
14.7 beta 3 Darwin Kernel Version 20.6.0: Sun Jun 6 22:04:50 PDT 2021; root:xnu-7195.140.29.0.1~18/RELEASE_ARM64_T8006
14.7 beta 4 Darwin Kernel Version 20.6.0: Sun Jun 20 22:14:32 PDT 2021; root:xnu-7195.140.39.0.1~12/RELEASE_ARM64_T8006
14.7 beta 5 Darwin Kernel Version 20.6.0: Mon Jun 28 22:42:29 PDT 2021; root:xnu-7195.140.42~27/RELEASE_ARM64_T8006
14.7 RC Darwin Kernel Version 20.6.0: Mon Jun 21 20:30:44 PDT 2021; root:xnu-7195.140.42~7/RELEASE_ARM64_T8006
14.7
15.0 beta Darwin Kernel Version 21.0.0: Sat May 22 02:45:52 PDT 2021; root:xnu-7938.0.0.113.1~2/RELEASE_ARM64_T8006
15.0 beta 2 Darwin Kernel Version 21.0.0: Thu Jun 17 18:47:39 PDT 2021; root:xnu-8011.0.0.123.2~1/RELEASE_ARM64_T8006
15.0 beta 3 Darwin Kernel Version 21.0.0: Mon Jul 5 02:47:44 PDT 2021; root:xnu-8019.0.46.0.4~12/RELEASE_ARM64_T8006
15.0 beta 4 Darwin Kernel Version 21.0.0: Mon Jul 19 20:08:58 PDT 2021; root:xnu-8019.0.72.143.1~1/RELEASE_ARM64_T8006
15.0 beta 5 Darwin Kernel Version 21.0.0: Tue Aug 10 00:33:57 PDT 2021; root:xnu-8019.13.1~5/RELEASE_ARM64_T8006
15.0 beta 6 Darwin Kernel Version 21.0.0: Thu Aug 12 20:39:42 PDT 2021; root:xnu-8019.13.1~12/RELEASE_ARM64_T8006
15.0 beta 7 Darwin Kernel Version 21.0.0: Tue Aug 17 00:45:57 PDT 2021; root:xnu-8019.13.3~6/RELEASE_ARM64_T8006
15.0 beta 8
15.0 beta 9
15.0 RC Darwin Kernel Version 21.0.0: Mon Aug 16 22:08:52 PDT 2021; root:xnu-8019.13.3~7/RELEASE_ARM64_T8006
15.0
15.1 beta Darwin Kernel Version 21.1.0: Sun Sep 5 23:26:26 PDT 2021; root:xnu-8019.40.67~11/RELEASE_ARM64_T8006
15.1 beta 2 Darwin Kernel Version 21.1.0: Tue Sep 21 01:50:02 PDT 2021; root:xnu-8019.40.86~7/RELEASE_ARM64_T8006
15.1 beta 3 Darwin Kernel Version 21.1.0: Wed Sep 29 22:39:16 PDT 2021; root:xnu-8019.40.96.0.2~7/RELEASE_ARM64_T8006
15.1 beta 4 Darwin Kernel Version 21.1.0: Wed Oct 6 15:35:34 PDT 2021; root:xnu-8019.40.98.0.1~39/RELEASE_ARM64_T8006
15.1 RC Darwin Kernel Version 21.1.0: Wed Oct 13 19:14:48 PDT 2021; root:xnu-8019.43.1~1/RELEASE_ARM64_T8006
15.1
15.1.1
15.2 beta Darwin Kernel Version 21.2.0: Tue Oct 19 21:56:56 PDT 2021; root:xnu-8019.60.40.0.1~24/RELEASE_ARM64_T8006
15.2 beta 2 Darwin Kernel Version 21.2.0: Sun Oct 31 18:30:44 PDT 2021; root:xnu-8019.60.58~7/RELEASE_ARM64_T8006
15.2 beta 3 Darwin Kernel Version 21.2.0: Wed Nov 10 21:26:52 PST 2021; root:xnu-8019.60.69~5/RELEASE_ARM64_T8006
15.2 beta 4 Darwin Kernel Version 21.2.0: Mon Nov 15 23:46:24 PST 2021; root:xnu-8019.63.1~2/RELEASE_ARM64_T8006
15.2 RC Darwin Kernel Version 21.2.0: Sun Nov 28 20:45:09 PST 2021; root:xnu-8019.63.2~1/RELEASE_ARM64_T8006
15.2
15.3 beta Darwin Kernel Version 21.3.0: Sat Dec 4 02:06:38 PST 2021; root:xnu-8019.80.11~21/RELEASE_ARM64_T8006
15.3 beta 2 Darwin Kernel Version 21.3.0: Mon Jan 3 23:08:32 PST 2022; root:xnu-8019.80.24~13/RELEASE_ARM64_T8006
15.3 RC Darwin Kernel Version 21.3.0: Fri Jan 7 22:03:16 PST 2022; root:xnu-8019.80.24~27/RELEASE_ARM64_T8006
15.3
15.4 beta Darwin Kernel Version 21.4.0: Sun Jan 16 19:19:09 PST 2022; root:xnu-8020.100.406.0.1~7/RELEASE_ARM64_T8006
15.4 beta 2 Darwin Kernel Version 21.4.0: Mon Jan 31 20:38:04 PST 2022; root:xnu-8020.100.417.123.1~1/RELEASE_ARM64_T8006
15.4 beta 3 Darwin Kernel Version 21.4.0: Mon Feb 7 20:32:07 PST 2022; root:xnu-8020.100.429.133.1~1/RELEASE_ARM64_T8006
15.4 beta 4 Darwin Kernel Version 21.4.0: Wed Feb 16 20:47:15 PST 2022; root:xnu-8020.103.2~2/RELEASE_ARM64_T8006
15.4 beta 5 Darwin Kernel Version 21.4.0: Tue Feb 22 22:21:55 PST 2022; root:xnu-8020.103.4~1/RELEASE_ARM64_T8006
15.4 RC Darwin Kernel Version 21.4.0: Tue Feb 22 22:32:16 PST 2022; root:xnu-8020.103.4~2/RELEASE_ARM64_T8006
15.4
15.4.1
15.5 beta Darwin Kernel Version 21.5.0: Sun Mar 27 19:52:44 PDT 2022; root:xnu-8020.120.43.0.5~12/RELEASE_ARM64_T8006
15.5 beta 2 Darwin Kernel Version 21.5.0: Mon Apr 11 20:55:10 PDT 2022; root:xnu-8020.120.51.123.1~1/RELEASE_ARM64_T8006
15.5 beta 3 Darwin Kernel Version 21.5.0: Mon Apr 18 21:36:42 PDT 2022; root:xnu-8020.120.68.133.1~1/RELEASE_ARM64_T8006
15.5 beta 4 Darwin Kernel Version 21.5.0: Sun Apr 24 22:56:22 PDT 2022; root:xnu-8020.123.1~2/RELEASE_ARM64_T8006
15.5 RC Darwin Kernel Version 21.5.0: Thu Apr 21 21:23:36 PDT 2022; root:xnu-8020.123.1~1/RELEASE_ARM64_T8006
15.5
15.5.1
15.6 beta Darwin Kernel Version 21.6.0: Sun May 8 17:57:58 PDT 2022; root:xnu-8020.140.20.0.4~13/RELEASE_ARM64_T8006
15.6 beta 2 Darwin Kernel Version 21.6.0: Sun May 22 18:56:11 PDT 2022; root:xnu-8020.140.30~7/RELEASE_ARM64_T8006
15.6 beta 3 Darwin Kernel Version 21.6.0: Sun Jun 5 16:17:13 PDT 2022; root:xnu-8020.140.36~28/RELEASE_ARM64_T8006
15.6 beta 4 Darwin Kernel Version 21.6.0: Sun Jun 19 22:10:06 PDT 2022; root:xnu-8020.140.41~7/RELEASE_ARM64_T8006
15.6 beta 5
15.6 RC Darwin Kernel Version 21.6.0: Sat Jun 18 18:46:10 PDT 2022; root:xnu-8020.140.41~3/RELEASE_ARM64_T8006
15.6
16.0 beta Darwin Kernel Version 22.0.0: Sat May 21 00:46:04 PDT 2022; root:xnu-8792.0.50.113.2~2/RELEASE_ARM64_T8006
16.0 beta 2 Darwin Kernel Version 22.0.0: Thu Jun 9 23:56:45 PDT 2022; root:xnu-8792.0.92.0.4~68/RELEASE_ARM64_T8006
16.0 beta 3 Darwin Kernel Version 22.0.0: Fri Jun 24 19:01:32 PDT 2022; root:xnu-8792.0.134.0.1~9/RELEASE_ARM64_T8006
16.0 beta 4 Darwin Kernel Version 22.0.0: Mon Jul 18 20:39:42 PDT 2022; root:xnu-8792.0.188.143.1~1/RELEASE_ARM64_T8006
16.0 beta 5 Darwin Kernel Version 22.0.0: Sat Jul 30 20:13:09 PDT 2022; root:xnu-8792.3.4~6/RELEASE_ARM64_T8006
16.0 beta 6 Darwin Kernel Version 22.0.0: Thu Aug 11 23:19:06 PDT 2022; root:xnu-8792.3.9~3/RELEASE_ARM64_T8006
16.0 beta 7
16.0 RC Darwin Kernel Version 22.0.0: Thu Aug 11 19:34:50 PDT 2022; root:xnu-8792.3.9~1/RELEASE_ARM64_T8006
16.0
16.1 beta Darwin Kernel Version 22.1.0: Wed Sep 7 19:41:37 PDT 2022; root:xnu-8792.40.93~30/RELEASE_ARM64_T8006
16.1 beta 2 Darwin Kernel Version 22.1.0: Sun Sep 11 18:53:55 PDT 2022; root:xnu-8792.40.101.0.1~11/RELEASE_ARM64_T8006
16.1 beta 3 Darwin Kernel Version 22.1.0: Sun Sep 18 23:50:39 PDT 2022; root:xnu-8792.40.108.0.1~51/RELEASE_ARM64_T8006
16.1 beta 4 Darwin Kernel Version 22.1.0: Mon Sep 26 23:01:31 PDT 2022; root:xnu-8792.43.3~4/RELEASE_ARM64_T8006
16.1 beta 5
16.1 RC Darwin Kernel Version 22.1.0: Thu Sep 29 23:20:02 PDT 2022; root:xnu-8792.43.3~6/RELEASE_ARM64_T8006
16.1
16.2 beta Darwin Kernel Version 22.2.0: Sun Oct 16 17:18:47 PDT 2022; root:xnu-8792.60.32.0.1~7/RELEASE_ARM64_T8006

macOS/OS X

Version Build Comment
10.8.3 Darwin Kernel Version 12.3.0: Sun Jan 6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
10.8.4 Darwin Kernel Version 12.4.0: Wed May 1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64
10.8.5 Darwin Kernel Version 12.5.0: Mon Jul 29 16:33:49 PDT 2013; root:xnu-2050.48.11~1/RELEASE_X86_64
10.9 Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
10.9.1
10.9.2 Darwin Kernel Version 13.1.0: Wed Apr 2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
10.9.3 Darwin Kernel Version 13.2.0: Thu Apr 17 23:03:13 PDT 2014; root:xnu-2422.100.13~1/RELEASE_X86_64
10.9.4 Darwin Kernel Version 13.3.0: Tue Jun 3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
10.10 PB3 Darwin Kernel Version 14.0.0: Mon Sep 8 05:27:41 PDT 2014; root:xnu-2782.1.96~5/RELEASE_X86_64
10.10 Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
10.10.1
10.10.2 Darwin Kernel Version 14.1.0: Mon Dec 22 23:10:38 PST 2014; root:xnu-2782.10.72~2/RELEASE_X86_64
10.10.3 Darwin Kernel Version 14.3.0: Mon Mar 23 11:59:05 PDT 2015; root:xnu-2782.20.48~5/RELEASE_X86_64
10.10.4 Darwin Kernel Version 14.4.0: Thu May 28 11:35:04 PDT 2015; root:xnu-2782.30.5~1/RELEASE_X86_64
10.10.5 Darwin Kernel Version 14.5.0: Wed Jul 29 02:26:53 PDT 2015; root:xnu-2782.40.9~1/RELEASE_X86_64
10.11 PB6 Darwin Kernel Version 15.0.0: Wed Aug 26 19:41:34 PDT 2015; root:xnu-3247.1.106~5/RELEASE_X86_64
10.11 GM Darwin Kernel Version 15.0.0: Wed Aug 26 16:57:32 PDT 2015; root:xnu-3247.1.106~1/RELEASE_X86_64
10.11
10.11.1 Darwin Kernel Version 15.0.0: Sat Sep 19 15:53:46 PDT 2015; root:xnu-3247.10.11~1/RELEASE_X86_64
10.11.2 Darwin Kernel Version 15.2.0: Fri Nov 13 19:56:56 PST 2015; root:xnu-3248.20.55~2/RELEASE_X86_64
10.11.3 Darwin Kernel Version 15.3.0: Thu Dec 10 18:40:58 PST 2015; root:xnu-3248.30.4~1/RELEASE_X86_64
10.11.4 Darwin Kernel Version 15.4.0: Fri Feb 26 22:08:05 PST 2016; root:xnu-3248.40.184~3/RELEASE_X86_64
10.11.5 Darwin Kernel Version 15.5.0: Tue Apr 19 18:36:36 PDT 2016; root:xnu-3248.50.21~8/RELEASE_X86_64
10.11.6 Darwin Kernel Version 15.6.0: Thu Jun 20 18:25:34 PDT 2016; root:xnu-3248.60.10~1/RELEASE_X86_64
10.12 Darwin Kernel Version 16.0.0: Mon Aug 29 17:56:20 PDT 2016; root:xnu-3789.1.32~3/RELEASE_X86_64
10.12.1 Darwin Kernel Version 16.1.0: Thu Oct 13 21:26:57 PDT 2016; root:xnu-3789.21.3~60/RELEASE_X86_64
10.12.2 Darwin Kernel Version 16.3.0: Thu Nov 17 20:23:58 PST 2016; root:xnu-3789.31.2~1/RELEASE_X86_64
10.12.3 Darwin Kernel Version 16.4.0: Thu Dec 22 22:53:21 PST 2016; root:xnu-3789.41.3~3/RELEASE_X86_64
10.12.4 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64
10.12.5 Darwin Kernel Version 16.6.0: Fri Apr 14 16:21:16 PDT 2017; root:xnu-3789.60.24~6/RELEASE_X86_64
10.12.6 Darwin Kernel Version 16.7.0: Thu Jun 15 17:26:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64
10.13 Darwin Kernel Version 17.0.0: Thu Aug 24 21:48:19 PDT 2017; root:xnu-4570.1.46~2/RELEASE_X86_64
11.2 beta Darwin Kernel Version 20.3.0: Mon Dec 7 22:04:02 PST 2020; root:xnu-7195.80.16.111.1~1/RELEASE_X86_64
11.2 beta 2 Darwin Kernel Version 20.3.0: Tue Jan 5 20:09:41 PST 2021; root:xnu-7195.80.30.121.1~1/RELEASE_X86_64
11.2 RC Darwin Kernel Version 20.3.0: Thu Jan 14 14:38:50 PST 2021; root:xnu-7195.81.2~2/RELEASE_X86_64
11.2 RC 2 Darwin Kernel Version 20.3.0: Thu Jan 21 00:07:06 PST 2021; root:xnu-7195.81.3~1/RELEASE_X86_64
11.2 RC 3
11.2
11.2.1
11.2.2
11.2.3
11.3 beta Darwin Kernel Version 20.4.0: Fri Jan 22 03:27:54 PST 2021; root:xnu-7195.100.296.111.3~3/RELEASE_X86_64
11.3 beta 2 Darwin Kernel Version 20.4.0: Wed Feb 10 23:06:18 PST 2021; root:xnu-7195.100.326.0.1~76/RELEASE_X86_64
11.3 beta 3 Darwin Kernel Version 20.4.0: Tue Feb 23 23:43:36 PST 2021; root:xnu-7195.100.354.131.1~3/RELEASE_X86_64
11.3 beta 4 Darwin Kernel Version 20.4.0: Fri Mar 5 03:57:04 PST 2021; root:xnu-7195.101.1~4/RELEASE_X86_64
11.3 beta 5
11.3 beta 6 Darwin Kernel Version 20.4.0: Thu Mar 25 07:05:22 PDT 2021; root:xnu-7195.101.1~26/RELEASE_X86_64
11.3 beta 7
11.3 beta 8
11.3 RC Darwin Kernel Version 20.4.0: Fri Mar 5 01:14:14 PST 2021; root:xnu-7195.101.1~3/RELEASE_X86_64
11.3
11.3.1 Darwin Kernel Version 20.4.0: Thu Apr 22 21:46:47 PDT 2021; root:xnu-7195.101.2~1/RELEASE_X86_64
11.4 beta Darwin Kernel Version 20.5.0: Thu Apr 15 05:31:19 PDT 2021; root:xnu-7195.120.38.111.1~4/RELEASE_X86_64
11.4 beta 2 Darwin Kernel Version 20.5.0: Fri Apr 23 23:00:08 PDT 2021; root:xnu-7195.120.53.121.1~1/RELEASE_X86_64
11.4 beta 3 Darwin Kernel Version 20.5.0: Tue May 4 22:32:58 PDT 2021; root:xnu-7195.121.3~4/RELEASE_X86_64
11.4 RC Darwin Kernel Version 20.5.0: Sat May 8 05:10:33 PDT 2021; root:xnu-7195.121.3~9/RELEASE_X86_64
11.4
11.5 beta Darwin Kernel Version 20.6.0: Mon May 10 03:15:35 PDT 2021; root:xnu-7195.140.13.0.1~20/RELEASE_X86_64
11.5 beta 2 Darwin Kernel Version 20.6.0: Mon May 24 00:50:08 PDT 2021; root:xnu-7195.140.22~21/RELEASE_X86_64
11.5 beta 3 Darwin Kernel Version 20.6.0: Mon Jun 7 19:29:33 PDT 2021; root:xnu-7195.140.29.131.1~1/RELEASE_X86_64
11.5 beta 4 Darwin Kernel Version 20.6.0: Tue Jun 22 19:51:35 PDT 2021; root:xnu-7195.140.39.141.1~2/RELEASE_X86_64
11.5 beta 5 Darwin Kernel Version 20.6.0: Fri Jul 2 00:03:00 PDT 2021; root:xnu-7195.141.2~18/RELEASE_X86_64
11.5 RC Darwin Kernel Version 20.6.0: Wed Jun 23 00:26:31 PDT 2021; root:xnu-7195.141.2~5/RELEASE_X86_64
11.5
11.5.1
11.5.2
11.6 Darwin Kernel Version 20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
11.6.1 RC Darwin Kernel Version 20.6.0: Thu Sep 16 20:56:02 PDT 2021; root:xnu-7195.141.7~1/RELEASE_X86_64
11.6.1 RC 2
11.6.1 RC 3
11.6.1 RC 4 Darwin Kernel Version 20.6.0: Tue Oct 12 18:33:42 PDT 2021; root:xnu-7195.141.8~1/RELEASE_X86_64
11.6.1
11.6.2 RC Darwin Kernel Version 20.6.0: Thu Nov 4 01:05:55 PDT 2021; root:xnu-7195.141.12~1/RELEASE_X86_64
11.6.2 RC 2 Darwin Kernel Version 20.6.0: Wed Nov 10 22:23:07 PST 2021; root:xnu-7195.141.14~1/RELEASE_X86_64
11.6.2 RC 3
11.6.2 RC 4
11.6.2
11.6.3 RC
11.6.3 RC 2 Darwin Kernel Version 20.6.0: Tue Jan 4 22:35:02 PST 2022; root:xnu-7195.141.15~1/RELEASE_X86_64
11.6.3 RC 3 Darwin Kernel Version 20.6.0: Wed Jan 12 22:22:42 PST 2022; root:xnu-7195.141.19~2/RELEASE_X86_64
11.6.3
11.6.4 RC Darwin Kernel Version 20.6.0: Thu Jan 20 21:02:14 PST 2022; root:xnu-7195.141.20~1/RELEASE_X86_64
11.6.4 Darwin Kernel Version 20.6.0: Wed Jan 12 22:22:42 PST 2022; root:xnu-7195.141.19~2/RELEASE_X86_64
11.6.5 RC Darwin Kernel Version 20.6.0: Sun Feb 6 22:48:00 PST 2022; root:xnu-7195.141.24~1/RELEASE_X86_64
11.6.5 RC 2 Darwin Kernel Version 20.6.0: Tue Feb 15 21:32:21 PST 2022; root:xnu-7195.141.25~1/RELEASE_X86_64
11.6.5 RC 3 Darwin Kernel Version 20.6.0: Tue Feb 22 21:10:41 PST 2022; root:xnu-7195.141.26~1/RELEASE_X86_64
11.6.5 RC 4
11.6.5
11.6.6 RC Darwin Kernel Version 20.6.0: Tue Mar 22 20:43:18 PDT 2022; root:xnu-7195.141.28~1/RELEASE_X86_64
11.6.6 RC 2
11.6.6 RC 3 Darwin Kernel Version 20.6.0: Tue Apr 19 21:04:45 PDT 2022; root:xnu-7195.141.29~1/RELEASE_X86_64
11.6.6 RC 4
11.6.6 RC 5
11.6.6
11.6.7 RC Darwin Kernel Version 20.6.0: Sun May 8 19:05:48 PDT 2022; root:xnu-7195.141.30~1/RELEASE_X86_64
11.6.7 RC 2
11.6.7 Darwin Kernel Version 20.6.0: Tue Apr 19 21:04:45 PDT 2022; root:xnu-7195.141.29~1/RELEASE_X86_64
11.6.8 RC 3 Darwin Kernel Version 20.6.0: Sun May 8 19:05:48 PDT 2022; root:xnu-7195.141.30~1/RELEASE_X86_64
11.6.8 RC 4 Darwin Kernel Version 20.6.0: Tue Jun 21 20:50:28 PDT 2022; root:xnu-7195.141.32~1/RELEASE_X86_64
11.6.8 RC 5
11.6.8 RC 6
11.6.8
11.7 RC Darwin Kernel Version 20.6.0: Mon Aug 29 04:31:06 PDT 2022; root:xnu-7195.141.39~2/RELEASE_X86_64
11.7
11.7.1 RC Darwin Kernel Version 20.6.0: Wed Sep 14 20:11:22 PDT 2022; root:xnu-7195.141.40~1/RELEASE_X86_64
11.7.1 RC 2 Darwin Kernel Version 20.6.0: Thu Sep 29 20:15:11 PDT 2022; root:xnu-7195.141.42~1/RELEASE_X86_64
11.7.1 RC 3
11.7.1 RC 4
11.7.1
12.0 beta Darwin Kernel Version 21.0.0: Thu May 27 21:02:34 PDT 2021; root:xnu-7938.0.0.111.2~2/RELEASE_ARM64_T8101
12.0 beta 2 Darwin Kernel Version 21.0.0: Sun Jun 20 18:43:47 PDT 2021; root:xnu-8011.0.0.121.4~2/RELEASE_ARM64_T8101
12.0 beta 3 Darwin Kernel Version 21.0.0: Mon Jul 5 02:28:22 PDT 2021; root:xnu-8019.0.46.0.4~11/RELEASE_ARM64_T8101
12.0 beta 4 Darwin Kernel Version 21.0.0: Thu Jul 22 19:52:32 PDT 2021; root:xnu-8019.0.72.141.3~2/RELEASE_ARM64_T8101
12.0 beta 5 Darwin Kernel Version 21.0.0: Mon Aug 2 00:18:13 PDT 2021; root:xnu-8019.30.9~9/RELEASE_ARM64_T8101
12.0 beta 6 Darwin Kernel Version 21.1.0: Thu Aug 19 02:54:44 PDT 2021; root:xnu-8019.40.29~26/RELEASE_ARM64_T8101
12.0 beta 7 Darwin Kernel Version 21.1.0: Sat Sep 11 12:27:45 PDT 2021; root:xnu-8019.40.67.171.4~1/RELEASE_ARM64_T8101
12.0 beta 8 Darwin Kernel Version 21.1.0: Thu Sep 23 21:17:12 PDT 2021; root:xnu-8019.40.86.181.1~2/RELEASE_ARM64_T8101
12.0 beta 9 Darwin Kernel Version 21.1.0: Thu Sep 30 06:42:03 PDT 2021; root:xnu-8019.40.96.0.2~12/RELEASE_ARM64_T8101
12.0 beta 10 Darwin Kernel Version 21.1.0: Sun Oct 10 22:00:43 PDT 2021; root:xnu-8019.41.4~4/RELEASE_ARM64_T8101
12.0 Darwin Kernel Version 21.0.1: Tue Sep 14 20:56:24 PDT 2021; root:xnu-8019.30.61~4/RELEASE_ARM64_T6000 Shipped on early MacBook Pro 14-inch and 16-inch 2021 devices.
12.0.1 RC Darwin Kernel Version 21.1.0: Wed Oct 13 17:33:24 PDT 2021; root:xnu-8019.41.5~1/RELEASE_ARM64_T8101
12.0.1 RC 2
12.0.1
12.1 beta Darwin Kernel Version 21.2.0: Wed Oct 20 00:23:23 PDT 2021; root:xnu-8019.60.40.0.1~26/RELEASE_ARM64_T6000
12.1 beta 2 Darwin Kernel Version 21.2.0: Wed Nov 3 21:15:14 PDT 2021; root:xnu-8019.60.58.121.3~2/RELEASE_ARM64_T6000
12.1 beta 3 Darwin Kernel Version 21.2.0: Thu Nov 11 00:10:36 PST 2021; root:xnu-8019.60.69~7/RELEASE_ARM64_T6000
12.1 beta 4 Darwin Kernel Version 21.2.0: Tue Nov 16 23:24:09 PST 2021; root:xnu-8019.61.4~4/RELEASE_ARM64_T6000
12.1 RC Darwin Kernel Version 21.2.0: Sun Nov 28 20:28:41 PST 2021; root:xnu-8019.61.5~1/RELEASE_ARM64_T6000
12.1 RC 2
12.1
12.2 beta Darwin Kernel Version 21.3.0: Wed Dec 8 00:40:43 PST 2021; root:xnu-8019.80.11.111.1~1/RELEASE_ARM64_T6000
12.2 beta 2 Darwin Kernel Version 21.3.0: Mon Jan 3 23:49:28 PST 2022; root:xnu-8019.80.24~15/RELEASE_ARM64_T6000
12.2 RC Darwin Kernel Version 21.3.0: Wed Jan 5 21:37:58 PST 2022; root:xnu-8019.80.24~20/RELEASE_ARM64_T6000
12.2
12.2.1
12.3 beta Darwin Kernel Version 21.4.0: Tue Jan 18 13:02:02 PST 2022; root:xnu-8020.100.406.0.1~18/RELEASE_ARM64_T6000
12.3 beta 2 Darwin Kernel Version 21.4.0: Sat Jan 29 03:25:15 PST 2022; root:xnu-8020.100.417.0.4~31/RELEASE_ARM64_T6000
12.3 beta 3 Darwin Kernel Version 21.4.0: Mon Feb 7 21:32:30 PST 2022; root:xnu-8020.100.429.131.1~2/RELEASE_ARM64_T6000
12.3 beta 4 Darwin Kernel Version 21.4.0: Mon Feb 14 22:26:48 PST 2022; root:xnu-8020.101.3~4/RELEASE_ARM64_T6000
12.3 beta 5 Darwin Kernel Version 21.4.0: Mon Feb 21 21:57:26 PST 2022; root:xnu-8020.101.4~4/RELEASE_ARM64_T6000
12.3 RC Darwin Kernel Version 21.4.0: Mon Feb 21 20:35:58 PST 2022; root:xnu-8020.101.4~2/RELEASE_ARM64_T6000
12.3
12.3.1 Darwin Kernel Version 21.4.0: Fri Mar 18 00:46:32 PDT 2022; root:xnu-8020.101.4~15/RELEASE_ARM64_T6000
12.4 beta Darwin Kernel Version 21.5.0: Mon Mar 28 19:53:15 PDT 2022; root:xnu-8020.120.43.111.1~1/RELEASE_ARM64_T6000
12.4 beta 2 Darwin Kernel Version 21.5.0: Tue Apr 12 21:17:35 PDT 2022; root:xnu-8020.120.51.121.3~1/RELEASE_ARM64_T6000
12.4 beta 3 Darwin Kernel Version 21.5.0: Thu Apr 21 19:53:52 PDT 2022; root:xnu-8020.120.68.131.2~2/RELEASE_ARM64_T6000
12.4 beta 4 Darwin Kernel Version 21.5.0: Tue Apr 26 23:20:58 PDT 2022; root:xnu-8020.121.3~5/RELEASE_ARM64_T6000
12.4 RC Darwin Kernel Version 21.5.0: Tue Apr 26 21:08:37 PDT 2022; root:xnu-8020.121.3~4/RELEASE_ARM64_T6000
12.4
12.4
21F2081
Darwin Kernel Version 21.5.0: Tue Apr 26 20:57:23 PDT 2022; root:xnu-8020.121.3~2/RELEASE_ARM64_T8110 MacBook Air (M2, 2022) and MacBook Pro (13-inch, M2, 2022) only.
12.4
21F2092
12.5 beta Darwin Kernel Version 21.6.0: Sun May 8 18:46:58 PDT 2022; root:xnu-8020.140.20.0.4~14/RELEASE_ARM64_T6000
12.5 beta 2 Darwin Kernel Version 21.6.0: Tue May 24 21:21:35 PDT 2022; root:xnu-8020.140.30.121.1~1/RELEASE_ARM64_T6000
12.5 beta 3 Darwin Kernel Version 21.6.0: Mon Jun 6 19:48:18 PDT 2022; root:xnu-8020.140.36.131.1~1/RELEASE_ARM64_T6000
12.5 beta 4 Darwin Kernel Version 21.6.0: Sun Jun 19 22:36:35 PDT 2022; root:xnu-8020.140.41~9/RELEASE_ARM64_T6000
12.5 beta 5
12.5 RC Darwin Kernel Version 21.6.0: Sat Jun 18 17:07:22 PDT 2022; root:xnu-8020.140.41~1/RELEASE_ARM64_T6000
12.5 RC 2
12.5
12.5.1 Darwin Kernel Version 21.6.0: Wed Aug 10 14:28:23 PDT 2022; root:xnu-8020.141.5~2/RELEASE_ARM64_T6000
12.6 RC Darwin Kernel Version 21.6.0: Mon Aug 22 20:19:52 PDT 2022; root:xnu-8020.140.49~2/RELEASE_ARM64_T6000
12.6
12.6.1 RC Darwin Kernel Version 21.6.0: Tue Sep 20 21:15:22 PDT 2022; root:xnu-8020.240.3~1/RELEASE_ARM64_T6000
12.6.1 RC 2 Darwin Kernel Version 21.6.0: Thu Sep 29 20:13:56 PDT 2022; root:xnu-8020.240.7~1/RELEASE_ARM64_T6000
12.6.1 RC 3
12.6.1 RC 4
12.6.1
13.0 beta Darwin Kernel Version 22.0.0: Tue May 24 20:29:38 PDT 2022; root:xnu-8792.0.50.111.3~5/RELEASE_ARM64_T8112
13.0 beta 2 Darwin Kernel Version 22.0.0: Thu Jun 16 20:31:52 PDT 2022; root:xnu-8792.0.92.121.3~2/RELEASE_ARM64_T8112
13.0 beta 3 Darwin Kernel Version 22.0.0: Tue Jun 28 20:47:51 PDT 2022; root:xnu-8792.0.134.131.2~1/RELEASE_ARM64_T8112
13.0 beta 3 Update
13.0 beta 4 Darwin Kernel Version 22.0.0: Wed Jul 20 01:52:31 PDT 2022; root:xnu-8792.0.188.141.3~2/RELEASE_ARM64_T8112
13.0 beta 5 Darwin Kernel Version 22.0.0: Mon Aug 1 06:31:20 PDT 2022; root:xnu-8792.0.207.0.6~26/RELEASE_ARM64_T8112
13.0 beta 6 Darwin Kernel Version 22.1.0: Mon Aug 15 20:06:44 PDT 2022; root:xnu-8792.40.29.161.2~1/RELEASE_ARM64_T8112
13.0 beta 7 Darwin Kernel Version 22.1.0: Mon Aug 29 20:10:25 PDT 2022; root:xnu-8792.40.74.0.1~20/RELEASE_ARM64_T8112
13.0 beta 8 Darwin Kernel Version 22.1.0: Tue Sep 13 21:11:07 PDT 2022; root:xnu-8792.40.101.181.2~2/RELEASE_ARM64_T8112
13.0 beta 9 Darwin Kernel Version 22.1.0: Tue Sep 20 10:43:54 PDT 2022; root:xnu-8792.40.108.191.2~2/RELEASE_ARM64_T8112
13.0 beta 10 Darwin Kernel Version 22.1.0: Tue Sep 27 22:08:23 PDT 2022; root:xnu-8792.41.6~5/RELEASE_ARM64_T8112
13.0 beta 11 Darwin Kernel Version 22.1.0: Sun Oct 2 22:38:34 PDT 2022; root:xnu-8792.41.7~13/RELEASE_ARM64_T8112
13.0 RC Darwin Kernel Version 22.1.0: Sun Oct 9 20:15:52 PDT 2022; root:xnu-8792.41.9~2/RELEASE_ARM64_T8112
13.0 RC 2
13.0
13.1 beta Darwin Kernel Version 22.2.0: Sun Oct 16 18:11:19 PDT 2022; root:xnu-8792.60.32.0.1~11/RELEASE_ARM64_T8112

bridgeOS

Version Build Comment
2.0 Darwin Kernel Version 17.2.0: Thu Sep 21 17:29:18 PDT 2017; root:xnu-4570.20.58~3/RELEASE_ARM64_T8010
2.0.1 Darwin Kernel Version 17.4.0: Tue Dec 19 11:34:42 PST 2017; root:xnu-4570.47.16~2/RELEASE_ARM64_T8010
2.3.1 Darwin Kernel Version 17.6.0: Sat May 5 19:46:24 PDT 2018; root:xnu-4570.60.21~23/RELEASE_ARM64_T8010
2.3.2 Darwin Kernel Version 17.7.0: Fri Jun 15 23:12:25 PDT 2018; root:xnu-4570.71.1~3/RELEASE_ARM64_T8010
2.4.1 Darwin Kernel Version 17.7.0: Fri Jun 15 18:33:47 PDT 2018; root:xnu-4570.71.1~1/RELEASE_ARM64_T8010
3.0 Darwin Kernel Version 18.0.0: Thu Sep 6 18:24:30 PDT 2018; root:xnu-4903.201.2~72/RELEASE_ARM64_T8010
3.2 Darwin Kernel Version 18.2.0: Mon Nov 12 20:24:14 PST 2018; root:xnu-4903.231.4~3/RELEASE_ARM64_T8010
3.4 Darwin Kernel Version 18.5.0: Mon Mar 11 20:29:36 PDT 2019; root:xnu-4903.251.3~1/RELEASE_ARM64_T8010
3.5 Darwin Kernel Version 18.6.0: Thu Apr 25 21:46:37 PDT 2019; root:xnu-4903.261.4~1/RELEASE_ARM64_T8010
3.6 Darwin Kernel Version 18.7.0: Tue Jun 25 21:35:19 PDT 2019; root:xnu-4903.270.47~9/RELEASE_ARM64_T8010
4.0 Darwin Kernel Version 19.0.0: Wed Sep 25 19:59:46 PDT 2019; root:xnu-6153.11.26~1/RELEASE_ARM64_T8010
4.1 Darwin Kernel Version 19.0.0: Mon Oct 14 03:38:28 PDT 2019; root:xnu-6153.41.3~14/RELEASE_ARM64_T8010
4.2 (17P2551) Darwin Kernel Version 19.2.0: Wed Nov 6 00:47:16 PST 2019; root:xnu-6153.61.1~6/RELEASE_ARM64_T8010
4.2 (17P3050) Darwin Kernel Version 19.3.0: Tue Jan 7 22:39:04 PST 2020; root:xnu-6153.81.3~2/RELEASE_ARM64_T8010
4.3 Darwin Kernel Version 19.3.0: Tue Jan 14 18:04:59 PST 2020; root:xnu-6153.81.3~7/RELEASE_ARM64_T8010
4.4 Darwin Kernel Version 19.4.0: Mon Mar 2 20:38:56 PST 2020; root:xnu-6153.101.6~2/RELEASE_ARM64_T8010
4.5 (17P5290) Darwin Kernel Version 19.5.0: Thu Apr 30 23:53:45 PDT 2020; root:xnu-6153.120.31~33/RELEASE_ARM64_T8010
4.5 (17P5300) Darwin Kernel Version 19.5.0: Tue May 26 20:16:42 PDT 2020; root:xnu-6153.121.2~1/RELEASE_ARM64_T8010
4.5 (17P5580) Darwin Kernel Version 19.5.0: Wed Jun 3 17:35:43 PDT 2020; root:xnu-6153.121.2~6/RELEASE_ARM64_T8010
4.6 (17P6065) Darwin Kernel Version 19.6.0: Thu Jul 9 01:45:19 PDT 2020; root:xnu-6153.145.1~7/RELEASE_ARM64_T8010
4.6 (17P6604) Darwin Kernel Version 19.6.0: Thu Jun 18 20:30:46 PDT 2020; root:xnu-6153.145.1~1/RELEASE_ARM64_T8010
4.6 (17P6610)
5.0.1 Darwin Kernel Version 20.1.0: Fri Oct 30 20:40:35 PDT 2020; root:xnu-7195.50.7~1/RELEASE_ARM64_T8010
5.1 Darwin Kernel Version 20.2.0: Fri Nov 13 19:36:30 PST 2020; root:xnu-7195.60.74~2/RELEASE_ARM64_T8010
5.2 Darwin Kernel Version 20.3.0: Tue Jan 5 18:50:06 PST 2021; root:xnu-7195.80.35~4/RELEASE_ARM64_T8010
5.3 Darwin Kernel Version 20.4.0: Thu Mar 4 23:34:36 PST 2021; root:xnu-7195.101.1~1/RELEASE_ARM64_T8010
5.4 Darwin Kernel Version 20.5.0: Fri May 7 22:04:14 PDT 2021; root:xnu-7195.121.3~8/RELEASE_ARM64_T8010
5.5 Darwin Kernel Version 20.6.0: Tue Jun 22 21:55:04 PDT 2021; root:xnu-7195.141.2~1/RELEASE_ARM64_T8010
6.0 Darwin Kernel Version 21.1.0: Wed Oct 13 18:09:06 PDT 2021; root:xnu-8019.41.5~2/RELEASE_ARM64_T8010
6.1 Darwin Kernel Version 21.2.0: Sun Nov 28 20:41:46 PST 2021; root:xnu-8019.61.5~2/RELEASE_ARM64_T8010
6.2 Darwin Kernel Version 21.3.0: Wed Jan 5 20:03:37 PST 2022; root:xnu-8019.80.24~19/RELEASE_ARM64_T8010
6.4 Darwin Kernel Version 21.4.0: Mon Feb 21 20:11:10 PST 2022; root:xnu-8020.101.4~1/RELEASE_ARM64_T8010
6.5 Darwin Kernel Version 21.5.0: Tue Apr 26 20:35:13 PDT 2022; root:xnu-8020.121.3~1/RELEASE_ARM64_T8010
6.6 (19P6064) Darwin Kernel Version 21.6.0: Sat Jun 18 23:49:00 PDT 2022; root:xnu-8020.140.41~5/RELEASE_ARM64_T8010
6.6 (19P6066) Darwin Kernel Version 21.6.0: Wed Aug 10 14:04:32 PDT 2022; root:xnu-8020.141.5~1/RELEASE_ARM64_T8010
6.6 (19P6067)
7.0 (20P411) Darwin Kernel Version 22.1.0: Sun Oct 9 19:46:56 PDT 2022; root:xnu-8792.41.9~1/RELEASE_ARM64_T8010
7.0 (20P420)

iOS/iPadOS

Version Build Comment
1A420 Darwin Kernel Version 9.0.0d1: Thu Mar 8 01:38:53 PST 2007; root:xnu-933.0.0.144.obj~1/DEVELOPMENT_ARM_S5L8900XRB
1.0 Darwin Kernel Version 9.0.0d1: Tue May 22 21:15:55 PDT 2007; root:xnu-933.0.0.178.obj~3/RELEASE_ARM_S5L8900XRB
1.0.1 Darwin Kernel Version 9.0.0d1: Fri Jun 22 00:38:56 PDT 2007; root:xnu-933.0.1.178.obj~1/RELEASE_ARM_S5L8900XRB
1.0.2
1.1 Darwin Kernel Version 9.0.0d1: Thu Sep 6 23:26:45 PDT 2007; root:xnu-933.0.0.203.obj~6/RELEASE_ARM_S5L8900XRB iPod touch only
1.1.1 Darwin Kernel Version 9.0.0d1: Wed Sep 19 00:08:42 PDT 2007; root:xnu-933.0.203~21/RELEASE_ARM_S5L8900XRB First kernel that was 8900 encrypted - not sure if version is 100% correct.
1.1.2 Darwin Kernel Version 9.0.0d1: Wed Oct 10 00:07:49 PDT 2007; root:xnu-933.0.204~7/RELEASE_ARM_S5L8900XRB Not sure if version is 100% correct.
1.1.3 Darwin Kernel Version 9.0.0d1: Wed Dec 12 00:16:00 PST 2007; root:xnu-933.0.211~2/RELEASE_ARM_S5L8900XRB
1.1.4
1.1.5 iPod touch only
1.2 beta ?
2.0 beta 2 Darwin Kernel Version 9.3.1: Wed Mar 19 22:40:09 PDT 2008; root:xnu-1228.6.34~1/RELEASE_ARM_S5L8900X
2.0 beta 3 Darwin Kernel Version 9.3.1: Tue Apr 1 21:58:46 PDT 2008; root:xnu-1228.6.39~6/RELEASE_ARM_S5L8900X
2.0 beta 4 Darwin Kernel Version 9.3.1: Tue Apr 15 21:09:34 PDT 2008; root:xnu-1228.6.49~1/RELEASE_ARM_S5L8900X
2.0 beta 5 ?
2.0 beta 6 ?
2.0 beta 7 ?
2.0 GM Darwin Kernel Version 9.3.1: Sun Jun 15 21:37:01 PDT 2008; root:xnu-1228.6.76~45/RELEASE_ARM_S5L8900X
2.0
2.0.1
2.0.2
2.1 beta ?
2.1 beta 2 ?
2.1 beta 3 ?
2.1 beta 4 ?
2.1 Darwin Kernel Version 9.4.1: Sun Aug 10 21:25:25 PDT 2008; root:xnu-1228.7.27~12/RELEASE_ARM_S5L8720X
2.1.1
2.2 beta ?
2.2 beta 2 ?
2.2 Darwin Kernel Version 9.4.1: Sat Nov 1 19:13:13 PDT 2008; root:xnu-1228.7.36~2/RELEASE_ARM_S5L8720X
2.2.1 Darwin Kernel Version 9.4.1: Mon Dec 8 21:02:57 PST 2008; root:xnu-1228.7.37~4/RELEASE_ARM_S5L8720X
3.0 beta Darwin Kernel Version 10.0.0d3: Mon Mar 9 22:51:44 PDT 2009; root:xnu-1357.2.65~12/RELEASE_ARM_S5L8900X
3.0 beta 2 Darwin Kernel Version 10.0.0d3: Wed Mar 25 21:56:57 PDT 2009; root:xnu-1357.2.71~2/RELEASE_ARM_S5L8900X
3.0 beta 3 Darwin Kernel Version 10.0.0d3: Fri Apr 10 15:52:33 PDT 2009; root:xnu-1357.2.78~8/RELEASE_ARM_S5L8900X
3.0 beta 4 Darwin Kernel Version 10.0.0d3: Wed Apr 22 21:48:01 PDT 2009; root:xnu-1357.2.83~2/RELEASE_ARM_S5L8900X
3.0 beta 5 Darwin Kernel Version 10.0.0d3: Wed Apr 29 22:05:19 PDT 2009; root:xnu-1357.2.86~1/RELEASE_ARM_S5L8900X
3.0 GM ?
3.0 Darwin Kernel Version 10.0.0d3: Wed May 13 22:16:49 PDT 2009; root:xnu-1357.2.89~4/RELEASE_ARM_S5L8920X
3.0.1
3.1 beta Darwin Kernel Version 10.0.0d3: Wed Jun 24 21:55:27 PDT 2009; root:xnu-1357.5.22~7/RELEASE_ARM_S5L8720X
3.1 beta 2 Darwin Kernel Version 10.0.0d3: Wed Jul 8 21:57:20 PDT 2009; root:xnu-1357.5.23~8/RELEASE_ARM_S5L8920X
3.1 beta 3 Darwin Kernel Version 10.0.0d3: Wed Jul 22 21:39:52 PDT 2009; root:xnu-1357.5.24~13/RELEASE_ARM_S5L8920X
3.1 Darwin Kernel Version 10.0.0d3: Fri Aug 14 13:23:32 PDT 2009; root:xnu-1357.5.30~2/RELEASE_ARM_S5L8920X
3.1.2 Darwin Kernel Version 10.0.0d3: Fri Sep 25 23:35:35 PDT 2009; root:xnu-1357.5.30~3/RELEASE_ARM_S5L8920X
3.1.3 Darwin Kernel Version 10.0.0d3: Fri Dec 18 01:34:28 PST 2009; root:xnu-1357.5.30~6/RELEASE_ARM_S5L8920X
3.2 Darwin Kernel Version 10.3.1: Mon Mar 15 23:15:33 PDT 2010; root:xnu-1504.2.27~18/RELEASE_ARM_S5L8930X iPad only
3.2.1 Darwin Kernel Version 10.3.1: Fri May 28 16:46:17 PDT 2010; root:xnu-1504.2.50~4/RELEASE_ARM_S5L8930X
3.2.2 Darwin Kernel Version 10.3.1: Wed Aug 4 19:08:04 PDT 2010; root:xnu-1504.2.60~1/RELEASE_ARM_S5L8930X
4.0 beta Darwin Kernel Version 10.3.1: Sat Apr 3 03:06:07 PDT 2010; root:xnu-1504.51.1~2/RELEASE_ARM_S5L8920X
4.0 beta 2 Darwin Kernel Version 10.3.1: Wed Apr 14 23:43:59 PDT 2010; root:xnu-1504.50.51~3/RELEASE_ARM_S5L8920X
4.0 beta 3 Darwin Kernel Version 10.3.1: Wed Apr 28 20:47:20 PDT 2010; root:xnu-1504.50.61~1/RELEASE_ARM_S5L8920X
4.0 beta 4 Darwin Kernel Version 10.3.1: Tue May 11 22:12:23 PDT 2010; root:xnu-1504.50.69~2/RELEASE_ARM_S5L8920X
4.0 GM ?
4.0 Darwin Kernel Version 10.3.1: Wed May 26 22:28:33 PDT 2010; root:xnu-1504.50.73~2/RELEASE_ARM_S5L8930X
4.0.1
4.0.2 Darwin Kernel Version 10.3.1: Wed Aug 4 18:46:06 PDT 2010; root:xnu-1504.50.80~1/RELEASE_ARM_S5L8930X
4.1 beta Darwin Kernel Version 10.3.1: Mon Jul 5 20:15:12 PDT 2010; root:xnu-1504.55.27~4/RELEASE_ARM_S5L8930X
4.1 beta 2 Darwin Kernel Version 10.3.1: Tue Jul 20 21:31:09 PDT 2010; root:xnu-1504.55.32~9/RELEASE_ARM_S5L8930X
4.1 beta 3 Darwin Kernel Version 10.3.1: Wed Jul 28 01:26:23 PDT 2010; root:xnu-1504.55.33~3/RELEASE_ARM_S5L8930X
4.1 Darwin Kernel Version 10.3.1: Wed Aug 4 22:35:51 PDT 2010; root:xnu-1504.55.33~10/RELEASE_ARM_S5L8930X
4.2 beta Darwin Kernel Version 10.3.1: Tue Sep 7 23:33:25 PDT 2010; root:xnu-1504.58.18~2/RELEASE_ARM_S5L8930X
4.2 beta 2 Darwin Kernel Version 10.4.0: Thu Sep 23 20:56:24 PDT 2010; root:xnu-1504.58.21~5/RELEASE_ARM_S5L8930X
4.2 beta 3 Darwin Kernel Version 10.4.0: Tue Oct 5 21:42:47 PDT 2010; root:xnu-1504.58.25~18/RELEASE_ARM_S5L8930X
4.2 GM Darwin Kernel Version 10.4.0: Wed Oct 20 20:14:45 PDT 2010; root:xnu-1504.58.28~3/RELEASE_ARM_S5L8930X
4.2.1 GM
4.2.1 Darwin Kernel Version 10.4.0: Wed Oct 20 20:14:45 PDT 2010; root:xnu-1504.58.28~3/RELEASE_ARM_S5L8930X
4.2.5 Darwin Kernel Version 10.4.0: Thu Dec 30 19:38:02 PST 2010; root:xnu-1504.62~11/RELEASE_ARM_S5L8930X iPhone 4 (iPhone3,3) only.
4.2.6
4.2.7
4.2.8
4.2.9 Darwin Kernel Version 10.4.0: Fri Jul 8 18:32:26 PDT 2011; root:xnu-1504.63~1/RELEASE_ARM_S5L8930X
4.2.10
4.3 beta Darwin Kernel Version 11.0.0: Tue Jan 4 21:36:31 PST 2011; root:xnu-1735.24~10/RELEASE_ARM_S5L8930X
4.3 beta 2 Darwin Kernel Version 11.0.0: Mon Jan 10 22:08:15 PST 2011; root:xnu-1735.30~2/RELEASE_ARM_S5L8930X
4.3 beta 3 Darwin Kernel Version 11.0.0: Fri Jan 28 13:55:49 PST 2011; root:xnu-1735.39.80~1/RELEASE_ARM_S5L8930X
4.3 GM ?
4.3 Darwin Kernel Version 11.0.0: Thu Feb 10 21:46:56 PST 2011; root:xnu-1735.46~2/RELEASE_ARM_S5L8930X
4.3.1
4.3.2 Darwin Kernel Version 11.0.0: Wed Mar 30 18:51:10 PDT 2011; root:xnu-1735.46~10/RELEASE_ARM_S5L8930X
4.3.3
4.3.4 Darwin Kernel Version 11.0.0: Sat Jul 9 00:59:43 PDT 2011; root:xnu-1735.47~1/RELEASE_ARM_S5L8930X
4.3.5
5.0 beta Darwin Kernel Version 11.0.0: Mon May 30 20:28:35 PDT 2011; root:xnu-1878.2.52~1/RELEASE_ARM_S5L8940X
5.0 beta 2 Darwin Kernel Version 11.0.0: Sun Jun 19 18:59:56 PDT 2011; root:xnu-1878.3.20~3/RELEASE_ARM_S5L8940X
5.0 beta 3 Darwin Kernel Version 11.0.0: Thu Jun 30 23:23:57 PDT 2011; root:xnu-1878.4.10~2/RELEASE_ARM_S5L8940X
5.0 beta 4 Darwin Kernel Version 11.0.0: Sun Jul 17 19:21:53 PDT 2011; root:xnu-1878.4.20~4/RELEASE_ARM_S5L8940X
5.0 beta 5 Darwin Kernel Version 11.0.0: Tue Aug 2 22:31:30 PDT 2011; root:xnu-1878.4.80~1/RELEASE_ARM_S5L8930X
5.0 beta 6 Darwin Kernel Version 11.0.0: Sun Aug 14 19:04:49 PDT 2011; root:xnu-1878.4.31~5/RELEASE_ARM_S5L8930X
5.0 beta 7 Darwin Kernel Version 11.0.0: Thu Aug 25 20:47:50 PDT 2011; root:xnu-1878.4.38~2/RELEASE_ARM_S5L8930X
5.0 GM Darwin Kernel Version 11.0.0: Thu Sep 15 23:34:16 PDT 2011; root:xnu-1878.4.43~2/RELEASE_ARM_S5L8930X
5.0
5.0.1 beta Darwin Kernel Version 11.0.0: Wed Oct 19 19:05:07 PDT 2011; root:xnu-1878.4.45~1/RELEASE_ARM_S5L8930X
5.0.1 beta 2 Darwin Kernel Version 11.0.0: Tue Nov 1 20:34:16 PDT 2011; root:xnu-1878.4.46~1/RELEASE_ARM_S5L8940X
5.0.1
5.1 beta Darwin Kernel Version 11.0.0: Sun Nov 13 19:10:13 PST 2011; root:xnu-1878.10.61~7/RELEASE_ARM_S5L8930X
5.1 beta 2 Darwin Kernel Version 11.0.0: Sun Dec 4 18:57:33 PST 2011; root:xnu-1878.10.68~2/RELEASE_ARM_S5L8930X
5.1 beta 3 Darwin Kernel Version 11.0.0: Mon Jan 2 18:46:01 PST 2012; root:xnu-1878.10.74~3/RELEASE_ARM_S5L8930X
5.1 Darwin Kernel Version 11.0.0: Wed Feb 1 23:18:07 PST 2012; root:xnu-1878.11.8~1/RELEASE_ARM_S5L8945X
5.1.1 Darwin Kernel Version 11.0.0: Sun Apr 8 21:51:26 PDT 2012; root:xnu-1878.11.10~1/RELEASE_ARM_S5L8930X
6.0 beta Darwin Kernel Version 13.0.0: Wed May 30 19:23:03 PDT 2012; root:xnu-2107.1.78~18/RELEASE_ARM_S5L8930X
6.0 beta 2 Darwin Kernel Version 13.0.0: Sun Jun 17 19:47:47 PDT 2012; root:xnu-2107.1.61~3/RELEASE_ARM_S5L8930X
6.0 beta 3 Darwin Kernel Version 13.0.0: Sun Jul 8 20:15:17 PDT 2012; root:xnu-2107.2.9~3/RELEASE_ARM_S5L8930X
6.0 beta 4 Darwin Kernel Version 13.0.0: Sun Jul 29 20:15:28 PDT 2012; root:xnu-2107.2.26~4/RELEASE_ARM_S5L8930X
6.0 GM Darwin Kernel Version 13.0.0: Sun Aug 19 00:27:34 PDT 2012; root:xnu-2107.2.33~4/RELEASE_ARM_S5L8930X
6.0
6.0.1 Darwin Kernel Version 13.0.0: Wed Oct 10 23:32:19 PDT 2012; root:xnu-2107.2.34~2/RELEASE_ARM_S5L8950X
6.0.2 iPhone 5 only.
6.1 beta Darwin Kernel Version 13.0.0: Sun Oct 21 19:28:43 PDT 2012; root:xnu-2107.7.51~17/RELEASE_ARM_S5L8930X
6.1 beta 2 Darwin Kernel Version 13.0.0: Sun Nov 4 19:02:54 PST 2012; root:xnu-2107.7.53~2/RELEASE_ARM_S5L8930X
6.1 beta 3 Darwin Kernel Version 13.0.0: Mon Nov 26 21:17:13 PST 2012; root:xnu-2107.7.53~27/RELEASE_ARM_S5L8930X
6.1 beta 4 Darwin Kernel Version 13.0.0: Sun Dec 9 19:22:45 PST 2012; root:xnu-2107.7.55~6/RELEASE_ARM_S5L8930X
6.1 beta 5 Darwin Kernel Version 13.0.0: Sun Dec 16 20:01:39 PST 2012; root:xnu-2107.7.55~11/RELEASE_ARM_S5L8950X
6.1
6.1.1 beta
6.1.1 iPhone 4s only
6.1.2
6.1.3 beta 2 Darwin Kernel Version 13.0.0: Wed Feb 13 21:35:42 PST 2013; root:xnu-2107.7.55.2.2~1/RELEASE_ARM_S5L8920X
6.1.3
6.1.4 iPhone 5 only.
6.1.5 iPod touch (4th generation) only.
6.1.6 iPod touch (4th generation) and iPhone 3GS only.
7.0 beta Darwin Kernel Version 14.0.0: Wed May 29 23:53:59 PDT 2013; root:xnu-2423.1.1.1.2~1/RELEASE_ARM_S5L8930X
7.0 beta 2 Darwin Kernel Version 14.0.0: Mon Jun 17 00:51:51 PDT 2013; root:xnu-2423.1.28~7/RELEASE_ARM_S5L8930X
7.0 beta 3 Darwin Kernel Version 14.0.0: Mon Jul 1 04:25:28 PDT 2013; root:xnu-2423.1.40~11/RELEASE_ARM_S5L8930X
7.0 beta 4 Darwin Kernel Version 14.0.0: Mon Jul 22 02:12:11 PDT 2013; root:xnu-2423.1.55~8/RELEASE_ARM_S5L8930X
7.0 beta 5 Darwin Kernel Version 14.0.0: Sun Aug 4 22:40:14 PDT 2013; root:xnu-2423.1.70~6/RELEASE_ARM_S5L8930X
7.0 beta 6
7.0 GM Darwin Kernel Version 14.0.0: Tue Aug 13 21:39:05 PDT 2013; root:xnu-2423.1.73~3/RELEASE_ARM_S5L8930X
7.0
7.0.1 Darwin Kernel Version 14.0.0: Mon Sep 9 20:56:02 PDT 2013; root:xnu-2423.1.74~2/RELEASE_ARM64_S5L8960X iPhone 5c and 5s only
7.0.2
7.0.3 Darwin Kernel Version 14.0.0: Fri Sep 27 23:08:32 PDT 2013; root:xnu-2423.3.12~1/RELEASE_ARM64_S5L8960X
7.0.4
7.0.5 iPhone 5c (iPhone5,4) and iPhone 5s (iPhone6,2) only.
7.0.6
7.1 beta Darwin Kernel Version 14.0.0: Mon Nov 11 04:18:01 PST 2013; root:xnu-2423.10.33~9/RELEASE_ARM_S5L8930X
7.1 beta 2 Darwin Kernel Version 14.0.0: Tue Dec 10 21:25:34 PST 2013; root:xnu-2423.10.38.1.1~1/RELEASE_ARM_S5L8930X
7.1 beta 3 Darwin Kernel Version 14.0.0: Thu Jan 2 01:55:45 PST 2014; root:xnu-2423.10.45~5/RELEASE_ARM_S5L8930X
7.1 beta 4 Darwin Kernel Version 14.0.0: Mon Jan 13 03:33:00 PST 2014; root:xnu-2423.10.49.0.1~3/RELEASE_ARM_S5L8930X
7.1 beta 5 Darwin Kernel Version 14.0.0: Mon Jan 27 23:55:13 PST 2014; root:xnu-2423.10.58~2/RELEASE_ARM_S5L8930X
7.1 GM Darwin Kernel Version 14.0.0: Fri Feb 21 19:41:10 PST 2014; root:xnu-2423.10.67~1/RELEASE_ARM_S5L8930X
7.1
7.1.1 Darwin Kernel Version 14.0.0: Fri Mar 28 21:22:10 PDT 2014; root:xnu-2423.10.70~1/RELEASE_ARM_S5L8930X
7.1.2 Darwin Kernel Version 14.0.0: Thu May 15 23:17:54 PDT 2014; root:xnu-2423.10.71~1/RELEASE_ARM64_S5L8960X
8.0 beta Darwin Kernel Version 14.0.0: Mon May 26 22:09:06 PDT 2014; root:xnu-2729.0.0.0.9~2/RELEASE_ARM_S5L8942X
8.0 beta 2 Darwin Kernel Version 14.0.0: Sat Jun 14 16:36:40 PDT 2014; root:xnu-2775.0.0.1.1~3/RELEASE_ARM64_S5L8960X
8.0 beta 3 Darwin Kernel Version 14.0.0: Wed Jul 2 18:51:34 PDT 2014; root:xnu-2783.1.21~19/RELEASE_ARM_S5L8950X
8.0 beta 4 Darwin Kernel Version 14.0.0: Wed Jul 16 21:55:26 PDT 2014; root:xnu-2783.1.40.0.3~2/RELEASE_ARM_S5L8950X
8.0 beta 5 Darwin Kernel Version 14.0.0: Wed Jul 30 23:04:17 PDT 2014; root:xnu-2783.1.62~20/RELEASE_ARM_S5L8950X
8.0 GM Darwin Kernel Version 14.0.0: Tue Aug 19 15:09:47 PDT 2014; root:xnu-2783.1.72~8/RELEASE_ARM64_S5L8960X
8.0
8.0.1 Darwin Kernel Version 14.0.0: Thu Sep 18 21:52:21 PDT 2014; root:xnu-2783.1.72~23/RELEASE_ARM_S5L8950X
8.0.2
8.1 beta Darwin Kernel Version 14.0.0: Sat Sep 27 18:49:49 PDT 2014; root:xnu-2783.3.12~18/RELEASE_ARM_S5L8950X
8.1 beta 2 Darwin Kernel Version 14.0.0: Fri Oct 3 21:52:09 PDT 2014; root:xnu-2783.3.13~2/RELEASE_ARM_S5L8950X
8.1 Darwin Kernel Version 14.0.0: Fri Oct 7 00:04:37 PDT 2014; root:xnu-2783.3.13~4/RELEASE_ARM_S5L8950X
8.1.1 beta Darwin Kernel Version 14.0.0: Sun Nov 2 20:21:29 PDT 2014; root:xnu-2783.3.21~1/RELEASE_ARM_S5L8950X
8.1.1 Darwin Kernel Version 14.0.0: Mon Nov 3 22:54:30 PDT 2014; root:xnu-2783.3.22~1/RELEASE_ARM_S5L8950X
8.1.2
8.1.3 Darwin Kernel Version 14.0.0: Mon Jan 2 21:29:20 PST 2015; root:xnu-2783.3.26~3/RELEASE_ARM_S5L8950X
8.2 beta ?
8.2 beta 2 Darwin Kernel Version 14.0.0: Wed Dec 3 23:51:12 PST 2014; root:xnu-2783.5.26~11/RELEASE_ARM_S5L8940X
8.2 beta 3 Darwin Kernel Version 14.0.0: Sun Dec 14 20:59:15 PST 2014; root:xnu-2783.5.29.0.1~1/RELEASE_ARM_S5L8940X
8.2 beta 4 Darwin Kernel Version 14.0.0: Tue Jan 6 21:02:10 PST 2015; root:xnu-2783.5.32~9/RELEASE_ARM_S5L8940X
8.2 beta 5 Darwin Kernel Version 14.0.0: Mon Jan 26 22:16:17 PST 2015; root:xnu-2783.5.37~11/RELEASE_ARM_S5L8940X
8.2 Darwin Kernel Version 14.0.0: Mon Feb 9 22:07:57 PST 2015; root:xnu-2783.5.38~5/RELEASE_ARM_S5L8950X
8.3 beta ?
8.3 beta 2 Darwin Kernel Version 14.0.0: Tue Feb 17 20:58:31 PST 2015; root:xnu-2784.20.20~13/RELEASE_ARM_S5L8940X
8.3 beta 3 Darwin Kernel Version 14.0.0: Mon Mar 4 20:55:58 PST 2015; root:xnu-2784.20.25~26/RELEASE_ARM64_S5L8960X
8.3 beta 4 Darwin Kernel Version 14.0.0: Thu Mar 19 00:16:36 PST 2015; root:xnu-2784.20.31~1/RELEASE_ARM64_S5L8960X
8.3 Darwin Kernel Version 14.0.0: Sun Mar 29 19:44:04 PDT 2015; root:xnu-2784.20.34~2/RELEASE_ARM_S5L8950X
8.4 beta Darwin Kernel Version 14.0.0: Wed Apr 8 21:26:37 PDT 2015; root:xnu-2784.30.1~29/RELEASE_ARM64_T7000
8.4 beta 2 Darwin Kernel Version 14.0.0: Wed Apr 21 21:49:05 PDT 2015; root:xnu-2784.30.2~9/RELEASE_ARM64_S5L8960X
8.4 beta 3 Darwin Kernel Version 14.0.0: Tue May 5 23:09:22 PDT 2015; root:xnu-2784.30.5~7/RELEASE_ARM64_S5L8960X
8.4 beta 4 Darwin Kernel Version 14.0.0: Tue Wed 3 23:19:49 PDT 2015; root:xnu-2784.30.7~13/RELEASE_ARM64_S5L8960X
8.4 Darwin Kernel Version 14.0.0: Wed Jun 24 00:50:15 PDT 2015; root:xnu-2784.30.7~30/RELEASE_ARM64_S5L8960X
8.4.1 beta Darwin Kernel Version 14.0.0: Thu Jul 9 21:54:11 PDT 2015; root:xnu-2784.40.6~1/RELEASE_ARM_S5L8950X
8.4.1 beta 2 Darwin Kernel Version 14.0.0: Tue Jul 28 16:34:51 PDT 2015; root:xnu-2784.40.6~15/RELEASE_ARM_S5L8950X
8.4.1 Darwin Kernel Version 14.0.0: Wed Aug 5 19:24:44 PDT 2015; root:xnu-2784.40.6~18/RELEASE_ARM_S5L8950X
9.0 beta Darwin Kernel Version 15.0.0: Fri May 29 22:14:48 PDT 2015; root:xnu-3216.0.0.1.15~2/RELEASE_ARM64_S5L8960X
9.0 beta 2 Darwin Kernel Version 15.0.0: Mon Jun 15 21:51:54 PDT 2015; root:xnu-3247.1.6.1.1~2/RELEASE_ARM64_S5L8960X
9.0 beta 3 Darwin Kernel Version 15.0.0: Mon Jun 29 00:33:05 PDT 2015; root:xnu-3247.1.36.0.1~9/RELEASE_ARM_S5L8942X
9.0 beta 4 Darwin Kernel Version 15.0.0: Sat Jul 11 20:01:45 PDT 2015; root:xnu-3247.1.56~13\/RELEASE_ARM64_T7001
9.0 beta 5 Darwin Kernel Version 15.0.0: Mon Aug 3 19:58:41 PDT 2015; root:xnu-3247.1.88.1.1~1\/RELEASE_ARM64_T7001
9.0 GM Darwin Kernel Version 15.0.0: Thu Aug 6 22:27:22 PDT 2015; root:xnu-3248.1.2~3\/RELEASE_ARM_S5L8940X
9.0 Darwin Kernel Version 15.0.0: Thu Aug 20 13:11:13 PDT 2015; root:xnu-3248.1.3~1\/RELEASE_ARM_S5L8950X
9.0.1
9.0.2
9.1 beta Darwin Kernel Version 15.0.0: Sat Aug 29 17:41:04 PDT 2015; root:xnu-3248.10.27~10\/RELEASE_ARM_S5L8940X
9.1 beta 2 Darwin Kernel Version 15.0.0: Mon Sep 14 01:24:55 PDT 2015; root:xnu-3248.10.38~3\/RELEASE_ARM64_S5L8960X
9.1 beta 3 Darwin Kernel Version 15.0.0: Fri Sep 25 17:14:21 PDT 2015; root:xnu-3248.10.41~11\/RELEASE_ARM64_S5L8960X
9.1 beta 4 Darwin Kernel Version 15.0.0: Fri Oct 2 14:07:07 PDT 2015; root:xnu-3248.10.42~4\/RELEASE_ARM64_S5L8960X
9.1 beta 5
9.1
9.2 beta Darwin Kernel Version 15.0.0: Sun Oct 18 23:34:30 PDT 2015; root:xnu-3248.20.33.0.1~7\/RELEASE_ARM64_S8000
9.2 beta 2 Darwin Kernel Version 15.0.0: Sun Oct 25 21:50:56 PDT 2015; root:xnu-3248.20.39~8\/RELEASE_ARM64_S8000
9.2 beta 3 Darwin Kernel Version 15.0.0: Fri Nov 6 22:12:13 PST 2015; root:xnu-3248.21.1~2\/RELEASE_ARM64_S5L8960X
9.2 beta 4 Darwin Kernel Version 15.0.0: Fri Nov 13 16:08:07 PST 2015; root:xnu-3248.21.2~1\/RELEASE_ARM64_S5L8960X
9.2
9.2.1 beta Darwin Kernel Version 15.0.0: Wed Dec 9 22:19:38 PST 2015; root:xnu-3248.31.3~2\/RELEASE_ARM64_S5L8960X
9.2.1 beta 2
9.2.1
9.3 beta Darwin Kernel Version 15.4.0: Tue Jan 5 21:24:25 PST 2016; root:xnu-3248.40.155.1.1~3\/RELEASE_ARM64_S5L8960X
9.3 beta 1.1
9.3 beta 2 Darwin Kernel Version 15.4.0: Tue Jan 19 00:18:39 PST 2016; root:xnu-3248.40.166.0.1~10\/RELEASE_ARM64_S8000
9.3 beta 3 Darwin Kernel Version 15.4.0: Sun Jan 31 22:48:58 PST 2016; root:xnu-3248.40.173.0.1~13\/RELEASE_ARM64_S8000
9.3 beta 4 Darwin Kernel Version 15.4.0: Sun Feb 14 23:17:56 PST 2016; root:xnu-3248.41.3~16\/RELEASE_ARM64_S8000
9.3 beta 5 Darwin Kernel Version 15.4.0: Sun Feb 22 01:48:23 PST 2016; root:xnu-3248.41.4~36\/RELEASE_ARM64_S8000
9.3 beta 6
9.3 beta 7 Darwin Kernel Version 15.4.0: Fri Feb 19 13:54:52 PST 2016; root:xnu-3248.41.4~28\/RELEASE_ARM64_S8000
9.3
9.3.1
9.3.2 beta Darwin Kernel Version 15.5.0: Thu Mar 31 17:49:02 PDT 2016; root:xnu-3248.50.18~19\/RELEASE_ARM64_S8000
9.3.2 beta 2 Darwin Kernel Version 15.5.0: Tue Apr 5 15:12:03 PDT 2016; root:xnu-3248.50.20~12\/RELEASE_ARM64_S8000
9.3.2 beta 3 Darwin Kernel Version 15.5.0: Mon Apr 18 16:44:07 PDT 2016; root:xnu-3248.50.21~4\/RELEASE_ARM64_S8000
9.3.2 beta 4
9.3.2
9.3.3 beta Darwin Kernel Version 15.6.0: Tue May 17 19:53:27 PDT 2016; root:xnu-3248.60.3~3\/RELEASE_ARM64_S5L8960X
9.3.3 beta 2 Darwin Kernel Version 15.6.0: Tue May 31 19:52:45 PDT 2016; root:xnu-3248.60.4~1\/RELEASE_ARM64_S8000
9.3.3 beta 3 Darwin Kernel Version 15.6.0: Thu Jun 16 18:08:00 PDT 2016; root:xnu-3248.60.8~1/RELEASE_ARM_S5L8950X
9.3.3 beta 4 Darwin Kernel Version 15.6.0: Mon Jun 20 20:10:21 PDT 2016; root:xnu-3248.60.9~1/RELEASE_ARM_S5L8950X
9.3.3 beta 5
9.3.3
9.3.4
9.3.5 Darwin Kernel Version 15.6.0: Fri Aug 19 10:37:56 PDT 2016; root:xnu-3248.61.1~1\/RELEASE_ARM64_S5L8960X
9.3.6
10.0 beta Darwin Kernel Version 16.0.0: Wed May 25 21:19:24 PDT 2016; root:xnu-3705.0.0.2.3~1\/RELEASE_ARM64_S8000
10.0 beta 2 Darwin Kernel Version 16.0.0: Tue Jun 28 21:38:14 PDT 2016; root:xnu-3757~291\/RELEASE_ARM64_S8000
10.0 beta 3 Darwin Kernel Version 16.0.0: Sat Jul 9 23:57:18 PDT 2016; root:xnu-3777.0.0.0.1~28\/RELEASE_ARM64_S8000
10.0 beta 4 Darwin Kernel Version 16.0.0: Wed Jul 27 19:44:34 PDT 2016; root:xnu-3789.1.4.2.1~1\/RELEASE_ARM64_S8000
10.0 beta 5 Darwin Kernel Version 16.0.0: Fri Aug 5 22:15:30 PDT 2016; root:xnu-3789.1.24~11\/RELEASE_ARM64_S8000
10.0 beta 6 Darwin Kernel Version 16.0.0: Wed Aug 10 21:55:58 PDT 2016; root:xnu-3789.2.2~4\/RELEASE_ARM64_S8000
10.0 beta 7
10.0 beta 8
10.0 Darwin Kernel Version 16.0.0: Wed Aug 10 22:33:10 PDT 2016; root:xnu-3789.2.2~3\/RELEASE_ARM64_T8010
10.0.1 GM Darwin Kernel Version 16.0.0: Sun Aug 28 20:36:54 PDT 2016; root:xnu-3789.2.4~3\/RELEASE_ARM64_S8000
10.0.1
10.0.2
10.1 beta Darwin Kernel Version 16.1.0: Fri Sep 16 03:53:22 PDT 2016; root:xnu-3789.20.46~54\/RELEASE_ARM64_S8000
10.1 beta 2 Darwin Kernel Version 16.1.0: Thu Sep 29 21:56:12 PDT 2016; root:xnu-3789.22.3~1\/RELEASE_ARM64_S8000
10.1 beta 3
10.1 beta 4
10.1
10.1.1
10.2 beta Darwin Kernel Version 16.3.0: Sun Oct 23 20:18:32 PDT 2016; root:xnu-3789.30.76~6\/RELEASE_ARM64_S8000
10.2 beta 2 Darwin Kernel Version 16.3.0: Tue Nov 1 22:23:11 PDT 2016; root:xnu-3789.30.86~54\/RELEASE_ARM64_S8000
10.2 beta 3 Darwin Kernel Version 16.3.0: Mon Nov 7 22:58:42 PST 2016; root:xnu-3789.30.92~36\/RELEASE_ARM64_S8000
10.2 beta 4 Darwin Kernel Version 16.3.0: Mon Nov 7 19:32:10 PST 2016; root:xnu-3789.30.92~29\/RELEASE_ARM64_S8000
10.2 beta 5 Darwin Kernel Version 16.3.0: Tue Nov 29 21:40:09 PST 2016; root:xnu-3789.32.1~4\/RELEASE_ARM64_S8000
10.2 beta 6
10.2 beta 7
10.2
10.2.1 beta Darwin Kernel Version 16.3.0: Thu Dec 1 19:49:21 PST 2016; root:xnu-3789.42.1~1\/RELEASE_ARM64_S8000
10.2.1 beta 2 Darwin Kernel Version 16.3.0: Thu Dec 15 22:41:46 PST 2016; root:xnu-3789.42.2~1\/RELEASE_ARM64_S8000
10.2.1 beta 3
10.2.1 beta 4
10.2.1
10.3 beta Darwin Kernel Version 16.5.0: Mon Jan 16 21:43:53 PST 2017; root:xnu-3789.50.189~28\/RELEASE_ARM64_T8010
10.3 beta 2 Kernel Version 16.5.0: Tue Jan 31 21:09:24 PST 2017; root:xnu-3789.50.195.1.1~2/RELEASE_ARM_S5L8950X
10.3 beta 3 Darwin Kernel Version 16.5.0: Fri Feb 10 22:11:20 PST 2017; root:xnu-3789.50.208~47/RELEASE_ARM_S5L8950X
10.3 beta 4 Darwin Kernel Version 16.5.0: Thu Feb 23 23:48:09 PST 2017; root:xnu-3789.52.2~9\/RELEASE_ARM64_S8000
10.3 beta 5
10.3 beta 6
10.3 beta 7
10.3 Darwin Kernel Version 16.5.0: Thu Feb 23 23:22:54 PST 2017; root:xnu-3789.52.2~7\/RELEASE_ARM64_S8000
10.3.1
10.3.2 beta Darwin Kernel Version 16.6.0: Mon Mar 20 22:28:31 PDT 2017; root:xnu-3789.60.12~10\/RELEASE_ARM64_S8000
10.3.2 beta 2 Darwin Kernel Version 16.6.0: Tue Apr 4 21:19:08 PDT 2017; root:xnu-3789.60.15~13\/RELEASE_ARM64_S8000
10.3.2 beta 3 Darwin Kernel Version 16.6.0: Tue Apr 11 22:03:42 PDT 2017; root:xnu-3789.60.20~11\/RELEASE_ARM64_S8000
10.3.2 beta 4 Darwin Kernel Version 16.6.0: Mon Apr 17 20:33:39 PDT 2017; root:xnu-3789.60.24~25/RELEASE_ARM64_S8000
10.3.2 beta 5
10.3.2 Darwin Kernel Version 16.6.0: Mon Apr 17 17:33:34 PDT 2017; root:xnu-3789.60.24~24/RELEASE_ARM_S8000
10.3.3 beta Darwin Kernel Version 16.7.0: Mon May 8 21:45:24 PDT 2017; root:xnu-3789.70.9~13/RELEASE_ARM64_T7000
10.3.3 beta 2 Darwin Kernel Version 16.7.0: Wed May 24 22:28:55 PDT 2017; root:xnu-3789.70.11~6/RELEASE_ARM64_S5L8960X
10.3.3 beta 3 Darwin Kernel Version 16.7.0: Tue Jun 6 21:56:23 PDT 2017; root:xnu-3789.70.15~6/RELEASE_ARM64_T8010
10.3.3 beta 4 Darwin Kernel Version 16.7.0: Thu Jun 15 22:48:15 PDT 2017; root:xnu-3789.70.16~6/RELEASE_ARM64_S8000
10.3.3 beta 5 Darwin Kernel Version 16.7.0: Thu Jun 15 22:48:16 PDT 2017; root:xnu-3789.70.16~6/RELEASE_ARM64_T8010
10.3.3 beta 6 Darwin Kernel Version 16.7.0: Thu Jun 15 18:33:36 PDT 2017; root:xnu-3789.70.16~4/RELEASE_ARM64_S8000
10.3.3
10.3.4 Darwin Kernel Version 16.7.0: Wed Jul 26 11:08:56 PDT 2017; root:xnu-3789.70.16~21/RELEASE_ARM_S5L8950X
11.0 beta Darwin Kernel Version 17.0.0: Sat May 27 21:47:07 PDT 2017; root:xnu-4397.0.0.2.4~1/RELEASE_ARM64_S8000
11.0 beta 2 Darwin Kernel Version 17.0.0: Tue Jun 13 21:19:50 PDT 2017; root:xnu-4481.0.0.2.1~1/RELEASE_ARM64_S8000
11.0 beta 3 Darwin Kernel Version 17.0.0: Thu Jun 29 22:31:39 PDT 2017; root:xnu-4532.0.0.0.1~30/RELEASE_ARM64_T7000
11.0 beta 4 Darwin Kernel Version 17.0.0: Thu Jul 20 19:49:59 PDT 2017; root:xnu-4556.0.0.2.5~1/RELEASE_ARM64_S5L8960X
11.0 beta 5 Darwin Kernel Version 17.0.0: Tue Aug 1 21:11:37 PDT 2017; root:xnu-4570.1.24.2.3~1/RELEASE_ARM64_T8010
11.0 beta 6 Darwin Kernel Version 17.0.0: Wed Aug 9 22:41:48 PDT 2017; root:xnu-4570.2.3~8/RELEASE_ARM64_T8010
11.0 beta 7 Darwin Kernel Version 17.0.0: Fri Aug 18 20:14:27 PDT 2017; root:xnu-4570.2.5~84/RELEASE_ARM64_T8010
11.0 beta 8
11.0 beta 9
11.0 beta 10
11.0 GM Darwin Kernel Version 17.0.0: Fri Sep 1 14:59:17 PDT 2017; root:xnu-4570.2.5~167/RELEASE_ARM64_S8000
11.0
11.0.1
11.0.2
11.0.3
11.1 beta Darwin Kernel Version 17.2.0: Sun Sep 17 22:21:07 PDT 2017; root:xnu-4570.20.55~10/RELEASE_ARM64_T8015
11.1 beta 2 Darwin Kernel Version 17.2.0: Sat Sep 30 23:14:15 PDT 2017; root:xnu-4570.20.62~9/RELEASE_ARM64_T8015
11.1 beta 3
11.1 beta 4 Darwin Kernel Version 17.2.0: Fri Sep 29 18:14:51 PDT 2017; root:xnu-4570.20.62~4/RELEASE_ARM64_T8015
11.1 beta 5
11.1
11.1.1
11.1.2
11.2 beta Darwin Kernel Version 17.3.0: Wed Oct 25 19:27:20 PDT 2017; root:xnu-4570.30.79~22/RELEASE_ARM64_T8015
11.2 beta 2 Darwin Kernel Version 17.3.0: Sun Oct 29 17:18:38 PDT 2017; root:xnu-4570.30.85~18/RELEASE_ARM64_T8015
11.2 beta 3 Darwin Kernel Version 17.3.0: Mon Nov 6 22:29:20 PST 2017; root:xnu-4570.32.1~2/RELEASE_ARM64_T8015
11.2 beta 4
11.2 beta 5
11.2 beta 6 Darwin Kernel Version 17.3.0: Mon Nov 6 21:19:16 PST 2017; root:xnu-4570.32.1~1/RELEASE_ARM64_T8015
11.2
11.2.1
11.2.2
11.2.5 beta Darwin Kernel Version 17.4.0: Sat Dec 2 21:26:33 PST 2017; root:xnu-4570.40.6~8/RELEASE_ARM64_T8015
11.2.5 beta 2 Darwin Kernel Version 17.4.0: Wed Dec 13 22:51:57 PST 2017; root:xnu-4570.40.9~7/RELEASE_ARM64_T8015
11.2.5 beta 3
11.2.5 beta 4
11.2.5 beta 5
11.2.5 beta 6
11.2.5 beta 7 Darwin Kernel Version 17.4.0: Fri Dec 8 19:35:51 PST 2017; root:xnu-4570.40.9~1/RELEASE_ARM64_T8015
11.2.5
11.2.6
11.3 beta Darwin Kernel Version 17.5.0: Sat Jan 13 00:03:04 PST 2018; root:xnu-4570.50.243~9/RELEASE_ARM64_T8015
11.3 beta 2 Darwin Kernel Version 17.5.0: Fri Jan 26 22:56:33 PST 2018; root:xnu-4570.50.257~6/RELEASE_ARM64_T8015
11.3 beta 3 Darwin Kernel Version 17.5.0: Sat Feb 10 17:01:35 PST 2018; root:xnu-4570.50.279~9/RELEASE_ARM64_T8015
11.3 beta 4 Darwin Kernel Version 17.5.0: Sat Feb 24 20:24:10 PST 2018; root:xnu-4570.50.294~5/RELEASE_ARM64_T8015
11.3 beta 5 Darwin Kernel Version 17.5.0: Tue Mar 6 20:47:58 PST 2018; root:xnu-4570.52.2~3/RELEASE_ARM64_T8015
11.3 beta 6
11.3 Darwin Kernel Version 17.5.0: Tue Mar 13 21:32:11 PDT 2018; root:xnu-4570.52.2~8/RELEASE_ARM64_T8010
11.3.1
11.4 beta Darwin Kernel Version 17.5.0: Sun Mar 25 20:49:19 PDT 2018; root:xnu-4570.60.10.0.1~16/RELEASE_ARM64_T8015
11.4 beta 2 Darwin Kernel Version 17.6.0: Thu Apr 5 22:33:56 PDT 2018; root:xnu-4570.60.16~9/RELEASE_ARM64_T8015
11.4 beta 3 Darwin Kernel Version 17.6.0: Sun Apr 22 03:29:53 PDT 2018; root:xnu-4570.60.19~25/RELEASE_ARM64_T8015
11.4 beta 4 Darwin Kernel Version 17.6.0: Tue May 1 16:16:12 PDT 2018; root:xnu-4570.60.21~7/RELEASE_ARM64_T8015
11.4 beta 5
11.4 beta 6
11.4 Darwin Kernel Version 17.6.0: Mon Apr 30 18:48:32 PDT 2018; root:xnu-4570.60.21~3/RELEASE_ARM64_T8015
11.4.1 beta Darwin Kernel Version 17.7.0: Mon May 21 19:02:13 PDT 2018; root:xnu-4570.70.14~16/RELEASE_ARM64_T8015
11.4.1 beta 2 Darwin Kernel Version 17.7.0: Sun Jun 3 20:38:12 PDT 2018; root:xnu-4570.70.19~13/RELEASE_ARM64_T8015
11.4.1 beta 3 Darwin Kernel Version 17.7.0: Tue Jun 12 20:37:30 PDT 2018; root:xnu-4570.70.24~9/RELEASE_ARM64_T8015
11.4.1 beta 4
11.4.1 beta 5
11.4.1 Darwin Kernel Version 17.7.0: Mon Jun 11 19:06:27 PDT 2018; root:xnu-4570.70.24~3/RELEASE_ARM64_T8015
12.0 beta Darwin Kernel Version 18.0.0: Fri May 25 21:25:37 PDT 2018; root:xnu-4903.200.199.12.3~1/RELEASE_ARM64_T8015
12.0 beta 2 Darwin Kernel Version 18.0.0: Wed Jun 13 21:04:46 PDT 2018; root:xnu-4903.200.249.22.3~1/RELEASE_ARM64_T8015
12.0 beta 3 Darwin Kernel Version 18.0.0: Tue Jun 26 21:06:03 PDT 2018; root:xnu-4903.200.274.32.3~1/RELEASE_ARM64_T8015
12.0 beta 4 Darwin Kernel Version 18.0.0: Mon Jul 9 21:17:19 PDT 2018; root:xnu-4903.200.304.42.1~1/RELEASE_ARM64_T8015
12.0 beta 5 Darwin Kernel Version 18.0.0: Wed Jul 25 22:51:45 PDT 2018; root:xnu-4903.200.327.52.1~1/RELEASE_ARM64_T8015
12.0 beta 6 Darwin Kernel Version 18.0.0: Wed Aug 1 21:11:01 PDT 2018; root:xnu-4903.200.342.62.3~1/RELEASE_ARM64_T8015
12.0 beta 7 Darwin Kernel Version 18.0.0: Sun Aug 5 21:44:00 PDT 2018; root:xnu-4903.200.354~11/RELEASE_ARM64_T8015
12.0 beta 8 Darwin Kernel Version 18.0.0: Fri Aug 10 21:57:57 PDT 2018; root:xnu-4903.202.1~2/RELEASE_ARM64_T8015
12.0 beta 9 Darwin Kernel Version 18.0.0: Wed Aug 15 21:51:15 PDT 2018; root:xnu-4903.202.2~2/RELEASE_ARM64_T8015
12.0 beta 10
12.0 beta 11
12.0 beta 12
12.0 GM Darwin Kernel Version 18.0.0: Tue Aug 14 22:07:16 PDT 2018; root:xnu-4903.202.2~1/RELEASE_ARM64_T8015
12.0
12.0.1
12.1 beta Darwin Kernel Version 18.2.0: Mon Sep 10 22:05:56 PDT 2018; root:xnu-4903.220.42~21/RELEASE_ARM64_T8015
12.1 beta 2 Darwin Kernel Version 18.2.0: Sun Sep 23 20:16:38 PDT 2018; root:xnu-4903.220.48~40/RELEASE_ARM64_T8015
12.1 beta 3 Darwin Kernel Version 18.2.0: Wed Oct 3 02:49:20 PDT 2018; root:xnu-4903.222.1~7/RELEASE_ARM64_T8015
12.1 beta 4 Darwin Kernel Version 18.2.0: Tue Oct 9 18:52:50 PDT 2018; root:xnu-4903.222.4~3/RELEASE_ARM64_T8015
12.1 beta 5 Darwin Kernel Version 18.2.0: Tue Oct 16 22:15:34 PDT 2018; root:xnu-4903.222.5~3/RELEASE_ARM64_T8015
12.1 Darwin Kernel Version 18.2.0: Tue Oct 16 21:02:33 PDT 2018; root:xnu-4903.222.5~1/RELEASE_ARM64_T8015
12.1.1 beta Darwin Kernel Version 18.2.0: Thu Oct 25 21:36:46 PDT 2018; root:xnu-4903.230.15~8/RELEASE_ARM64_T8015
12.1.1 beta 2 Darwin Kernel Version 18.2.0: Sat Nov 3 03:45:48 PDT 2018; root:xnu-4903.232.1~3/RELEASE_ARM64_T8015
12.1.1 beta 3 Darwin Kernel Version 18.2.0: Mon Nov 12 21:07:36 PST 2018; root:xnu-4903.232.2~2/RELEASE_ARM64_T8020
12.1.1 Darwin Kernel Version 18.2.0: Mon Nov 12 20:32:01 PST 2018; root:xnu-4903.232.2~1/RELEASE_ARM64_T8020
12.1.2 beta Darwin Kernel Version 18.2.0: Sun Dec 2 20:53:08 PST 2018; root:xnu-4903.240.8~8/RELEASE_ARM64_T8015
12.1.2 Darwin Kernel Version 18.2.0: Mon Nov 12 20:32:01 PST 2018; root:xnu-4903.232.2~1/RELEASE_ARM64_T8020
12.1.3 beta 2 Darwin Kernel Version 18.2.0: Sun Dec 16 20:44:43 PST 2018; root:xnu-4903.240.10~8/RELEASE_ARM64_T8020
12.1.3 beta 3 Darwin Kernel Version 18.2.0: Wed Dec 19 22:27:19 PST 2018; root:xnu-4903.242.2~2/RELEASE_ARM64_T8020
12.1.3 beta 4
12.1.3 Darwin Kernel Version 18.2.0: Wed Dec 19 20:28:53 PST 2018; root:xnu-4903.242.2~1/RELEASE_ARM64_T8020
12.1.4
12.2 beta Darwin Kernel Version 18.5.0: Sun Jan 13 21:01:59 PST 2019; root:xnu-4903.250.305~10/RELEASE_ARM64_T8020
12.2 beta 2 Darwin Kernel Version 18.5.0: Wed Jan 30 19:26:26 PST 2019; root:xnu-4903.250.319~58/RELEASE_ARM64_T8020
12.2 beta 3 Darwin Kernel Version 18.5.0: Sun Feb 10 20:48:56 PST 2019; root:xnu-4903.250.336.0.1~10/RELEASE_ARM64_T8020
12.2 beta 4 Darwin Kernel Version 18.5.0: Sun Feb 24 21:50:15 PST 2019; root:xnu-4903.250.349~13/RELEASE_ARM64_T8020
12.2 beta 5 Darwin Kernel Version 18.5.0: Tue Mar 5 21:34:09 PST 2019; root:xnu-4903.252.2~2/RELEASE_ARM64_T8020
12.2 beta 6
12.2 Darwin Kernel Version 18.5.0: Tue Mar 5 19:52:18 PST 2019; root:xnu-4903.252.2~1/RELEASE_ARM64_T8020
12.3 beta Darwin Kernel Version 18.6.0: Mon Mar 18 23:03:29 PDT 2019; root:xnu-4903.260.65.100.1~2/RELEASE_ARM64_T8015
12.3 beta 2 Darwin Kernel Version 18.6.0: Mon Apr 1 21:12:58 PDT 2019; root:xnu-4903.260.74.100.1~1/RELEASE_ARM64_T8020
12.3 beta 3 Darwin Kernel Version 18.6.0: Thu Apr 18 19:45:13 PDT 2019; root:xnu-4903.260.85.0.2~1/RELEASE_ARM64_T8020
12.3 beta 4 Darwin Kernel Version 18.6.0: Thu Apr 25 23:57:27 PDT 2019; root:xnu-4903.262.2~3/RELEASE_ARM64_T8015
12.3 beta 5
12.3 beta 6
12.3 Darwin Kernel Version 18.6.0: Thu Apr 25 22:14:10 PDT 2019; root:xnu-4903.262.2~2/RELEASE_ARM64_T8020
12.3.1 (12F203)
12.3.1 (12F8202) Darwin Kernel Version 18.6.0: Thu May 9 15:45:33 PDT 2019; root:xnu-4903.262.2~4/RELEASE_ARM64_T8010
12.3.2 Darwin Kernel Version 18.6.0: Thu Apr 25 22:14:08 PDT 2019; root:xnu-4903.262.2~2/RELEASE_ARM64_T8015
12.4 beta Darwin Kernel Version 18.6.0: Tue May 7 23:38:12 PDT 2019; root:xnu-4903.270.19.100.1~3/RELEASE_ARM64_T8020
12.4 beta 2
12.4 beta 3 Darwin Kernel Version 18.7.0: Tue May 21 01:53:36 PDT 2019; root:xnu-4903.270.29~10/RELEASE_ARM64_T8020
12.4 beta 4 Darwin Kernel Version 18.7.0: Wed Jun 5 21:04:51 PDT 2019; root:xnu-4903.270.37~24/RELEASE_ARM64_T8020
12.4 beta 5 Darwin Kernel Version 18.7.0: Fri Jun 14 21:12:14 PDT 2019; root:xnu-4903.270.38~24/RELEASE_ARM64_T8020
12.4 beta 6 Darwin Kernel Version 18.7.0: Tue Jun 25 22:53:57 PDT 2019; root:xnu-4903.270.47~11/RELEASE_ARM64_T8020
12.4 beta 7
12.4 Darwin Kernel Version 18.7.0: Fri Jun 21 22:24:16 PDT 2019; root:xnu-4903.270.47~7/RELEASE_ARM64_T8015
12.4.1 Darwin Kernel Version 18.7.0: Mon Aug 19 22:24:08 PDT 2019; root:xnu-4903.272.1~1/RELEASE_ARM64_T8020
12.4.2 Darwin Kernel Version 18.7.0: Mon Aug 19 22:24:08 PDT 2019; root:xnu-4903.272.1~1/RELEASE_ARM64_T7000
12.4.3
12.4.4
12.4.5
12.4.6
12.4.7
12.4.8
12.4.9 Darwin Kernel Version 18.7.0: Thu Oct 29 23:39:18 PDT 2020; root:xnu-4903.272.3~1/RELEASE_ARM64_T7000
12.5 Darwin Kernel Version 18.7.0: Mon Nov 9 15:07:15 PST 2020; root:xnu-4903.272.3~3/RELEASE_ARM64_T7000
12.5.1
12.5.2
12.5.3
12.5.4
12.5.5 Darwin Kernel Version 18.7.0: Thu Sep 16 20:47:11 PDT 2021; root:xnu-4903.272.4~1/RELEASE_ARM64_T7000
12.5.6 Darwin Kernel Version 18.7.0: Fri Aug 19 23:28:26 PDT 2022; root:xnu-4903.272.5~1/RELEASE_ARM64_T7000
13.0 beta Darwin Kernel Version 19.0.0: Tue May 21 03:52:25 PDT 2019; root:xnu-6041.0.0.112.1~1/RELEASE_ARM64_T8020
13.0 beta 2 Darwin Kernel Version 19.0.0: Sun Jun 9 18:57:16 PDT 2019; root:xnu-6110.0.0.120.8~3/RELEASE_ARM64_T8020
13.0 beta 3 Darwin Kernel Version 19.0.0: Thu Jun 27 20:08:29 PDT 2019; root:xnu-6153.0.13.132.4~1/RELEASE_ARM64_T8020
13.0 beta 4 Darwin Kernel Version 19.0.0: Tue Jul 9 00:52:55 PDT 2019; root:xnu-6153.0.59.0.2~63/RELEASE_ARM64_T8020
13.0 beta 5 Darwin Kernel Version 19.0.0: Sun Jul 21 19:17:20 PDT 2019; root:xnu-6153.0.98.0.2~30/RELEASE_ARM64_T8020
13.0 beta 6 Darwin Kernel Version 19.0.0: Tue Jul 30 23:56:43 PDT 2019; root:xnu-6153.0.103.8~3/RELEASE_ARM64_T8020
13.0 beta 7 Darwin Kernel Version 19.0.0: Fri Aug 9 23:13:23 PDT 2019; root:xnu-6153.0.103.11~2/RELEASE_ARM64_T8020
13.0 beta 8 Darwin Kernel Version 19.0.0: Thu Aug 15 21:21:27 PDT 2019; root:xnu-6153.0.103.12~3/RELEASE_ARM64_T8020
13.0 GM Darwin Kernel Version 19.0.0: Mon Aug 12 20:19:35 PDT 2019; root:xnu-6153.0.103.12~1/RELEASE_ARM64_T8015
13.0
13.1 beta Darwin Kernel Version 19.0.0: Sun Aug 18 23:18:25 PDT 2019; root:xnu-6153.0.166~14/RELEASE_ARM64_T8015
13.1 beta 2 Darwin Kernel Version 19.0.0: Thu Aug 29 23:02:07 PDT 2019; root:xnu-6153.2.2~5/RELEASE_ARM64_T8020
13.1 beta 3 Darwin Kernel Version 19.0.0: Fri Sep 6 09:12:32 PDT 2019; root:xnu-6153.2.3~7/RELEASE_ARM64_T8015
13.1 beta 4
13.1 Darwin Kernel Version 19.0.0: Tue Sep 3 21:52:14 PDT 2019; root:xnu-6153.2.3~2/RELEASE_ARM64_T8030
13.1.1
13.1.2
13.1.3
13.2 beta Darwin Kernel Version 19.0.0: Sun Sep 22 21:45:32 PDT 2019; root:xnu-6153.40.121.0.1~23/RELEASE_ARM64_T8020
13.2 beta 2 Darwin Kernel Version 19.0.0: Thu Oct 3 23:49:24 PDT 2019; root:xnu-6153.40.150.100.1~1/RELEASE_ARM64_T8030
13.2 beta 3 Darwin Kernel Version 19.0.0: Fri Oct 11 02:14:05 PDT 2019; root:xnu-6153.42.1~3/RELEASE_ARM64_T8010
13.2 beta 4
13.2 Darwin Kernel Version 19.0.0: Wed Oct 9 22:42:11 PDT 2019; root:xnu-6153.42.1~1/RELEASE_ARM64_T8030
13.2.2
13.2.3
13.3 beta Darwin Kernel Version 19.2.0: Thu Oct 31 02:33:36 PDT 2019; root:xnu-6153.60.58.0.1~22/RELEASE_ARM64_T8010
13.3 beta 2 Darwin Kernel Version 19.2.0: Wed Nov 6 02:29:57 PST 2019; root:xnu-6153.60.66~54/RELEASE_ARM64_T8030
13.3 beta 3 Darwin Kernel Version 19.2.0: Tue Nov 12 22:06:16 PST 2019; root:xnu-6153.60.66~63/RELEASE_ARM64_T8030
13.3 beta 4
13.3 Darwin Kernel Version 19.2.0: Mon Nov 4 17:44:49 PST 2019; root:xnu-6153.60.66~39/RELEASE_ARM64_T8010
13.3.1 beta Darwin Kernel Version 19.3.0: Sun Dec 8 21:03:13 PST 2019; root:xnu-6153.80.8.0.1~13/RELEASE_ARM64_T8010
13.3.1 beta 2 Darwin Kernel Version 19.3.0: Thu Jan 9 22:14:53 PST 2020; root:xnu-6153.82.3~2/RELEASE_ARM64_T8010
13.3.1 beta 3
13.3.1 Darwin Kernel Version 19.3.0: Thu Jan 9 21:10:55 PST 2020; root:xnu-6153.82.3~1/RELEASE_ARM64_T8010
13.4 beta Darwin Kernel Version 19.4.0: Wed Jan 29 20:44:26 PST 2020; root:xnu-6153.100.178.100.2~4/RELEASE_ARM64_T8010
13.4 beta 2 Darwin Kernel Version 19.4.0: Tue Feb 11 21:22:30 PST 2020; root:xnu-6153.100.196~52/RELEASE_ARM64_T8010
13.4 beta 3 Darwin Kernel Version 19.4.0: Thu Feb 20 00:09:27 PST 2020; root:xnu-6153.102.2~1/RELEASE_ARM64_T8010
13.4 beta 4 Darwin Kernel Version 19.4.0: Wed Feb 26 00:59:07 PST 2020; root:xnu-6153.102.3~5/RELEASE_ARM64_T8010
13.4 beta 5 Darwin Kernel Version 19.4.0: Wed Feb 26 00:59:07 PST 2020; root:xnu-6153.102.3~5/RELEASE_ARM64_T8010
13.4 beta 6 Darwin Kernel Version 19.4.0: Mon Feb 24 22:04:12 PST 2020; root:xnu-6153.102.3~1/RELEASE_ARM64_T8010
13.4
13.4.1
13.4.5 beta Darwin Kernel Version 19.5.0: Tue Mar 24 15:35:36 PDT 2020; root:xnu-6153.120.15~29/RELEASE_ARM64_T8010
13.4.5 beta 2 Darwin Kernel Version 19.5.0: Sun Apr 5 22:05:12 PDT 2020; root:xnu-6153.120.27~19/RELEASE_ARM64_T8027
13.5 beta 3 Darwin Kernel Version 19.5.0: Sun Apr 19 23:40:03 PDT 2020; root:xnu-6153.120.31~15/RELEASE_ARM64_T8010
13.5 beta 4 Darwin Kernel Version 19.5.0: Wed Apr 29 21:33:50 PDT 2020; root:xnu-6153.122.1~2/RELEASE_ARM64_T8027
13.5 GM Darwin Kernel Version 19.5.0: Tue Apr 28 22:25:26 PDT 2020; root:xnu-6153.122.1~1/RELEASE_ARM64_T8010
13.5
13.5.1 Darwin Kernel Version 19.5.0: Tue May 26 20:56:04 PDT 2020; root:xnu-6153.122.2~1/RELEASE_ARM64_S8000
13.5.5 beta Darwin Kernel Version 19.6.0: Sun May 17 23:49:11 PDT 2020; root:xnu-6153.140.21~11/RELEASE_ARM64_T8010
13.6 beta 2 Darwin Kernel Version 19.6.0: Tue Jun 2 23:09:45 PDT 2020; root:xnu-6153.140.27.0.1~17/RELEASE_ARM64_T8010
13.6 beta 3 Darwin Kernel Version 19.6.0: Sun Jun 21 23:18:41 PDT 2020; root:xnu-6153.142.1~3/RELEASE_ARM64_T8010
13.6 GM Darwin Kernel Version 19.6.0: Sat Jun 27 04:36:25 PDT 2020; root:xnu-6153.142.1~4/RELEASE_ARM64_T8030
13.6
13.6.1
13.7 beta Darwin Kernel Version 19.6.0: Sat Jul 11 00:58:54 PDT 2020; root:xnu-6153.142.1~8/RELEASE_ARM64_T8010
13.7
14.0 beta Darwin Kernel Version 20.0.0: Thu Jun 11 21:44:34 PDT 2020; root:xnu-7090.0.0.112.4~2/RELEASE_ARM64_T8010
14.0 beta 2 Darwin Kernel Version 20.0.0: Tue Jun 30 22:45:10 PDT 2020; root:xnu-7147.0.0.122.1~2/RELEASE_ARM64_T8015
14.0 beta 3 Darwin Kernel Version 20.0.0: Mon Jul 13 22:51:19 PDT 2020; root:xnu-7168.0.0.132.1~1/RELEASE_ARM64_T8030
14.0 beta 4 Darwin Kernel Version 20.0.0: Mon Jul 27 02:44:58 PDT 2020; root:xnu-7195.0.8.0.1~21/RELEASE_ARM64_T8015
14.0 beta 5 Darwin Kernel Version 20.0.0: Wed Aug 12 22:56:55 PDT 2020; root:xnu-7195.0.33~64/RELEASE_ARM64_T8010
14.0 beta 6 Darwin Kernel Version 20.0.0: Mon Aug 17 09:09:19 PDT 2020; root:xnu-7195.0.41~15/RELEASE_ARM64_S8000
14.0 beta 7 Darwin Kernel Version 20.0.0: Wed Aug 26 23:29:06 PDT 2020; root:xnu-7195.0.46~3/RELEASE_ARM64_T8015
14.0 beta 8
14.0 GM Darwin Kernel Version 20.0.0: Fri Aug 28 23:05:58 PDT 2020; root:xnu-7195.0.46~9/RELEASE_ARM64_S8000
14.0
14.0.1
14.1 GM Darwin Kernel Version 20.0.0: Wed Sep 30 03:24:26 PDT 2020; root:xnu-7195.0.46~41/RELEASE_ARM64_T8101
14.1
14.2 beta Darwin Kernel Version 20.1.0: Fri Sep 11 19:19:05 PDT 2020; root:xnu-7195.40.84.172.1~2/RELEASE_ARM64_T8015
14.2 beta 2 Darwin Kernel Version 20.1.0: Mon Sep 21 00:08:44 PDT 2020; root:xnu-7195.40.113.0.2~22/RELEASE_ARM64_T8015
14.2 beta 3 Darwin Kernel Version 20.1.0: Wed Oct 7 00:36:56 PDT 2020; root:xnu-7195.40.141~32/RELEASE_ARM64_T8015
14.2 beta 4 Darwin Kernel Version 20.1.0: Tue Oct 13 09:52:10 PDT 2020; root:xnu-7195.40.143~17/RELEASE_ARM64_T8015
14.2 RC Darwin Kernel Version 20.1.0: Thu Oct 22 12:48:34 PDT 2020; root:xnu-7195.42.1~1/RELEASE_ARM64_T8101
14.2 Darwin Kernel Version 20.1.0: Fri Oct 30 00:34:17 PDT 2020; root:xnu-7195.42.3~1/RELEASE_ARM64_T8015
14.2.1
14.3 beta Darwin Kernel Version 20.2.0: Sun Nov 1 23:50:23 PST 2020; root:xnu-7195.60.63~22/RELEASE_ARM64_T8015
14.3 beta 2 Darwin Kernel Version 20.2.0: Wed Nov 11 07:55:49 PST 2020; root:xnu-7195.62.1~2/RELEASE_ARM64_T8015
14.3 beta 3
14.3 RC Darwin Kernel Version 20.2.0: Fri Nov 13 01:00:15 PST 2020; root:xnu-7195.62.1~4/RELEASE_ARM64_T8015
14.3 RC 2
14.3
14.4 beta Darwin Kernel Version 20.3.0: Sun Dec 6 21:27:59 PST 2020; root:xnu-7195.80.16~13/RELEASE_ARM64_T8015
14.4 beta 2 Darwin Kernel Version 20.3.0: Mon Jan 4 21:55:12 PST 2021; root:xnu-7195.80.30~9/RELEASE_ARM64_T8015
14.4 RC Darwin Kernel Version 20.3.0: Tue Jan 5 18:34:47 PST 2021; root:xnu-7195.80.35~2/RELEASE_ARM64_T8015
14.4
14.4.1
14.4.2
14.5 beta Darwin Kernel Version 20.4.0: Thu Jan 21 21:58:30 PST 2021; root:xnu-7195.100.296.112.2~2/RELEASE_ARM64_T8015
14.5 beta 2 Darwin Kernel Version 20.4.0: Mon Feb 8 22:52:17 PST 2021; root:xnu-7195.100.326.122.1~1/RELEASE_ARM64_T8101
14.5 beta 3 Darwin Kernel Version 20.4.0: Wed Feb 24 21:09:45 PST 2021; root:xnu-7195.100.354.132.2~2/RELEASE_ARM64_T8101
14.5 beta 4 Darwin Kernel Version 20.4.0: Wed Mar 3 07:07:15 PST 2021; root:xnu-7195.100.367~21/RELEASE_ARM64_T8101
14.5 beta 5
14.5 beta 6 Darwin Kernel Version 20.4.0: Thu Mar 25 05:30:14 PDT 2021; root:xnu-7195.100.367~87/RELEASE_ARM64_T8015
14.5 beta 7
14.5 beta 8
14.5 RC Darwin Kernel Version 20.4.0: Sun Feb 28 21:05:16 PST 2021; root:xnu-7195.100.367~3/RELEASE_ARM64_T8015
14.5
14.5.1
14.6 beta Darwin Kernel Version 20.5.0: Thu Apr 15 02:17:28 PDT 2021; root:xnu-7195.120.38.0.1~35/RELEASE_ARM64_T8015
14.6 beta 2 Darwin Kernel Version 20.5.0: Fri Apr 23 17:23:01 PDT 2021; root:xnu-7195.120.53~17/RELEASE_ARM64_T8015
14.6 beta 3 Darwin Kernel Version 20.5.0: Tue May 4 23:32:33 PDT 2021; root:xnu-7195.122.1~2/RELEASE_ARM64_T8101
14.6 RC Darwin Kernel Version 20.5.0: Sat May 8 02:21:45 PDT 2021; root:xnu-7195.122.1~4/RELEASE_ARM64_T8101
14.6 RC 2
14.6
14.7 beta Darwin Kernel Version 20.6.0: Tue May 11 23:46:20 PDT 2021; root:xnu-7195.140.13.0.1~28/RELEASE_ARM64_T8101
14.7 beta 2 Darwin Kernel Version 20.6.0: Sun May 23 22:49:03 PDT 2021; root:xnu-7195.140.22~19/RELEASE_ARM64_T8101
14.7 beta 3 Darwin Kernel Version 20.6.0: Sun Jun 6 22:05:12 PDT 2021; root:xnu-7195.140.29.0.1~17/RELEASE_ARM64_T8101
14.7 beta 4 Darwin Kernel Version 20.6.0: Sun Jun 20 22:50:35 PDT 2021; root:xnu-7195.140.39.0.1~13/RELEASE_ARM64_T8101
14.7 beta 5 Darwin Kernel Version 20.6.0: Mon Jun 28 21:12:18 PDT 2021; root:xnu-7195.140.42~26/RELEASE_ARM64_T8101
14.7 RC Darwin Kernel Version 20.6.0: Mon Jun 21 21:23:35 PDT 2021; root:xnu-7195.140.42~10/RELEASE_ARM64_T8101
14.7
14.7.1
14.8 Darwin Kernel Version 20.6.0: Tue Aug 24 21:10:43 PDT 2021; root:xnu-7195.140.44~1/RELEASE_ARM64_T8101
14.8.1 Darwin Kernel Version 20.6.0: Tue Oct 12 18:57:56 PDT 2021; root:xnu-7195.140.46~1/RELEASE_ARM64_T8101
15.0 beta Darwin Kernel Version 21.0.0: Sat May 22 02:37:36 PDT 2021; root:xnu-7938.0.0.112.1~5/RELEASE_ARM64_T8101
15.0 beta 2 Darwin Kernel Version 21.0.0: Thu Jun 17 22:00:09 PDT 2021; root:xnu-8011.0.0.122.3~2/RELEASE_ARM64_T8101
15.0 beta 3 Darwin Kernel Version 21.0.0: Mon Jul 5 01:22:15 PDT 2021; root:xnu-8019.0.46.0.4~7/RELEASE_ARM64_T8101
15.0 beta 4 Darwin Kernel Version 21.0.0: Tue Jul 20 00:39:07 PDT 2021; root:xnu-8019.0.72.142.1~2/RELEASE_ARM64_T8101
15.0 beta 5 Darwin Kernel Version 21.0.0: Tue Aug 3 21:43:26 PDT 2021; root:xnu-8019.10.7.152.1~2/RELEASE_ARM64_T8101
15.0 beta 6 Darwin Kernel Version 21.0.0: Tue Aug 10 09:24:12 PDT 2021; root:xnu-8019.12.2~20/RELEASE_ARM64_T8101
15.0 beta 7 Darwin Kernel Version 21.0.0: Tue Aug 17 15:54:27 PDT 2021; root:xnu-8019.12.5~3/RELEASE_ARM64_T8101
15.0 beta 8
15.0 RC Darwin Kernel Version 21.0.0: Sun Aug 15 20:55:58 PDT 2021; root:xnu-8019.12.5~1/RELEASE_ARM64_T8101
15.0
15.0.1
15.0.2 Darwin Kernel Version 21.0.0: Wed Sep 29 08:30:00 PDT 2021; root:xnu-8019.12.5~35/RELEASE_ARM64_T8110
15.1 beta Darwin Kernel Version 21.1.0: Mon Sep 6 01:38:18 PDT 2021; root:xnu-8019.40.67~12/RELEASE_ARM64_T8110
15.1 beta 2 Darwin Kernel Version 21.1.0: Tue Sep 21 12:52:25 PDT 2021; root:xnu-8019.40.86~21/RELEASE_ARM64_T8110
15.1 beta 3 Darwin Kernel Version 21.1.0: Wed Sep 29 23:45:41 PDT 2021; root:xnu-8019.40.96.0.2~9/RELEASE_ARM64_T8110
15.1 beta 4 Darwin Kernel Version 21.1.0: Wed Oct 6 16:16:32 PDT 2021; root:xnu-8019.42.2~3/RELEASE_ARM64_T8110
15.1 RC Darwin Kernel Version 21.1.0: Wed Oct 13 18:16:52 PDT 2021; root:xnu-8019.42.4~1/RELEASE_ARM64_T8110
15.1 RC 2
15.1
15.1.1
15.2 beta Darwin Kernel Version 21.2.0: Tue Oct 19 23:44:00 PDT 2021; root:xnu-8019.60.40.0.1~25/RELEASE_ARM64_T8110
15.2 beta 2 Darwin Kernel Version 21.2.0: Sun Oct 31 20:22:35 PDT 2021; root:xnu-8019.60.58~8/RELEASE_ARM64_T8110
15.2 beta 3 Darwin Kernel Version 21.2.0: Thu Nov 11 02:37:21 PST 2021; root:xnu-8019.60.69~8/RELEASE_ARM64_T8110
15.2 beta 4 Darwin Kernel Version 21.2.0: Mon Nov 15 23:30:26 PST 2021; root:xnu-8019.62.1~2/RELEASE_ARM64_T8110
15.2 RC Darwin Kernel Version 21.2.0: Sun Nov 28 20:43:39 PST 2021; root:xnu-8019.62.2~1/RELEASE_ARM64_T8110
15.2 RC 2
15.2
15.2.1
15.3 beta Darwin Kernel Version 21.3.0: Sat Dec 4 02:01:22 PST 2021; root:xnu-8019.80.11~18/RELEASE_ARM64_T8110
15.3 beta 2 Darwin Kernel Version 21.3.0: Mon Jan 3 23:48:04 PST 2022; root:xnu-8019.80.24~16/RELEASE_ARM64_T8110
15.3 RC Darwin Kernel Version 21.3.0: Wed Jan 5 21:44:44 PST 2022; root:xnu-8019.80.24~23/RELEASE_ARM64_T8110
15.3
15.3.1
15.4 beta Darwin Kernel Version 21.4.0: Sun Jan 16 20:50:37 PST 2022; root:xnu-8020.100.406.0.1~10/RELEASE_ARM64_T8110
15.4 beta 2 Darwin Kernel Version 21.4.0: Sun Jan 30 18:30:04 PST 2022; root:xnu-8020.100.417.0.4~51/RELEASE_ARM64_T8110
15.4 beta 3 Darwin Kernel Version 21.4.0: Tue Feb 8 12:24:43 PST 2022; root:xnu-8020.100.429.132.1~2/RELEASE_ARM64_T8110
15.4 beta 4 Darwin Kernel Version 21.4.0: Thu Feb 17 22:48:38 PST 2022; root:xnu-8020.102.2~2/RELEASE_ARM64_T8110
15.4 beta 5 Darwin Kernel Version 21.4.0: Mon Feb 21 22:46:42 PST 2022; root:xnu-8020.102.3~2/RELEASE_ARM64_T8110
15.4 RC Darwin Kernel Version 21.4.0: Mon Feb 21 21:27:57 PST 2022; root:xnu-8020.102.3~1/RELEASE_ARM64_T8110
15.4
15.4.1
15.5 beta Darwin Kernel Version 21.5.0: Mon Mar 28 22:30:10 PDT 2022; root:xnu-8020.120.43.112.1~1/RELEASE_ARM64_T8110
15.5 beta 2 Darwin Kernel Version 21.5.0: Tue Apr 12 22:26:36 PDT 2022; root:xnu-8020.120.51.122.2~1/RELEASE_ARM64_T8110
15.5 beta 3 Darwin Kernel Version 21.5.0: Mon Apr 18 22:57:09 PDT 2022; root:xnu-8020.120.68.132.1~1/RELEASE_ARM64_T8110
15.5 beta 4 Darwin Kernel Version 21.5.0: Sun Apr 24 16:21:23 PDT 2022; root:xnu-8020.122.1~2/RELEASE_ARM64_T8110
15.5 RC Darwin Kernel Version 21.5.0: Thu Apr 21 21:51:30 PDT 2022; root:xnu-8020.122.1~1/RELEASE_ARM64_T8110
15.5
15.6 beta Darwin Kernel Version 21.6.0: Mon May 9 00:43:45 PDT 2022; root:xnu-8020.140.20.0.4~16/RELEASE_ARM64_T8110
15.6 beta 2 Darwin Kernel Version 21.6.0: Sun May 22 21:42:17 PDT 2022; root:xnu-8020.140.30~10/RELEASE_ARM64_T8110
15.6 beta 3 Darwin Kernel Version 21.6.0: Sun Jun 5 16:50:25 PDT 2022; root:xnu-8020.140.36~29/RELEASE_ARM64_T8110
15.6 beta 4 Darwin Kernel Version 21.6.0: Sun Jun 19 22:17:41 PDT 2022; root:xnu-8020.140.41~8/RELEASE_ARM64_T8110
15.6 beta 5
15.6 RC Darwin Kernel Version 21.6.0: Sat Jun 18 18:56:54 PDT 2022; root:xnu-8020.140.41~4/RELEASE_ARM64_T8110
15.6 RC 2
15.6
15.6.1 Darwin Kernel Version 21.6.0: Wed Aug 10 15:38:26 PDT 2022; root:xnu-8020.142.2~1/RELEASE_ARM64_T8110
15.7 RC Darwin Kernel Version 21.6.0: Thu Aug 11 21:46:05 PDT 2022; root:xnu-8020.241.2~1/RELEASE_ARM64_T8110
15.7
15.7.1 RC Darwin Kernel Version 21.6.0: Thu Sep 29 22:46:31 PDT 2022; root:xnu-8020.241.8~1/RELEASE_ARM64_T8110
16.0 beta Darwin Kernel Version 22.0.0: Thu May 26 20:49:14 PDT 2022; root:xnu-8792.0.50.112.3~4/RELEASE_ARM64_T8110
16.0 beta 2 Darwin Kernel Version 22.0.0: Tue Jun 14 22:01:54 PDT 2022; root:xnu-8792.0.92.122.1~3/RELEASE_ARM64_T8110
16.0 beta 3 Darwin Kernel Version 22.0.0: Fri Jun 24 18:23:40 PDT 2022; root:xnu-8792.0.134.0.1~6/RELEASE_ARM64_T8110
16.0 beta 3 Update
16.0 beta 4 Darwin Kernel Version 22.0.0: Tue Jul 19 02:35:56 PDT 2022; root:xnu-8792.0.188.142.2~2/RELEASE_ARM64_T8110
16.0 beta 5 Darwin Kernel Version 22.0.0: Mon Aug 1 07:26:11 PDT 2022; root:xnu-8792.2.4~12/RELEASE_ARM64_T8110
16.0 beta 6 Darwin Kernel Version 22.0.0: Wed Aug 10 23:37:39 PDT 2022; root:xnu-8792.12.6.162.2~2/RELEASE_ARM64_T8110
16.0 beta 7 Darwin Kernel Version 22.0.0: Tue Aug 16 22:26:03 PDT 2022; root:xnu-8792.2.11.0.1~3/RELEASE_ARM64_T8110 iOS only.
16.0 beta 8
16.0 RC Darwin Kernel Version 22.0.0: Tue Aug 16 20:51:28 PDT 2022; root:xnu-8792.2.11.0.1~1/RELEASE_ARM64_T8110
16.0
16.0.1 iPhone 14 model series only.
16.0.2 iOS only.
16.0.3 Darwin Kernel Version 22.0.0: Tue Oct 4 16:59:26 PDT 2022; root:xnu-8792.2.15~1/RELEASE_ARM64_T8120
16.1 beta Darwin Kernel Version 22.1.0: Fri Aug 19 18:31:07 PDT 2022; root:xnu-8792.40.29.100.2~1/RELEASE_ARM64_T8110 iPadOS only.
16.1 beta 2 Darwin Kernel Version 22.1.0: Sun Sep 11 23:03:57 PDT 2022; root:xnu-8792.40.101.0.1~17/RELEASE_ARM64_T8120
16.1 beta 3 Darwin Kernel Version 22.1.0: Sun Sep 4 20:44:45 PDT 2022; root:xnu-8792.40.93~10/RELEASE_ARM64_T8120
16.1 beta 4 Darwin Kernel Version 22.1.0: Thu Sep 22 21:45:53 PDT 2022; root:xnu-8792.40.108.152.2~1/RELEASE_ARM64_T8120
16.1 beta 5 Darwin Kernel Version 22.1.0: Mon Sep 26 21:51:13 PDT 2022; root:xnu-8792.42.5~5/RELEASE_ARM64_T8120
16.1 beta 6 Darwin Kernel Version 22.1.0: Thu Oct 6 20:55:56 PDT 2022; root:xnu-8792.42.7~2/RELEASE_ARM64_T8120
16.1 RC Darwin Kernel Version 22.1.0: Thu Oct 6 19:34:16 PDT 2022; root:xnu-8792.42.7~1/RELEASE_ARM64_T8120
16.1
16.2 beta Darwin Kernel Version 22.2.0: Sun Oct 16 17:47:55 PDT 2022; root:xnu-8792.60.32.0.1~10/RELEASE_ARM64_T8120

iOS (Apple TV Software)

Version Build Comment
4.1 Darwin Kernel Version 10.3.1: Tue Sep 21 14:19:38 PDT 2010; root:xnu-1504.57.22~1/RELEASE_ARM_S5L8930X
4.2 Darwin Kernel Version 10.4.0: Wed Oct 20 20:14:45 PDT 2010; root:xnu-1504.58.28~3/RELEASE_ARM_S5L8930X
4.2.1
4.3 Darwin Kernel Version 11.0.0: Thu Feb 10 21:46:56 PST 2011; root:xnu-1735.46~2/RELEASE_ARM_S5L8930X
4.4 Darwin Kernel Version 11.0.0: Thu Sep 15 23:34:16 PDT 2011; root:xnu-1878.4.43~2/RELEASE_ARM_S5L8930X
4.4.1 Darwin Kernel Version 11.0.0: Fri Oct 14 15:47:23 PDT 2011; root:xnu-1878.4.44~1/RELEASE_ARM_S5L8930X
4.4.2 Darwin Kernel Version 11.0.0: Wed Oct 19 19:05:07 PDT 2011; root:xnu-1878.4.45~1/RELEASE_ARM_S5L8930X
4.4.3 Darwin Kernel Version 11.0.0: Tue Nov 1 20:33:58 PDT 2011; root:xnu-1878.4.46~1/RELEASE_ARM_S5L8930X
4.4.4
5.0 Darwin Kernel Version 11.0.0: Wed Feb 1 23:17:51 PST 2012; root:xnu-1878.11.8~1/RELEASE_ARM_S5L8942X
5.0.1 Darwin Kernel Version 11.0.0: Wed May 2 12:12:59 PDT 2012; root:xnu-1878.11.11~2/RELEASE_ARM_S5L8942X
5.0.2
5.1 beta 2 Darwin Kernel Version 13.0.0: Sun Jun 17 19:47:47 PDT 2012; root:xnu-2107.1.61~3/RELEASE_ARM_S5L8930X
5.1 beta 3 Darwin Kernel Version 13.0.0: Sun Jul 8 20:15:17 PDT 2012; root:xnu-2107.2.9~3/RELEASE_ARM_S5L8930X
5.1 beta 4 Darwin Kernel Version 13.0.0: Sun Jul 29 20:15:28 PDT 2012; root:xnu-2107.2.26~4/RELEASE_ARM_S5L8930X
5.1 Darwin Kernel Version 13.0.0: Sun Aug 19 00:29:07 PDT 2012; root:xnu-2107.2.33~4/RELEASE_ARM_S5L8942X
5.1.1 Darwin Kernel Version 13.0.0: Wed Oct 10 23:30:28 PDT 2012; root:xnu-2107.2.34~2/RELEASE_ARM_S5L8942X
5.2 beta 2 Darwin Kernel Version 13.0.0: Mon Nov 26 21:17:13 PST 2012; root:xnu-2107.7.53~27/RELEASE_ARM_S5L8930X
5.2 beta 3 Darwin Kernel Version 13.0.0: Sun Dec 9 19:22:45 PST 2012; root:xnu-2107.7.55~6/RELEASE_ARM_S5L8930X
5.2 Darwin Kernel Version 13.0.0: Sun Dec 16 19:59:44 PST 2012; root:xnu-2107.7.55~11/RELEASE_ARM_S5L8942X
5.2.1 Darwin Kernel Version 13.0.0: Wed Feb 13 21:38:15 PST 2013; root:xnu-2107.7.55.2.2~1/RELEASE_ARM_S5L8942X
5.3
5.4 beta 2 Darwin Kernel Version 14.0.0: Mon Jun 17 00:51:51 PDT 2013; root:xnu-2423.1.28~7/RELEASE_ARM_S5L8930X
6.0 beta 3 Darwin Kernel Version 14.0.0: Mon Jul 22 02:12:11 PDT 2013; root:xnu-2423.1.55~8/RELEASE_ARM_S5L8930X
6.0 beta 4 Darwin Kernel Version 14.0.0: Sun Aug 4 22:40:14 PDT 2013; root:xnu-2423.1.70~6/RELEASE_ARM_S5L8930X
6.0 Darwin Kernel Version 14.0.0: Mon Sep 9 20:56:45 PDT 2013; root:xnu-2423.1.74~2/RELEASE_ARM_S5L8930X
6.0.1 Darwin Kernel Version 14.0.0: Fri Sep 27 23:07:56 PDT 2013; root:xnu-2423.3.12~1/RELEASE_ARM_S5L8930X
6.0.2
6.1 beta 2 Darwin Kernel Version 14.0.0: Tue Dec 10 21:25:34 PST 2013; root:xnu-2423.10.38.1.1~1/RELEASE_ARM_S5L8930X
6.1 beta 3 Darwin Kernel Version 14.0.0: Thu Jan 2 01:55:45 PST 2014; root:xnu-2423.10.45~5/RELEASE_ARM_S5L8930X
6.1 beta 4 Darwin Kernel Version 14.0.0: Mon Jan 13 03:33:00 PST 2014; root:xnu-2423.10.49.0.1~3/RELEASE_ARM_S5L8930X
6.1 beta 5 Darwin Kernel Version 14.0.0: Mon Jan 27 23:55:13 PST 2014; root:xnu-2423.10.58~2/RELEASE_ARM_S5L8930X
6.1 Darwin Kernel Version 14.0.0: Fri Feb 21 19:41:10 PST 2014; root:xnu-2423.10.67~1/RELEASE_ARM_S5L8930X
6.1.1 Darwin Kernel Version 14.0.0: Fri Mar 28 21:22:10 PDT 2014; root:xnu-2423.10.70~1/RELEASE_ARM_S5L8930X
6.2 Darwin Kernel Version 14.0.0: Thu May 15 23:18:01 PDT 2014; root:xnu-2423.10.71~1/RELEASE_ARM_S5L8930X
6.2.1
7.0 Darwin Kernel Version 14.0.0: Tue Aug 19 15:09:45 PDT 2014; root:xnu-2783.1.72~8/RELEASE_ARM_S5L8947X
7.0.1 (12A402) Darwin Kernel Version 14.0.0: Thu Sep 18 21:53:08 PDT 2014; root:xnu-2783.1.72~23/RELEASE_ARM_S5L8947X
7.0.1 (12B410a) Darwin Kernel Version 14.0.0: Tue Oct 7 00:05:03 PDT 2014; root:xnu-2783.3.13~4/RELEASE_ARM_S5L8947X
7.0.2 Darwin Kernel Version 14.0.0: Mon Nov 3 22:23:59 PST 2014; root:xnu-2783.3.22~1/RELEASE_ARM_S5L8947X
7.0.3 Darwin Kernel Version 14.0.0: Mon Jan 12 21:30:02 PST 2015; root:xnu-2783.3.26~3/RELEASE_ARM_S5L8947X
7.1 Darwin Kernel Version 14.0.0: Mon Feb 9 22:07:29 PST 2015; root:xnu-2783.5.38~5/RELEASE_ARM_S5L8947X
7.2 Darwin Kernel Version 14.0.0: Sun Mar 29 19:47:26 PDT 2015; root:xnu-2784.20.34~2/RELEASE_ARM_S5L8947X
7.2.1 Darwin Kernel Version 14.0.0: Thu Feb 18 15:13:33 PST 2016; root:xnu-2784.40.6~44/RELEASE_ARM_S5L8947X
7.2.2 Darwin Kernel Version 14.0.0: Fri Nov 11 17:37:49 PST 2016; root:xnu-2784.40.6~50/RELEASE_ARM_S5L8947X
7.3 Darwin Kernel Version 14.0.0: Sun May 5 03:21:29 PDT 2019; root:xnu-2784.40.6~79/RELEASE_ARM_S5L8947X
7.3.1 Darwin Kernel Version 14.0.0: Fri Jun 21 09:20:43 PDT 2019; root:xnu-2784.40.6~82/RELEASE_ARM_S5L8947X
7.4 Darwin Kernel Version 14.0.0: Wed Sep 11 19:15:24 PDT 2019; root:xnu-2784.40.6~86/RELEASE_ARM_S5L8947X
7.5 Darwin Kernel Version 14.0.0: Tue Feb 18 20:29:59 PST 2020; root:xnu-2784.40.6~87/RELEASE_ARM_S5L8947X
7.6 Darwin Kernel Version 14.0.0: Mon Aug 17 22:28:27 PDT 2020; root:xnu-2784.40.6~90/RELEASE_ARM_S5L8947X
7.6.1
7.6.2 Darwin Kernel Version 14.0.0: Wed Nov 11 16:32:00 PST 2020; root:xnu-2784.40.6~92/RELEASE_ARM_S5L8947X
7.7 ?
7.8 ?
7.9 ?

tvOS

Version Build Comment
9.0 beta ?
9.0 beta 2 ?
9.0 beta 3 ?
9.0 GM ?
9.0 ?
9.0.1 ?
9.1 beta ?
9.1 beta 2 ?
9.1 beta 3 ?
9.1 ?
9.1.1 beta ?
9.1.1 ?
9.2 beta ?
9.2 beta 2 ?
9.2 beta 3 ?
9.2 beta 4 ?
9.2 beta 5 ?
9.2 beta 6 ?
9.2 Darwin Kernel Version 15.4.0: Wed Feb 24 12:51:38 PST 2016; root:xnu-3248.41.4~47/RELEASE_ARM64_T7000
9.2.1 beta ?
9.2.1 beta 2 ?
9.2.1 beta 3 ?
9.2.1 beta 4 ?
9.2.1 ?
9.2.2 beta ?
9.2.2 beta 2 ?
9.2.2 beta 3 ?
9.2.2 beta 4 ?
9.2.2 beta 5 ?
9.2.2 ?
10.0 beta ?
10.0 beta 2 Darwin Kernel Version 16.0.0: Tue Jun 28 20:14:41 PDT 2016; root:xnu-3757~288/RELEASE_ARM64_T7000
10.0 beta 3 Darwin Kernel Version 16.0.0: Sat Jul 9 21:47:44 PDT 2016; root:xnu-3777.0.0.0.1~24/RELEASE_ARM64_T7000
10.0 beta 4 Darwin Kernel Version 16.0.0: Sun Jul 24 21:39:58 PDT 2016; root:xnu-3789.1.4.0.2~14/RELEASE_ARM64_T7000
10.0 beta 5 Darwin Kernel Version 16.0.0: Fri Aug 5 23:09:12 PDT 2016; root:xnu-3789.1.24~16/RELEASE_ARM64_T7000
10.0 beta 6 Darwin Kernel Version 16.0.0: Wed Aug 10 21:30:40 PDT 2016; root:xnu-3789.3.1~4/RELEASE_ARM64_T7000
10.0 beta 7
10.0 GM Darwin Kernel Version 16.0.0: Wed Aug 10 21:05:14 PDT 2016; root:xnu-3789.3.1~3/RELEASE_ARM64_T7000
10.0
10.0.1 beta Darwin Kernel Version 16.1.0: Wed Sep 14 17:57:39 PDT 2016; root:xnu-3789.20.44~57/RELEASE_ARM64_T7000
10.0.1 beta 2 Darwin Kernel Version 16.1.0: Thu Sep 29 22:13:19 PDT 2016; root:xnu-3789.23.3~2/RELEASE_ARM64_T7000
10.0.1 beta 3
10.0.1 beta 4
10.0.1
10.1 beta Darwin Kernel Version 16.3.0: Sun Oct 23 21:22:09 PDT 2016; root:xnu-3789.30.76~7/RELEASE_ARM64_T7000
10.1 beta 2 Darwin Kernel Version 16.3.0: Tue Nov 1 23:22:40 PDT 2016; root:xnu-3789.30.86~55/RELEASE_ARM64_T7000
10.1 beta 3 Darwin Kernel Version 16.3.0: Mon Nov 7 20:28:37 PST 2016; root:xnu-3789.30.92~34/RELEASE_ARM64_T7000
10.1 beta 4 Darwin Kernel Version 16.3.0: Mon Nov 7 18:51:34 PST 2016; root:xnu-3789.30.92~24/RELEASE_ARM64_T7000
10.1 beta 5 Darwin Kernel Version 16.3.0: Tue Nov 29 20:25:47 PST 2016; root:xnu-3789.33.1~1/RELEASE_ARM64_T7000
10.1
10.1.1 beta Darwin Kernel Version 16.3.0: Thu Dec 1 19:58:29 PST 2016; root:xnu-3789.43.1~1/RELEASE_ARM64_T7000
10.1.1 beta 2 Darwin Kernel Version 16.3.0: Mon Dec 19 19:56:48 PST 2016; root:xnu-3789.43.2~1/RELEASE_ARM64_T7000
10.1.1
10.2 beta Darwin Kernel Version 16.5.0: Mon Jan 16 22:11:09 PST 2017; root:xnu-3789.50.189~30/RELEASE_ARM64_T7000
10.2 beta 2 Darwin Kernel Version 16.5.0: Tue Jan 31 22:05:35 PST 2017; root:xnu-3789.50.195.1.1~5/RELEASE_ARM64_T7000
10.2 beta 3 Darwin Kernel Version 16.5.0: Fri Feb 10 18:55:56 PST 2017; root:xnu-3789.50.208~44/RELEASE_ARM64_T7000
10.2 beta 4 Darwin Kernel Version 16.5.0: Wed Feb 22 22:34:16 PST 2017; root:xnu-3789.53.1~1/RELEASE_ARM64_T7000
10.2 beta 5
10.2 beta 6
10.2 Darwin Kernel Version 16.5.0: Wed Feb 22 22:54:48 PST 2017; root:xnu-3789.53.1~2/RELEASE_ARM64_T7000
10.2.1 beta Darwin Kernel Version 16.6.0: Wed Mar 22 22:02:18 PDT 2017; root:xnu-3789.60.12~19/RELEASE_ARM64_T7000
10.2.1 beta 2 Darwin Kernel Version 16.6.0: Tue Apr 4 22:59:04 PDT 2017; root:xnu-3789.60.15~14/RELEASE_ARM64_T7000
10.2.1 beta 3 Darwin Kernel Version 16.6.0: Tue Apr 11 22:12:20 PDT 2017; root:xnu-3789.60.20~13/RELEASE_ARM64_T7000
10.2.1 beta 4 Darwin Kernel Version 16.6.0: Mon Apr 17 21:33:13 PDT 2017; root:xnu-3789.60.24~27/RELEASE_ARM64_T7000
10.2.1 beta 5 Darwin Kernel Version 16.6.0: Mon Apr 17 17:08:57 PDT 2017; root:xnu-3789.60.24~19/RELEASE_ARM64_T7000
10.2.1
10.2.2 beta Darwin Kernel Version 16.7.0: Mon May 8 22:30:36 PDT 2017; root:xnu-3789.70.9~15/RELEASE_ARM64_T7000
10.2.2 beta 2 Darwin Kernel Version 16.7.0: Wed May 24 22:30:31 PDT 2017; root:xnu-3789.70.11~7/RELEASE_ARM64_T7000
10.2.2 beta 3 Darwin Kernel Version 16.7.0: Tue Jun 6 21:55:21 PDT 2017; root:xnu-3789.70.15~7/RELEASE_ARM64_T7000
10.2.2 beta 4 Darwin Kernel Version 16.7.0: Thu Jun 15 21:21:51 PDT 2017; root:xnu-3789.70.16~5/RELEASE_ARM64_T7000
10.2.2 beta 5 Darwin Kernel Version 16.7.0: Thu Jun 15 17:33:44 PDT 2017; root:xnu-3789.70.16~1/RELEASE_ARM64_T7000
10.2.2
11.0 beta Darwin Kernel Version 17.0.0: Mon May 29 22:07:52 PDT 2017; root:xnu-4397.0.0.3.3~1/RELEASE_ARM64_T7000
11.0 beta 2 Darwin Kernel Version 17.0.0: Tue Jun 13 21:14:00 PDT 2017; root:xnu-4481.0.0.3.1~1/RELEASE_ARM64_T7000
11.0 beta 3 Darwin Kernel Version 17.0.0: Thu Jun 29 22:57:03 PDT 2017; root:xnu-4532.0.0.0.1~31/RELEASE_ARM64_T7000
11.0 beta 4 Darwin Kernel Version 17.0.0: Thu Jul 20 19:53:33 PDT 2017; root:xnu-4556.0.0.3.1~1/RELEASE_ARM64_T7000
11.0 beta 5 Darwin Kernel Version 17.0.0: Tue Aug 1 19:27:12 PDT 2017; root:xnu-4570.1.24.3.2~1/RELEASE_ARM64_T7000
11.0 beta 6 Darwin Kernel Version 17.0.0: Wed Aug 9 22:03:49 PDT 2017; root:xnu-4570.3.5~2/RELEASE_ARM64_T7000
11.0 beta 7
11.0 beta 8 Darwin Kernel Version 17.0.0: Wed Aug 9 22:03:49 PDT 2017; root:xnu-4570.3.5~2/RELEASE_ARM64_T7000
11.0 beta 9
11.0 beta 10
11.0 GM Darwin Kernel Version 17.0.0: Wed Aug 9 22:06:00 PDT 2017; root:xnu-4570.3.5~1/RELEASE_ARM64_T7000
11.0
11.1 beta Darwin Kernel Version 17.2.0: Sun Sep 17 22:46:33 PDT 2017; root:xnu-4570.20.55~14/RELEASE_ARM64_T7000
11.1 beta 2 Darwin Kernel Version 17.2.0: Sat Sep 30 22:25:46 PDT 2017; root:xnu-4570.20.62~7/RELEASE_ARM64_T8011
11.1 beta 3
11.1 beta 4 Darwin Kernel Version 17.2.0: Sat Sep 30 22:25:46 PDT 2017; root:xnu-4570.20.62~7/RELEASE_ARM64_T8011
11.1 Darwin Kernel Version 17.2.0: Fri Sep 29 17:54:22 PDT 2017; root:xnu-4570.20.62~1/RELEASE_ARM64_T8011
11.2 beta Darwin Kernel Version 17.3.0: Wed Oct 25 18:20:25 PDT 2017; root:xnu-4570.30.79~20/RELEASE_ARM64_T7000
11.2 beta 2 Darwin Kernel Version 17.3.0: Sun Oct 29 14:28:43 PDT 2017; root:xnu-4570.30.85~13/RELEASE_ARM64_T8011
11.2 beta 3 Darwin Kernel Version 17.3.0: Thu Nov 9 20:31:23 PST 2017; root:xnu-4570.33.2~1/RELEASE_ARM64_T8011
11.2 beta 4
11.2 beta 5
11.2 Darwin Kernel Version 17.3.0: Thu Nov 9 21:08:52 PST 2017; root:xnu-4570.33.2~2/RELEASE_ARM64_T7000
11.2.1
11.2.5 beta Darwin Kernel Version 17.4.0: Sun Dec 3 22:05:15 PST 2017; root:xnu-4570.40.6~9/RELEASE_ARM64_T8011
11.2.5 beta 2 Darwin Kernel Version 17.4.0: Wed Dec 13 21:50:17 PST 2017; root:xnu-4570.40.9~6/RELEASE_ARM64_T8011
11.2.5 beta 3
11.2.5 beta 4
11.2.5 beta 5
11.2.5 beta 6
11.2.5 Darwin Kernel Version 17.4.0: Wed Dec 13 08:39:13 PST 2017; root:xnu-4570.40.9~5/RELEASE_ARM64_T8011
11.2.6
11.3 beta Darwin Kernel Version 17.5.0: Fri Jan 12 22:20:49 PST 2018; root:xnu-4570.50.243~7/RELEASE_ARM64_T8011
11.3 beta 2 Darwin Kernel Version 17.5.0: Fri Jan 26 22:31:01 PST 2018; root:xnu-4570.50.257~5/RELEASE_ARM64_T8011
11.3 beta 3 Darwin Kernel Version 17.5.0: Sat Feb 10 17:05:58 PST 2018; root:xnu-4570.50.279~8/RELEASE_ARM64_T8011
11.3 beta 4 Darwin Kernel Version 17.5.0: Sat Feb 24 20:07:47 PST 2018; root:xnu-4570.50.294~4/RELEASE_ARM64_T8011
11.3 beta 5 Darwin Kernel Version 17.5.0: Tue Mar 6 20:41:27 PST 2018; root:xnu-4570.53.2~2/RELEASE_ARM64_T8011
11.3 beta 6
11.3
11.4 beta Darwin Kernel Version 17.5.0: Sun Mar 25 21:41:10 PDT 2018; root:xnu-4570.60.10.0.1~17/RELEASE_ARM64_T8011
11.4 beta 2 Darwin Kernel Version 17.6.0: Thu Apr 5 21:50:35 PDT 2018; root:xnu-4570.60.16~6/RELEASE_ARM64_T8011
11.4 beta 3 Darwin Kernel Version 17.6.0: Sun Apr 22 21:05:19 PDT 2018; root:xnu-4570.60.19~32/RELEASE_ARM64_T8011
11.4 beta 4 Darwin Kernel Version 17.6.0: Tue May 1 21:56:42 PDT 2018; root:xnu-4570.60.21~12/RELEASE_ARM64_T7000
11.4 beta 5
11.4 Darwin Kernel Version 17.6.0: Mon Apr 30 18:51:30 PDT 2018; root:xnu-4570.60.21~1/RELEASE_ARM64_T8011
11.4.1 beta Darwin Kernel Version 17.7.0: Mon May 21 19:33:55 PDT 2018; root:xnu-4570.70.14~14/RELEASE_ARM64_T8011
11.4.1 beta 2 Darwin Kernel Version 17.7.0: Sun Jun 3 20:20:14 PDT 2018; root:xnu-4570.70.19~12/RELEASE_ARM64_T8011
11.4.1 beta 3 Darwin Kernel Version 17.7.0: Tue Jun 12 22:02:04 PDT 2018; root:xnu-4570.70.24~12/RELEASE_ARM64_T8011
11.4.1 beta 4
11.4.1 Darwin Kernel Version 17.7.0: Mon Jun 11 17:52:56 PDT 2018; root:xnu-4570.70.24~2/RELEASE_ARM64_T8011
12.0 beta Darwin Kernel Version 18.0.0: Fri May 25 21:01:49 PDT 2018; root:xnu-4903.200.199.13.1~1/RELEASE_ARM64_T7000
12.0 beta 2 Darwin Kernel Version 18.0.0: Sun Jun 10 21:18:31 PDT 2018; root:xnu-4903.200.249~12/RELEASE_ARM64_T8011
12.0 beta 3 Darwin Kernel Version 18.0.0: Mon Jun 25 21:45:42 PDT 2018; root:xnu-4903.200.274.0.2~47/RELEASE_ARM64_T8011
12.0 beta 4 Darwin Kernel Version 18.0.0: Mon Jul 9 20:23:22 PDT 2018; root:xnu-4903.200.304.43.1~1/RELEASE_ARM64_T8011
12.0 beta 5 Darwin Kernel Version 18.0.0: Sat Jul 21 12:11:29 PDT 2018; root:xnu-4903.200.327~12/RELEASE_ARM64_T8011
12.0 beta 6 Darwin Kernel Version 18.0.0: Wed Aug 1 20:45:31 PDT 2018; root:xnu-4903.200.342.63.2~1/RELEASE_ARM64_T8011
12.0 beta 7
12.0 beta 8 Darwin Kernel Version 18.0.0: Fri Aug 10 21:22:28 PDT 2018; root:xnu-4903.203.1~2/RELEASE_ARM64_T8011
12.0 beta 9
12.0 beta 10
12.0 GM Darwin Kernel Version 18.0.0: Fri Aug 10 20:58:13 PDT 2018; root:xnu-4903.203.1~1/RELEASE_ARM64_T8011
12.0
12.0.1
12.1 beta Darwin Kernel Version 18.2.0: Mon Sep 10 21:59:21 PDT 2018; root:xnu-4903.220.42~20/RELEASE_ARM64_T8011
12.1 beta 2 Darwin Kernel Version 18.2.0: Sun Sep 23 20:20:40 PDT 2018; root:xnu-4903.220.48~41/RELEASE_ARM64_T8011
12.1 beta 3 Darwin Kernel Version 18.2.0: Wed Oct 3 00:49:30 PDT 2018; root:xnu-4903.220.53~16/RELEASE_ARM64_T8011
12.1 beta 4 Darwin Kernel Version 18.2.0: Tue Oct 9 19:13:35 PDT 2018; root:xnu-4903.223.3~3/RELEASE_ARM64_T8011
12.1 beta 5
12.1 Darwin Kernel Version 18.2.0: Mon Oct 8 08:27:41 PDT 2018; root:xnu-4903.223.3~2/RELEASE_ARM64_T8011
12.1.1 beta Darwin Kernel Version 18.2.0: Thu Oct 25 21:21:41 PDT 2018; root:xnu-4903.230.15~6/RELEASE_ARM64_T8011
12.1.1 beta 2 Darwin Kernel Version 18.2.0: Sat Nov 3 01:46:15 PDT 2018; root:xnu-4903.233.1~4/RELEASE_ARM64_T8011
12.1.1 beta 3 Darwin Kernel Version 18.2.0: Mon Nov 12 20:47:24 PST 2018; root:xnu-4903.233.2~2/RELEASE_ARM64_T8011
12.1.1 beta 4
12.1.1 Darwin Kernel Version 18.2.0: Mon Nov 12 20:30:29 PST 2018; root:xnu-4903.233.2~1/RELEASE_ARM64_T8011
12.1.2 beta Darwin Kernel Version 18.2.0: Sun Dec 2 20:37:48 PST 2018; root:xnu-4903.240.8~7/RELEASE_ARM64_T8011
12.1.2 beta 2 Darwin Kernel Version 18.2.0: Sun Dec 16 20:16:59 PST 2018; root:xnu-4903.240.10~7/RELEASE_ARM64_T8011
12.1.2 beta 3 Darwin Kernel Version 18.2.0: Wed Dec 19 22:08:51 PST 2018; root:xnu-4903.243.1~2/RELEASE_ARM64_T8011
12.1.2 Darwin Kernel Version 18.2.0: Wed Dec 19 20:38:15 PST 2018; root:xnu-4903.243.1~1/RELEASE_ARM64_T7000
12.2 beta Darwin Kernel Version 18.5.0: Sun Jan 13 20:21:52 PST 2019; root:xnu-4903.250.305~7/RELEASE_ARM64_T8011
12.2 beta 2 Darwin Kernel Version 18.5.0: Wed Jan 30 18:33:26 PST 2019; root:xnu-4903.250.319~57/RELEASE_ARM64_T7000
12.2 beta 3 Darwin Kernel Version 18.5.0: Sun Feb 10 21:11:43 PST 2019; root:xnu-4903.250.336.0.1~12/RELEASE_ARM64_T8011
12.2 beta 4 Darwin Kernel Version 18.5.0: Sun Feb 24 21:35:34 PST 2019; root:xnu-4903.250.349~11/RELEASE_ARM64_T8011
12.2 beta 5 Darwin Kernel Version 18.5.0: Tue Mar 5 21:02:10 PST 2019; root:xnu-4903.253.2~2/RELEASE_ARM64_T8011
12.2 beta 6
12.2 Darwin Kernel Version 18.5.0: Wed Mar 13 15:19:12 PDT 2019; root:xnu-4903.253.2~6/RELEASE_ARM64_T8011
12.2.1
12.3 beta Darwin Kernel Version 18.6.0: Mon Mar 18 21:50:04 PDT 2019; root:xnu-4903.260.65.100.1~1/RELEASE_ARM64_T8011
12.3 beta 2 Darwin Kernel Version 18.6.0: Sun Mar 31 21:30:34 PDT 2019; root:xnu-4903.260.74~8/RELEASE_ARM64_T8011
12.3 beta 3 Darwin Kernel Version 18.6.0: Sun Apr 14 21:25:32 PDT 2019; root:xnu-4903.260.85.0.1~8/RELEASE_ARM64_T8011
12.3 beta 4 Darwin Kernel Version 18.6.0: Tue Apr 23 23:24:51 PDT 2019; root:xnu-4903.263.1~2/RELEASE_ARM64_T8011
12.3 beta 5 Darwin Kernel Version 18.6.0: Tue Apr 30 19:58:03 PDT 2019; root:xnu-4903.263.2~2/RELEASE_ARM64_T8011
12.3 Darwin Kernel Version 18.6.0: Thu Apr 25 21:37:28 PDT 2019; root:xnu-4903.263.2~1/RELEASE_ARM64_T8011
12.4 beta Darwin Kernel Version 18.6.0: Tue May 7 23:35:30 PDT 2019; root:xnu-4903.270.19.100.1~4/RELEASE_ARM64_T8011
12.4 beta 2 Darwin Kernel Version 18.7.0: Tue May 21 00:32:25 PDT 2019; root:xnu-4903.270.29~11/RELEASE_ARM64_T8011
12.4 beta 3 Darwin Kernel Version 18.7.0: Wed Jun 5 21:06:21 PDT 2019; root:xnu-4903.270.37~23/RELEASE_ARM64_T7000
12.4 Darwin Kernel Version 18.7.0: Fri Jun 21 21:27:27 PDT 2019; root:xnu-4903.270.47~5/RELEASE_ARM64_T8011
12.4.1 Darwin Kernel Version 18.7.0: Tue Aug 20 18:08:04 PDT 2019; root:xnu-4903.272.1~2/RELEASE_ARM64_T8011
13.0 beta Darwin Kernel Version 19.0.0: Sun May 19 23:55:32 PDT 2019; root:xnu-6041.0.0.110.11~6/RELEASE_ARM64_T8011
13.0 beta 2 Darwin Kernel Version 19.0.0: Sun Jun 9 19:16:47 PDT 2019; root:xnu-6110.0.0.120.8~6/RELEASE_ARM64_T8011
13.0 beta 3 Darwin Kernel Version 19.0.0: Thu Jun 27 20:05:00 PDT 2019; root:xnu-6153.0.13.133.2~1/RELEASE_ARM64_T8011
13.0 beta 4 Darwin Kernel Version 19.0.0: Mon Jul 8 20:54:51 PDT 2019; root:xnu-6153.0.59.143.1~1/RELEASE_ARM64_T8011
13.0 beta 5 Darwin Kernel Version 19.0.0: Tue Jul 23 22:35:32 PDT 2019; root:xnu-6153.0.103.153.1~1/RELEASE_ARM64_T8011
13.0 beta 6 Darwin Kernel Version 19.0.0: Tue Jul 30 22:41:20 PDT 2019; root:xnu-6153.0.127.0.1~12/RELEASE_ARM64_T8011
13.0 beta 7 Darwin Kernel Version 19.0.0: Sat Aug 10 12:48:26 PDT 2019; root:xnu-6153.0.155~6/RELEASE_ARM64_T8011
13.0 beta 8 Darwin Kernel Version 19.0.0: Sun Aug 18 22:22:03 PDT 2019; root:xnu-6153.0.166~12/RELEASE_ARM64_T8011
13.0 beta 9 Darwin Kernel Version 19.0.0: Mon Aug 26 23:13:32 PDT 2019; root:xnu-6153.2.1~13/RELEASE_ARM64_T8011
13.0 beta 10 Darwin Kernel Version 19.0.0: Thu Sep 5 00:24:55 PDT 2019; root:xnu-6153.2.3~3/RELEASE_ARM64_T8011
13.0 beta 11
(GM)
13.0 Darwin Kernel Version 19.0.0: Tue Sep 3 20:18:47 PDT 2019; root:xnu-6153.2.3~1/RELEASE_ARM64_T8011
13.2 beta Darwin Kernel Version 19.0.0: Sun Sep 22 21:42:10 PDT 2019; root:xnu-6153.40.121.0.1~21/RELEASE_ARM64_T8011
13.2 beta 2 Darwin Kernel Version 19.0.0: Wed Oct 2 23:37:22 PDT 2019; root:xnu-6153.40.150~10/RELEASE_ARM64_T8011
13.2 beta 3 Darwin Kernel Version 19.0.0: Thu Oct 10 23:15:41 PDT 2019; root:xnu-6153.43.1~2/RELEASE_ARM64_T8011
13.2 beta 4
13.2 Darwin Kernel Version 19.0.0: Wed Oct 9 22:27:14 PDT 2019; root:xnu-6153.43.1~1/RELEASE_ARM64_T8011
13.3 beta Darwin Kernel Version 19.2.0: Thu Oct 31 01:25:08 PDT 2019; root:xnu-6153.60.58.0.1~21/RELEASE_ARM64_T8011
13.3 beta 2 Darwin Kernel Version 19.2.0: Tue Nov 5 20:18:01 PST 2019; root:xnu-6153.60.66~44/RELEASE_ARM64_T8011
13.3 beta 3 Darwin Kernel Version 19.2.0: Tue Nov 12 21:28:08 PST 2019; root:xnu-6153.60.66~62/RELEASE_ARM64_T8011
13.3 beta 4
13.3 Darwin Kernel Version 19.2.0: Mon Nov 4 17:09:53 PST 2019; root:xnu-6153.60.66~31/RELEASE_ARM64_T8011
13.3.1 beta Darwin Kernel Version 19.3.0: Sun Dec 8 20:56:25 PST 2019; root:xnu-6153.80.8.0.1~11/RELEASE_ARM64_T8011
13.3.1 beta 2 Darwin Kernel Version 19.3.0: Thu Jan 9 21:40:41 PST 2020; root:xnu-6153.83.3~2/RELEASE_ARM64_T8011
13.3.1 beta 3
13.3.1 Darwin Kernel Version 19.3.0: Thu Jan 9 21:07:15 PST 2020; root:xnu-6153.83.3~1/RELEASE_ARM64_T8011
13.4 beta Darwin Kernel Version 19.4.0: Wed Jan 29 20:12:16 PST 2020; root:xnu-6153.100.178.0.1~36/RELEASE_ARM64_T8011
13.4 beta 2 Darwin Kernel Version 19.4.0: Sun Feb 9 22:50:24 PST 2020; root:xnu-6153.100.196~22/RELEASE_ARM64_T8011
13.4 beta 3 Darwin Kernel Version 19.4.0: Fri Feb 21 00:33:39 PST 2020; root:xnu-6153.103.2~4/RELEASE_ARM64_T8011
13.4 beta 4 Darwin Kernel Version 19.4.0: Wed Feb 26 00:20:50 PST 2020; root:xnu-6153.103.3~4/RELEASE_ARM64_T8011
13.4 beta 5 Darwin Kernel Version 19.4.0: Wed Feb 26 00:20:50 PST 2020; root:xnu-6153.103.3~4/RELEASE_ARM64_T8011
13.4 beta 6 Darwin Kernel Version 19.4.0: Mon Feb 24 21:41:10 PST 2020; root:xnu-6153.103.3~1/RELEASE_ARM64_T8011
13.4
13.4.5 beta Darwin Kernel Version 19.5.0: Sat Mar 21 05:53:24 PDT 2020; root:xnu-6153.120.15~23/RELEASE_ARM64_T8011
13.4.5 beta 2 Darwin Kernel Version 19.5.0: Sun Apr 5 21:47:54 PDT 2020; root:xnu-6153.120.27~18/RELEASE_ARM64_T8011
13.4.5 beta 3 Darwin Kernel Version 19.5.0: Sun Apr 19 22:19:20 PDT 2020; root:xnu-6153.120.31~12/RELEASE_ARM64_T8011
13.4.5 beta 4 Darwin Kernel Version 19.5.0: Wed Apr 29 21:21:47 PDT 2020; root:xnu-6153.123.1~2/RELEASE_ARM64_T8011
13.4.5 GM Darwin Kernel Version 19.5.0: Tue Apr 28 20:23:10 PDT 2020; root:xnu-6153.123.1~1/RELEASE_ARM64_T8011
13.4.5
13.4.6 Darwin Kernel Version 19.5.0: Tue May 26 21:01:26 PDT 2020; root:xnu-6153.123.2~1/RELEASE_ARM64_T8011
13.4.8 beta Darwin Kernel Version 19.6.0: Mon May 18 00:07:51 PDT 2020; root:xnu-6153.140.21~12/RELEASE_ARM64_T8011
13.4.8 beta 2 Darwin Kernel Version 19.6.0: Tue Jun 2 00:23:42 PDT 2020; root:xnu-6153.140.27.0.1~13/RELEASE_ARM64_T8011
13.4.8 beta 3 Darwin Kernel Version 19.6.0: Sun Jun 21 20:06:57 PDT 2020; root:xnu-6153.143.1~2/RELEASE_ARM64_T8011
13.4.8 GM Darwin Kernel Version 19.6.0: Fri Jun 26 21:16:40 PDT 2020; root:xnu-6153.143.1~3/RELEASE_ARM64_T8011
13.4.8
14.0 beta Darwin Kernel Version 20.0.0: Thu Jun 11 20:57:23 PDT 2020; root:xnu-7090.0.0.113.2~1/RELEASE_ARM64_T8010
14.0 beta 2 Darwin Kernel Version 20.0.0: Wed Jun 24 01:30:38 PDT 2020; root:xnu-7132.0.0.0.1~280/RELEASE_ARM64_T8010
14.0 beta 3 Darwin Kernel Version 20.0.0: Wed Jul 15 22:18:09 PDT 2020; root:xnu-7168.0.0.133.1~2/RELEASE_ARM64_T8010
14.0 beta 4 Darwin Kernel Version 20.0.0: Mon Jul 27 00:32:52 PDT 2020; root:xnu-7195.0.8.0.1~19/RELEASE_ARM64_T8010
14.0 beta 5 Darwin Kernel Version 20.0.0: Wed Aug 12 22:04:35 PDT 2020; root:xnu-7195.0.33~62/RELEASE_ARM64_T8010
14.0 beta 6 Darwin Kernel Version 20.0.0: Mon Aug 17 05:51:41 PDT 2020; root:xnu-7195.0.41~13/RELEASE_ARM64_T8010
14.0 beta 7 Darwin Kernel Version 20.0.0: Wed Aug 26 22:43:37 PDT 2020; root:xnu-7195.1.3~4/RELEASE_ARM64_T8010
14.0 beta 8
14.0 GM Darwin Kernel Version 20.0.0: Wed Aug 26 22:13:51 PDT 2020; root:xnu-7195.1.3~2/RELEASE_ARM64_T8010
14.0
14.0.1
14.0.2
14.2 beta Darwin Kernel Version 20.1.0: Fri Sep 11 18:37:57 PDT 2020; root:xnu-7195.40.84.172.1~1/RELEASE_ARM64_T8010
14.2 beta 2 Darwin Kernel Version 20.1.0: Sun Sep 20 23:08:44 PDT 2020; root:xnu-7195.40.113.0.2~19/RELEASE_ARM64_T8010
14.2 beta 3 Darwin Kernel Version 20.1.0: Tue Oct 6 23:53:58 PDT 2020; root:xnu-7195.40.141~33/RELEASE_ARM64_T8010
14.2 beta 4 Darwin Kernel Version 20.1.0: Tue Oct 13 07:28:42 PDT 2020; root:xnu-7195.40.143~15/RELEASE_ARM64_T8010
14.2 RC Darwin Kernel Version 20.1.0: Sun Oct 11 10:01:34 PDT 2020; root:xnu-7195.40.143~11/RELEASE_ARM64_T8010
14.2
14.3 beta Darwin Kernel Version 20.2.0: Sun Nov 1 21:47:57 PST 2020; root:xnu-7195.60.63~18/RELEASE_ARM64_T7000
14.3 beta 2 Darwin Kernel Version 20.2.0: Wed Nov 11 04:15:24 PST 2020; root:xnu-7195.63.1~2/RELEASE_ARM64_T8010
14.3 beta 3
14.3 RC Darwin Kernel Version 20.2.0: Thu Nov 12 21:59:12 PST 2020; root:xnu-7195.63.1~3/RELEASE_ARM64_T8010
14.3
14.4 beta Darwin Kernel Version 20.3.0: Sun Dec 6 21:38:52 PST 2020; root:xnu-7195.80.16~14/RELEASE_ARM64_T8010
14.4 beta 2 Darwin Kernel Version 20.3.0: Mon Jan 4 21:09:20 PST 2021; root:xnu-7195.80.30~7/RELEASE_ARM64_T8010
14.4 RC Darwin Kernel Version 20.3.0: Tue Jan 5 18:30:48 PST 2021; root:xnu-7195.80.35~1/RELEASE_ARM64_T8010
14.4
14.5 beta Darwin Kernel Version 20.4.0: Thu Jan 21 20:43:51 PST 2021; root:xnu-7195.100.296.113.1~1/RELEASE_ARM64_T8010
14.5 beta 2 Darwin Kernel Version 20.4.0: Sun Feb 7 16:40:23 PST 2021; root:xnu-7195.100.326.0.1~45/RELEASE_ARM64_T8010
14.5 beta 3 Darwin Kernel Version 20.4.0: Mon Feb 22 20:24:54 PST 2021; root:xnu-7195.100.354.133.1~1/RELEASE_ARM64_T8010
14.5 beta 4 Darwin Kernel Version 20.4.0: Thu Mar 4 20:20:05 PST 2021; root:xnu-7195.100.367~26/RELEASE_ARM64_T8010
14.5 beta 5
14.5 beta 6 Darwin Kernel Version 20.4.0: Thu Mar 25 02:55:05 PDT 2021; root:xnu-7195.100.367~84/RELEASE_ARM64_T8010
14.5 beta 7
14.5 RC Darwin Kernel Version 20.4.0: Sun Feb 28 20:46:56 PST 2021; root:xnu-7195.100.367~4/RELEASE_ARM64_T8010
14.5
14.6 beta Darwin Kernel Version 20.5.0: Thu Apr 15 00:07:18 PDT 2021; root:xnu-7195.120.38.0.1~33/RELEASE_ARM64_T8010
14.6 beta 2 Darwin Kernel Version 20.5.0: Fri Apr 23 15:45:25 PDT 2021; root:xnu-7195.120.53~15/RELEASE_ARM64_T8010
14.6 beta 3 Darwin Kernel Version 20.5.0: Tue May 4 20:17:12 PDT 2021; root:xnu-7195.123.1~2/RELEASE_ARM64_T8010
14.6 RC Darwin Kernel Version 20.5.0: Sat May 8 05:49:44 PDT 2021; root:xnu-7195.123.1~3/RELEASE_ARM64_T8010
14.6
14.7 beta Darwin Kernel Version 20.6.0: Sun May 9 21:50:22 PDT 2021; root:xnu-7195.140.13.0.1~17/RELEASE_ARM64_T8020
14.7 beta 2 Darwin Kernel Version 20.6.0: Sun May 23 18:15:34 PDT 2021; root:xnu-7195.140.22~16/RELEASE_ARM64_T8020
14.7 beta 3 Darwin Kernel Version 20.6.0: Sun Jun 6 22:04:49 PDT 2021; root:xnu-7195.140.29.0.1~18/RELEASE_ARM64_T8020
14.7 beta 4 Darwin Kernel Version 20.6.0: Sun Jun 20 22:14:35 PDT 2021; root:xnu-7195.140.39.0.1~12/RELEASE_ARM64_T8020
14.7 beta 5 Darwin Kernel Version 20.6.0: Mon Jun 28 22:42:25 PDT 2021; root:xnu-7195.140.42~27/RELEASE_ARM64_T8020
14.7 RC Darwin Kernel Version 20.6.0: Mon Jun 21 20:30:45 PDT 2021; root:xnu-7195.140.42~7/RELEASE_ARM64_T8020
14.7
15.0 beta Darwin Kernel Version 21.0.0: Sat May 22 02:45:51 PDT 2021; root:xnu-7938.0.0.113.1~2/RELEASE_ARM64_T8020
15.0 beta 2 Darwin Kernel Version 21.0.0: Thu Jun 17 18:47:37 PDT 2021; root:xnu-8011.0.0.123.2~1/RELEASE_ARM64_T8020
15.0 beta 3 Darwin Kernel Version 21.0.0: Mon Jul 5 02:47:43 PDT 2021; root:xnu-8019.0.46.0.4~12/RELEASE_ARM64_T8020
15.0 beta 4 Darwin Kernel Version 21.0.0: Mon Jul 19 20:09:00 PDT 2021; root:xnu-8019.0.72.143.1~1/RELEASE_ARM64_T8020
15.0 beta 5 Darwin Kernel Version 21.0.0: Tue Aug 3 20:56:40 PDT 2021; root:xnu-8019.10.7.153.1~1/RELEASE_ARM64_T8020
15.0 beta 6 Darwin Kernel Version 21.0.0: Thu Aug 12 20:39:38 PDT 2021; root:xnu-8019.13.1~12/RELEASE_ARM64_T8020
15.0 beta 7 Darwin Kernel Version 21.0.0: Tue Aug 17 00:45:58 PDT 2021; root:xnu-8019.13.3~6/RELEASE_ARM64_T8020
15.0 beta 8
15.0 beta 9
15.0 RC Darwin Kernel Version 21.0.0: Mon Aug 16 22:08:53 PDT 2021; root:xnu-8019.13.3~7/RELEASE_ARM64_T8020
15.0
15.1 beta Darwin Kernel Version 21.1.0: Sun Sep 5 23:26:25 PDT 2021; root:xnu-8019.40.67~11/RELEASE_ARM64_T8020
15.1 beta 2 Darwin Kernel Version 21.1.0: Tue Sep 21 01:50:01 PDT 2021; root:xnu-8019.40.86~7/RELEASE_ARM64_T8020
15.1 beta 3 Darwin Kernel Version 21.1.0: Wed Sep 29 22:39:24 PDT 2021; root:xnu-8019.40.96.0.2~7/RELEASE_ARM64_T8020
15.1 beta 4 Darwin Kernel Version 21.1.0: Wed Oct 6 15:35:38 PDT 2021; root:xnu-8019.40.98.0.1~39/RELEASE_ARM64_T8020
15.1 RC Darwin Kernel Version 21.1.0: Wed Oct 13 19:14:50 PDT 2021; root:xnu-8019.43.1~1/RELEASE_ARM64_T8020
15.1
15.1.1
15.2 beta Darwin Kernel Version 21.2.0: Tue Oct 19 21:56:56 PDT 2021; root:xnu-8019.60.40.0.1~24/RELEASE_ARM64_T8020
15.2 beta 2 Darwin Kernel Version 21.2.0: Sun Oct 31 18:30:44 PDT 2021; root:xnu-8019.60.58~7/RELEASE_ARM64_T8020
15.2 beta 3 Darwin Kernel Version 21.2.0: Wed Nov 10 21:26:52 PST 2021; root:xnu-8019.60.69~5/RELEASE_ARM64_T8020
15.2 beta 4 Darwin Kernel Version 21.2.0: Mon Nov 15 23:46:22 PST 2021; root:xnu-8019.63.1~2/RELEASE_ARM64_T8020
15.2 RC Darwin Kernel Version 21.2.0: Sun Nov 28 20:45:10 PST 2021; root:xnu-8019.63.2~1/RELEASE_ARM64_T8020
15.2
15.3 beta Darwin Kernel Version 21.3.0: Sat Dec 4 02:06:39 PST 2021; root:xnu-8019.80.11~21/RELEASE_ARM64_T8020
15.3 beta 2 Darwin Kernel Version 21.3.0: Mon Jan 3 23:08:32 PST 2022; root:xnu-8019.80.24~13/RELEASE_ARM64_T8020
15.3 RC Darwin Kernel Version 21.3.0: Fri Jan 7 22:03:16 PST 2022; root:xnu-8019.80.24~27/RELEASE_ARM64_T8020
15.3
15.4 beta Darwin Kernel Version 21.4.0: Sun Jan 16 19:19:10 PST 2022; root:xnu-8020.100.406.0.1~7/RELEASE_ARM64_T8020
15.4 beta 2 Darwin Kernel Version 21.4.0: Mon Jan 31 20:38:04 PST 2022; root:xnu-8020.100.417.123.1~1/RELEASE_ARM64_T8020
15.4 beta 3 Darwin Kernel Version 21.4.0: Mon Feb 7 20:32:05 PST 2022; root:xnu-8020.100.429.133.1~1/RELEASE_ARM64_T8020
15.4 beta 4 Darwin Kernel Version 21.4.0: Wed Feb 16 20:47:16 PST 2022; root:xnu-8020.103.2~2/RELEASE_ARM64_T8020
15.4 beta 5 Darwin Kernel Version 21.4.0: Tue Feb 22 22:21:55 PST 2022; root:xnu-8020.103.4~1/RELEASE_ARM64_T8020
15.4 RC Darwin Kernel Version 21.4.0: Tue Feb 22 22:32:16 PST 2022; root:xnu-8020.103.4~2/RELEASE_ARM64_T8020
15.4
15.4.1
15.5 beta Darwin Kernel Version 21.5.0: Sun Mar 27 19:52:44 PDT 2022; root:xnu-8020.120.43.0.5~12/RELEASE_ARM64_T8020
15.5 beta 2 Darwin Kernel Version 21.5.0: Mon Apr 11 20:55:12 PDT 2022; root:xnu-8020.120.51.123.1~1/RELEASE_ARM64_T8020
15.5 beta 3 Darwin Kernel Version 21.5.0: Mon Apr 18 21:36:35 PDT 2022; root:xnu-8020.120.68.133.1~1/RELEASE_ARM64_T8020
15.5 beta 4 Darwin Kernel Version 21.5.0: Sun Apr 24 22:56:22 PDT 2022; root:xnu-8020.123.1~2/RELEASE_ARM64_T8020
15.5 RC Darwin Kernel Version 21.5.0: Thu Apr 21 21:23:36 PDT 2022; root:xnu-8020.123.1~1/RELEASE_ARM64_T8020
15.5
15.5.1
15.6 beta Darwin Kernel Version 21.6.0: Sun May 8 17:57:58 PDT 2022; root:xnu-8020.140.20.0.4~13/RELEASE_ARM64_T8020
15.6 beta 2 Darwin Kernel Version 21.6.0: Sun May 22 18:56:08 PDT 2022; root:xnu-8020.140.30~7/RELEASE_ARM64_T8020
15.6 beta 3 Darwin Kernel Version 21.6.0: Sun Jun 5 16:17:13 PDT 2022; root:xnu-8020.140.36~28/RELEASE_ARM64_T8020
15.6 beta 4 Darwin Kernel Version 21.6.0: Sun Jun 19 22:10:05 PDT 2022; root:xnu-8020.140.41~7/RELEASE_ARM64_T8020
15.6 beta 5
15.6 RC Darwin Kernel Version 21.6.0: Sat Jun 18 18:46:10 PDT 2022; root:xnu-8020.140.41~3/RELEASE_ARM64_T8020
15.6
16.0 beta Darwin Kernel Version 22.0.0: Sat May 21 00:46:04 PDT 2022; root:xnu-8792.0.50.113.2~2/RELEASE_ARM64_T8020
16.0 beta 2 Darwin Kernel Version 22.0.0: Thu Jun 9 23:56:47 PDT 2022; root:xnu-8792.0.92.0.4~68/RELEASE_ARM64_T8020
16.0 beta 3 Darwin Kernel Version 22.0.0: Fri Jun 24 19:01:34 PDT 2022; root:xnu-8792.0.134.0.1~9/RELEASE_ARM64_T8020
16.0 beta 4 Darwin Kernel Version 22.0.0: Mon Jul 18 20:39:40 PDT 2022; root:xnu-8792.0.188.143.1~1/RELEASE_ARM64_T8020
16.0 beta 5 Darwin Kernel Version 22.0.0: Sat Jul 30 20:13:09 PDT 2022; root:xnu-8792.3.4~6/RELEASE_ARM64_T8020
16.0 beta 6 Darwin Kernel Version 22.0.0: Thu Aug 11 23:19:07 PDT 2022; root:xnu-8792.3.9~3/RELEASE_ARM64_T8020
16.0 beta 7
16.0 RC Darwin Kernel Version 22.0.0: Thu Aug 11 19:34:50 PDT 2022; root:xnu-8792.3.9~1/RELEASE_ARM64_T8020
16.0
16.1 beta Darwin Kernel Version 22.1.0: Wed Sep 7 19:41:34 PDT 2022; root:xnu-8792.40.93~30/RELEASE_ARM64_T8020
16.1 beta 2 Darwin Kernel Version 22.1.0: Sun Sep 11 18:53:55 PDT 2022; root:xnu-8792.40.101.0.1~11/RELEASE_ARM64_T8020
16.1 beta 3 Darwin Kernel Version 22.1.0: Sun Sep 18 23:50:25 PDT 2022; root:xnu-8792.40.108.0.1~51/RELEASE_ARM64_T8020
16.1 beta 4 Darwin Kernel Version 22.1.0: Mon Sep 26 23:01:44 PDT 2022; root:xnu-8792.43.3~4/RELEASE_ARM64_T8020
16.1 beta 5
16.1 RC Darwin Kernel Version 22.1.0: Thu Sep 29 23:20:00 PDT 2022; root:xnu-8792.43.3~6/RELEASE_ARM64_T8020
16.1
16.2 beta Darwin Kernel Version 22.2.0: Sun Oct 16 17:18:48 PDT 2022; root:xnu-8792.60.32.0.1~7/RELEASE_ARM64_T8110

watchOS

Version Build Comment
1.0 ?
1.0.1 ?
2.0 beta ?
2.0 beta 2 ?
2.0 beta 3 ?
2.0 beta 4 ?
2.0 beta 5 ?
2.0 GM ?
2.0 ?
2.0.1 ?
2.1 Darwin Kernel Version 15.0.0: Fri Nov 13 21:52:12 PST 2015; root:xnu-3248.22.2~1/RELEASE_ARM_S7002
2.2 beta ?
2.2 beta 2 ?
2.2 beta 3 ?
2.2 beta 4 ?
2.2 beta 5 ?
2.2 beta 6 ?
2.2 ?
2.2.1 beta ?
2.2.1 beta 2 ?
2.2.1 ?
2.2.2 beta ?
2.2.2 ?
3.0 beta Darwin Kernel Version 16.0.0: Fri May 27 20:55:06 PDT 2016; root:xnu-3705.0.0.4.1~2/RELEASE_ARM_S7002
3.0 beta 2 Darwin Kernel Version 16.0.0: Tue Jun 28 20:38:18 PDT 2016; root:xnu-3757~290/RELEASE_ARM_S7002
3.0 beta 3 Darwin Kernel Version 16.0.0: Sat Jul 9 22:23:52 PDT 2016; root:xnu-3777.0.0.0.1~25/RELEASE_ARM_S7002
3.0 beta 4 Darwin Kernel Version 16.0.0: Mon Jul 25 21:11:25 PDT 2016; root:xnu-3789.1.4.0.2~33/RELEASE_ARM_S7002
3.0 beta 5 Darwin Kernel Version 16.0.0: Fri Aug 5 23:44:38 PDT 2016; root:xnu-3789.1.24~19/RELEASE_ARM_S7002
3.0 beta 6 Darwin Kernel Version 16.0.0: Wed Aug 10 22:08:30 PDT 2016; root:xnu-3789.4.1~4/RELEASE_ARM_S7002
3.0 GM Darwin Kernel Version 16.0.0: Wed Aug 10 22:09:28 PDT 2016; root:xnu-3789.4.1~5/RELEASE_ARM_S7002
3.0
3.1 beta Darwin Kernel Version 16.1.0: Wed Sep 14 16:51:25 PDT 2016; root:xnu-3789.20.44~55/RELEASE_ARM_S7002
3.1 beta 2 Darwin Kernel Version 16.1.0: Thu Sep 29 21:41:00 PDT 2016; root:xnu-3789.24.3~2/RELEASE_ARM_S7002
3.1 beta 3 Darwin Kernel Version 16.1.0: Wed Oct 5 13:48:36 PDT 2016; root:xnu-3789.24.6~3/RELEASE_ARM_S7002
3.1
3.1.1 beta Darwin Kernel Version 16.3.0: Mon Oct 24 06:30:54 PDT 2016; root:xnu-3789.30.76~10/RELEASE_ARM_S7002
3.1.1 beta 2 Darwin Kernel Version 16.3.0: Wed Nov 2 00:14:07 PDT 2016; root:xnu-3789.30.86~56/RELEASE_ARM_S7002
3.1.1 beta 3 Darwin Kernel Version 16.3.0: Mon Nov 7 22:42:25 PST 2016; root:xnu-3789.30.92~37/RELEASE_ARM_S7002
3.1.1 beta 4 Darwin Kernel Version 16.3.0: Mon Nov 7 20:45:24 PST 2016; root:xnu-3789.30.92~35/RELEASE_ARM_S7002
3.1.1 beta 5 Darwin Kernel Version 16.3.0: Tue Nov 29 20:52:43 PST 2016; root:xnu-3789.34.1~1/RELEASE_ARM_S7002
3.1.1
3.1.3 beta Darwin Kernel Version 16.3.0: Fri Dec 16 20:32:37 PST 2016; root:xnu-3789.44.3~1/RELEASE_ARM_S7002
3.1.3 beta 2
3.1.3
3.2 beta Darwin Kernel Version 16.5.0: Fri Jan 20 18:35:18 PST 2017; root:xnu-3789.50.189.1.1~1/RELEASE_ARM_S7002
3.2 beta 2 Darwin Kernel Version 16.5.0: Tue Jan 31 21:15:01 PST 2017; root:xnu-3789.50.195.1.1~4\/RELEASE_ARM_S7002
3.2 beta 3 Darwin Kernel Version 16.5.0: Fri Feb 10 17:22:40 PST 2017; root:xnu-3789.50.208~43\/RELEASE_ARM_S7002
3.2 beta 4 Darwin Kernel Version 16.5.0: Wed Feb 22 22:55:53 PST 2017; root:xnu-3789.54.1~2\/RELEASE_ARM_S7002
3.2 beta 5
3.2 beta 6
3.2 beta 7
3.2 Darwin Kernel Version 16.5.0: Wed Feb 22 22:46:40 PST 2017; root:xnu-3789.54.1~1\/RELEASE_ARM_S7002
3.2.2 beta Darwin Kernel Version 16.6.0: Wed Mar 22 21:53:05 PDT 2017; root:xnu-3789.60.12~18/RELEASE_ARM_S7002
3.2.2 beta 2 Darwin Kernel Version 16.6.0: Tue Apr 4 20:50:08 PDT 2017; root:xnu-3789.60.15~11/RELEASE_ARM_S7002
3.2.2 beta 3 Darwin Kernel Version 16.6.0: Tue Apr 11 22:14:30 PDT 2017; root:xnu-3789.60.20~14/RELEASE_ARM_S7002
3.2.2 beta 4 Darwin Kernel Version 16.6.0: Mon Apr 17 22:18:35 PDT 2017; root:xnu-3789.60.24~29/RELEASE_ARM_S7002
3.2.2 Darwin Kernel Version 16.6.0: Mon Apr 17 21:59:15 PDT 2017; root:xnu-3789.60.24~28/RELEASE_ARM_T8002
3.2.3 beta Darwin Kernel Version 16.7.0: Mon May 8 22:29:40 PDT 2017; root:xnu-3789.70.9~14/RELEASE_ARM_T8002
3.2.3 beta 2 Darwin Kernel Version 16.7.0: Wed May 24 22:30:43 PDT 2017; root:xnu-3789.70.11~8/RELEASE_ARM_T8002
3.2.3 beta 3 Darwin Kernel Version 16.7.0: Tue Jun 6 22:27:06 PDT 2017; root:xnu-3789.70.15~8/RELEASE_ARM_T8002
3.2.3 beta 4 Darwin Kernel Version 16.7.0: Sun Jun 18 22:37:12 PDT 2017; root:xnu-3789.70.16~7/RELEASE_ARM_T8002
3.2.3 Darwin Kernel Version 16.7.0: Thu Jun 15 17:55:31 PDT 2017; root:xnu-3789.70.16~3/RELEASE_ARM_T8002
4.0 beta Darwin Kernel Version 17.0.0: Mon May 29 22:53:03 PDT 2017; root:xnu-4397.0.0.4.3~1/RELEASE_ARM_T8002
4.0 beta 2 Darwin Kernel Version 17.0.0: Tue Jun 13 23:21:58 PDT 2017; root:xnu-4481.0.0.4.1~8/RELEASE_ARM_S7002
4.0 beta 3 Darwin Kernel Version 17.0.0: Tue Jul 11 19:12:07 PDT 2017; root:xnu-4532.0.0.4.1~2/RELEASE_ARM_T8002
4.0 beta 4 Darwin Kernel Version 17.0.0: Thu Jul 20 21:20:01 PDT 2017; root:xnu-4556.0.0.4.1~2/RELEASE_ARM_T8002
4.0 beta 5 Darwin Kernel Version 17.0.0: Tue Aug 1 21:26:55 PDT 2017; root:xnu-4570.1.24.4.2~1/RELEASE_ARM_T8002
4.0 beta 6 Darwin Kernel Version 17.0.0: Wed Aug 9 00:22:35 PDT 2017; root:xnu-4570.4.2~4/RELEASE_ARM_T8002
4.0 beta 7
4.0 beta 8 Darwin Kernel Version 17.0.0: Fri Aug 25 01:42:56 PDT 2017; root:xnu-4570.4.7~3/RELEASE_ARM_T8002
4.0 GM Darwin Kernel Version 17.0.0: Fri Aug 25 01:26:48 PDT 2017; root:xnu-4570.4.7~1/RELEASE_ARM_T8002
4.0
4.0.1 Darwin Kernel Version 17.0.0: Fri Aug 25 01:32:43 PDT 2017; root:xnu-4570.4.7~2/RELEASE_ARM_T8004
4.1 beta Darwin Kernel Version 17.2.0: Sun Sep 17 22:49:35 PDT 2017; root:xnu-4570.20.55~13/RELEASE_ARM_T8004
4.1 beta 2 Darwin Kernel Version 17.2.0: Sat Sep 30 22:38:39 PDT 2017; root:xnu-4570.20.62~8/RELEASE_ARM_T8004
4.1 beta 3
4.1 beta 4 Darwin Kernel Version 17.2.0: Fri Sep 29 18:03:18 PDT 2017; root:xnu-4570.20.62~2/RELEASE_ARM_T8004
4.1
4.2 beta Darwin Kernel Version 17.3.0: Wed Oct 25 18:59:46 PDT 2017; root:xnu-4570.30.79~21/RELEASE_ARM_T8004
4.2 beta 2 Darwin Kernel Version 17.3.0: Sun Oct 29 15:21:33 PDT 2017; root:xnu-4570.30.85~15/RELEASE_ARM_T8004
4.2 beta 3 Darwin Kernel Version 17.3.0: Mon Nov 6 22:48:06 PST 2017; root:xnu-4570.34.1~2/RELEASE_ARM_T8004
4.2 beta 4
4.2 Darwin Kernel Version 17.3.0: Mon Nov 6 21:35:46 PST 2017; root:xnu-4570.34.1~1/RELEASE_ARM_T8004
4.2.2 beta Darwin Kernel Version 17.4.0: Wed Dec 6 19:55:17 PST 2017; root:xnu-4570.44.4~1/RELEASE_ARM_T8004
4.2.2 beta 2 Darwin Kernel Version 17.4.0: Wed Dec 13 21:53:36 PST 2017; root:xnu-4570.44.5~2/RELEASE_ARM_T8004
4.2.2 beta 3
4.2.2 beta 4
4.2.2 beta 5 Darwin Kernel Version 17.4.0: Sun Dec 10 23:29:11 PST 2017; root:xnu-4570.44.5~1/RELEASE_ARM_T8004
4.2.2
4.2.3
4.3 beta Darwin Kernel Version 17.5.0: Fri Jan 12 23:15:54 PST 2018; root:xnu-4570.50.243~6/RELEASE_ARM_T8004
4.3 beta 2 Darwin Kernel Version 17.5.0: Fri Jan 26 22:09:02 PST 2018; root:xnu-4570.50.257~4/RELEASE_ARM_T8004
4.3 beta 3 Darwin Kernel Version 17.5.0: Sat Feb 10 17:49:34 PST 2018; root:xnu-4570.50.279~10/RELEASE_ARM_T8004
4.3 beta 4 Darwin Kernel Version 17.5.0: Sat Feb 24 20:28:09 PST 2018; root:xnu-4570.50.294~6/RELEASE_ARM_T8004
4.3 beta 5 Darwin Kernel Version 17.5.0: Tue Mar 6 20:40:49 PST 2018; root:xnu-4570.54.2~1/RELEASE_ARM_T8004
4.3 beta 6
4.3 Darwin Kernel Version 17.5.0: Tue Mar 13 21:28:26 PDT 2018; root:xnu-4570.54.2~5/RELEASE_ARM_T8004
4.3.1 beta Darwin Kernel Version 17.5.0: Sun Mar 25 20:42:41 PDT 2018; root:xnu-4570.60.10.0.1~15/RELEASE_ARM_T8004
4.3.1 beta 2 Darwin Kernel Version 17.6.0: Thu Apr 5 21:59:02 PDT 2018; root:xnu-4570.60.16~7/RELEASE_ARM_T8004
4.3.1 beta 3 Darwin Kernel Version 17.6.0: Sun Apr 22 20:53:35 PDT 2018; root:xnu-4570.60.19~31/RELEASE_ARM_T8004
4.3.1 beta 4 Darwin Kernel Version 17.6.0: Tue May 1 20:17:20 PDT 2018; root:xnu-4570.60.21~11/RELEASE_ARM_T8004
4.3.1 beta 5
4.3.1 Darwin Kernel Version 17.6.0: Mon Apr 30 18:46:56 PDT 2018; root:xnu-4570.60.21~2/RELEASE_ARM_T8004
4.3.2 beta Darwin Kernel Version 17.7.0: Mon May 21 19:11:36 PDT 2018; root:xnu-4570.70.14~15/RELEASE_ARM_T8004
4.3.2 beta 2 Darwin Kernel Version 17.7.0: Sun Jun 3 20:17:14 PDT 2018; root:xnu-4570.70.19~11/RELEASE_ARM_T8004
4.3.2 beta 3 Darwin Kernel Version 17.7.0: Tue Jun 12 20:40:24 PDT 2018; root:xnu-4570.70.24~10/RELEASE_ARM_T8004
4.3.2 Darwin Kernel Version 17.7.0: Mon Jun 11 17:57:06 PDT 2018; root:xnu-4570.70.24~1/RELEASE_ARM_T8004
5.0 beta Darwin Kernel Version 18.0.0: Fri May 25 20:57:45 PDT 2018; root:xnu-4903.200.199.14.6~1/RELEASE_ARM_T8004
5.0 beta 2 Darwin Kernel Version 18.0.0: Sun Jun 10 21:03:33 PDT 2018; root:xnu-4903.200.249~10/RELEASE_ARM_T8004
5.0 beta 3 Darwin Kernel Version 18.0.0: Mon Jun 25 21:48:47 PDT 2018; root:xnu-4903.200.274.0.2~48/RELEASE_ARM_T8004
5.0 beta 4 Darwin Kernel Version 18.0.0: Tue Jul 10 23:32:58 PDT 2018; root:xnu-4903.200.304.44.2~1/RELEASE_ARM_T8004
5.0 beta 5 Darwin Kernel Version 18.0.0: Tue Jul 24 23:01:44 PDT 2018; root:xnu-4903.200.327.54.1~2/RELEASE_ARM_T8004
5.0 beta 6 Darwin Kernel Version 18.0.0: Wed Aug 1 20:49:25 PDT 2018; root:xnu-4903.200.342.64.2~2/RELEASE_ARM_T8004
5.0 beta 7 Darwin Kernel Version 18.0.0: Wed Aug 8 21:59:00 PDT 2018; root:xnu-4903.204.1~3/RELEASE_ARM_T8004
5.0 beta 8 Darwin Kernel Version 18.0.0: Tue Aug 14 22:18:32 PDT 2018; root:xnu-4903.204.3~3/RELEASE_ARM_T8004
5.0 beta 9
5.0 beta 10
5.0 GM Darwin Kernel Version 18.0.0: Tue Aug 14 21:56:31 PDT 2018; root:xnu-4903.204.3~1/RELEASE_ARM64_T8006
5.0
5.0.1
5.1 beta Darwin Kernel Version 18.2.0: Mon Sep 10 20:59:02 PDT 2018; root:xnu-4903.220.42~11/RELEASE_ARM64_T8006
5.1 beta 2 Darwin Kernel Version 18.2.0: Sun Sep 23 20:12:06 PDT 2018; root:xnu-4903.220.48~39/RELEASE_ARM64_T8006
5.1 beta 3 Darwin Kernel Version 18.2.0: Wed Oct 3 00:33:30 PDT 2018; root:xnu-4903.220.53~15/RELEASE_ARM64_T8006
5.1 beta 4 Darwin Kernel Version 18.2.0: Tue Oct 9 19:15:54 PDT 2018; root:xnu-4903.224.2~3/RELEASE_ARM64_T8006
5.1 beta 5
5.1 Darwin Kernel Version 18.2.0: Mon Oct 8 08:09:42 PDT 2018; root:xnu-4903.224.2~2/RELEASE_ARM64_T8006
5.1.1
5.1.2 beta Darwin Kernel Version 18.2.0: Sat Nov 3 03:36:16 PDT 2018; root:xnu-4903.234.1~4/RELEASE_ARM64_T8006
5.1.2 beta 2 Darwin Kernel Version 18.2.0: Mon Nov 12 21:27:01 PST 2018; root:xnu-4903.234.2~3/RELEASE_ARM64_T8006
5.1.2 Darwin Kernel Version 18.2.0: Mon Nov 12 20:34:47 PST 2018; root:xnu-4903.234.2~2/RELEASE_ARM64_T8006
5.1.3 beta Darwin Kernel Version 18.2.0: Sat Dec 1 01:27:09 PST 2018; root:xnu-4903.234.2~7/RELEASE_ARM64_T8006
5.1.3 beta 2 Darwin Kernel Version 18.2.0: Tue Dec 11 02:51:50 PST 2018; root:xnu-4903.234.2~8/RELEASE_ARM64_T8006
5.1.3 beta 3 Darwin Kernel Version 18.2.0: Wed Dec 19 22:21:22 PST 2018; root:xnu-4903.244.1~2/RELEASE_ARM64_T8006
5.1.3 Darwin Kernel Version 18.2.0: Wed Dec 19 20:46:08 PST 2018; root:xnu-4903.244.1~1/RELEASE_ARM64_T8006
5.2 beta Darwin Kernel Version 18.5.0: Sun Jan 13 20:57:15 PST 2019; root:xnu-4903.250.305~9/RELEASE_ARM64_T8006
5.2 beta 2 Darwin Kernel Version 18.5.0: Wed Jan 30 18:09:30 PST 2019; root:xnu-4903.250.319~59/RELEASE_ARM64_T8006
5.2 beta 3 Darwin Kernel Version 18.5.0: Sun Feb 10 21:35:34 PST 2019; root:xnu-4903.250.336.0.1~13/RELEASE_ARM64_T8006
5.2 beta 4 Darwin Kernel Version 18.5.0: Sun Feb 24 21:23:01 PST 2019; root:xnu-4903.250.349~9/RELEASE_ARM64_T8006
5.2 beta 5 Darwin Kernel Version 18.5.0: Tue Mar 5 21:52:47 PST 2019; root:xnu-4903.254.2~3/RELEASE_ARM64_T8006
5.2 beta 6
5.2 Darwin Kernel Version 18.5.0: Tue Mar 5 21:36:00 PST 2019; root:xnu-4903.254.2~2/RELEASE_ARM64_T8006
5.2.1 beta Darwin Kernel Version 18.5.0: Mon Mar 18 21:54:15 PDT 2019; root:xnu-4903.254.2.100.1~1/RELEASE_ARM64_T8006
5.2.1 beta 2 Darwin Kernel Version 18.5.0: Sat Mar 30 16:57:51 PDT 2019; root:xnu-4903.264.5~2/RELEASE_ARM64_T8006
5.2.1 beta 3 Darwin Kernel Version 18.5.0: Sat Apr 13 18:46:16 PDT 2019; root:xnu-4903.264.8~11/RELEASE_ARM64_T8006
5.2.1 beta 4 Darwin Kernel Version 18.5.0: Fri Apr 26 00:12:16 PDT 2019; root:xnu-4903.264.10~2/RELEASE_ARM64_T8006
5.2.1 beta 5
5.2.1 Darwin Kernel Version 18.5.0: Thu Apr 25 22:05:43 PDT 2019; root:xnu-4903.264.10~1/RELEASE_ARM64_T8006
5.3 beta Darwin Kernel Version 18.5.0: Tue May 7 23:34:58 PDT 2019; root:xnu-4903.274.1.100.2~1/RELEASE_ARM64_T8006
5.3 beta 2 Darwin Kernel Version 18.5.0: Tue May 21 00:41:15 PDT 2019; root:xnu-4903.274.4~3/RELEASE_ARM64_T8006
5.3 beta 3 Darwin Kernel Version 18.5.0: Wed Jun 5 20:55:53 PDT 2019; root:xnu-4903.274.6~5/RELEASE_ARM64_T8006
5.3 beta 4 Darwin Kernel Version 18.5.0: Fri Jun 14 21:12:03 PDT 2019; root:xnu-4903.274.8~3/RELEASE_ARM64_T8006
5.3 beta 5
5.3 beta 6
5.3 Darwin Kernel Version 18.5.0: Fri Jun 21 21:48:59 PDT 2019; root:xnu-4903.274.8~4/RELEASE_ARM64_T8006
5.3.1
5.3.2
5.3.3
5.3.4
5.3.5
5.3.6
5.3.7
5.3.8
5.3.9 Darwin Kernel Version 18.5.0: Thu Oct 29 23:20:44 PDT 2020; root:xnu-4903.274.10~1/RELEASE_ARM64_T8006
6.0 beta Darwin Kernel Version 19.0.0: Fri May 24 21:03:15 PDT 2019; root:xnu-6041.0.0.114.3~3/RELEASE_ARM64_T8006
6.0 beta 2 Darwin Kernel Version 19.0.0: Sun Jun 9 19:10:47 PDT 2019; root:xnu-6110.0.0.120.8~4/RELEASE_ARM64_T8006
6.0 beta 3 Darwin Kernel Version 19.0.0: Thu Jun 27 20:00:23 PDT 2019; root:xnu-6153.0.13.134.2~1/RELEASE_ARM64_T8006
6.0 beta 4 Darwin Kernel Version 19.0.0: Mon Jul 8 20:46:31 PDT 2019; root:xnu-6153.0.59.144.1~1/RELEASE_ARM64_T8006
6.0 beta 5 Darwin Kernel Version 19.0.0: Tue Jul 23 23:58:58 PDT 2019; root:xnu-6153.0.103.154.2~2/RELEASE_ARM64_T8006
6.0 beta 6 Darwin Kernel Version 19.0.0: Wed Jul 31 00:10:42 PDT 2019; root:xnu-6153.0.103.8~5/RELEASE_ARM64_T8006
6.0 beta 7 Darwin Kernel Version 19.0.0: Fri Aug 9 23:24:40 PDT 2019; root:xnu-6153.4.3~3/RELEASE_ARM64_T8006
6.0 beta 8
6.0 beta 9
6.0 GM Darwin Kernel Version 19.0.0: Wed Aug 21 22:55:07 PDT 2019; root:xnu-6153.4.3~14/RELEASE_ARM64_T8006
6.0
6.0.1 Darwin Kernel Version 19.0.0: Thu Sep 12 20:03:35 PDT 2019; root:xnu-6153.4.4~1/RELEASE_ARM64_T8006
6.1 beta Darwin Kernel Version 19.0.0: Thu Sep 19 19:48:28 PDT 2019; root:xnu-6153.40.109.100.1~2/RELEASE_ARM64_T8006
6.1 beta 2 Darwin Kernel Version 19.0.0: Wed Sep 25 21:10:15 PDT 2019; root:xnu-6153.40.121.124.3~1/RELEASE_ARM64_T8006
6.1 beta 3 Darwin Kernel Version 19.0.0: Thu Oct 3 18:04:31 PDT 2019; root:xnu-6153.40.150~16/RELEASE_ARM64_T8006
6.1 beta 4 Darwin Kernel Version 19.0.0: Thu Oct 10 19:34:06 PDT 2019; root:xnu-6153.44.3~2/RELEASE_ARM64_T8006
6.1 beta 5
6.1 ?
6.1.1 beta Darwin Kernel Version 19.2.0: Thu Oct 31 01:24:54 PDT 2019; root:xnu-6153.60.58.0.1~20/RELEASE_ARM64_T8006
6.1.1 beta 2 ?
6.1.1 beta 3 ?
6.1.1 beta 4 ?
6.1.1 ?
6.1.2 beta Darwin Kernel Version 19.2.0: Sat Dec 7 01:55:35 PST 2019; root:xnu-6153.60.66~69\/RELEASE_ARM_T8004
6.1.2 beta 2 ?
6.1.2 beta 3 Darwin Kernel Version 19.2.0: Thu Jan 9 22:25:17 PST 2020; root:xnu-6153.84.8~2\/RELEASE_ARM64_T8006
6.1.2 Darwin Kernel Version 19.2.0: Thu Jan 9 21:36:37 PST 2020; root:xnu-6153.84.8~1\/RELEASE_ARM64_T8006
6.1.3
6.2 beta Darwin Kernel Version 19.4.0: Wed Jan 29 20:09:48 PST 2020; root:xnu-6153.100.178.101.1~2\/RELEASE_ARM64_T8006
6.2 beta 2 Darwin Kernel Version 19.4.0: Sun Feb 9 22:42:18 PST 2020; root:xnu-6153.100.196~23\/RELEASE_ARM64_T8006
6.2 beta 3 Darwin Kernel Version 19.4.0: Thu Feb 20 02:34:41 PST 2020; root:xnu-6153.104.2~4\/RELEASE_ARM_T8004
6.2 beta 4 Darwin Kernel Version 19.4.0: Wed Feb 26 00:17:23 PST 2020; root:xnu-6153.104.3~6\/RELEASE_ARM_T8004
6.2 beta 5 Darwin Kernel Version 19.4.0: Wed Feb 26 00:17:15 PST 2020; root:xnu-6153.104.3~6\/RELEASE_ARM64_T8006
6.2 beta 6 Darwin Kernel Version 19.4.0: Mon Feb 24 21:50:01 PST 2020; root:xnu-6153.104.3~1\/RELEASE_ARM64_T8006
6.2
6.2.1
6.2.5 beta Darwin Kernel Version 19.4.0: Sat Mar 21 00:55:54 PDT 2020; root:xnu-6153.124.6~6\/RELEASE_ARM64_T8006
6.2.5 beta 2 Darwin Kernel Version 19.4.0: Sun Apr 5 22:46:00 PDT 2020; root:xnu-6153.124.11~5\/RELEASE_ARM64_T8006
6.2.5 beta 3 Darwin Kernel Version 19.5.0: Thu Apr 23 21:04:53 PDT 2020; root:xnu-6153.124.16~2\/RELEASE_ARM64_T8006
6.2.5 beta 4 Darwin Kernel Version 19.5.0: Wed Apr 29 08:07:32 PDT 2020; root:xnu-6153.124.16~3\/RELEASE_ARM64_T8006
6.2.5 beta 5 Darwin Kernel Version 19.5.0: Thu Apr 23 20:12:10 PDT 2020; root:xnu-6153.124.16~1\/RELEASE_ARM_T8004
6.2.5
6.2.6 Darwin Kernel Version 19.5.0: Tue May 26 21:33:45 PDT 2020; root:xnu-6153.124.17~1\/RELEASE_ARM_T8004
6.2.8 beta Darwin Kernel Version 19.6.0: Mon May 18 01:46:51 PDT 2020; root:xnu-6153.144.15~4\/RELEASE_ARM_T8004
6.2.8 beta 2 Darwin Kernel Version 19.6.0: Tue Jun 2 00:22:47 PDT 2020; root:xnu-6153.144.19~3\/RELEASE_ARM_T8004
6.2.8 beta 3 Darwin Kernel Version 19.6.0: Sun Jun 21 23:00:37 PDT 2020; root:xnu-6153.144.26~2/RELEASE_ARM64_T8006
6.2.8 GM Darwin Kernel Version 19.6.0: Fri Jun 26 21:31:38 PDT 2020; root:xnu-6153.144.26~3/RELEASE_ARM64_T8006
6.2.8
6.2.9 Darwin Kernel Version 19.6.0: Thu Oct 29 23:51:10 PDT 2020; root:xnu-6153.144.28~1/RELEASE_ARM_T8002
6.3 Darwin Kernel Version 19.6.0: Wed Nov 25 04:21:29 PST 2020; root:xnu-6153.144.28~2/RELEASE_ARM_T8002
7.0 beta Darwin Kernel Version 20.0.0: Thu Jun 11 22:55:46 PDT 2020; root:xnu-7090.0.0.114.3~3/RELEASE_ARM64_T8006
7.0 beta 2 Darwin Kernel Version 20.0.0: Wed Jun 24 01:43:36 PDT 2020; root:xnu-7147.0.0.0.2~25/RELEASE_ARM64_T8006
7.0 beta 3 Darwin Kernel Version 20.0.0: Mon Jul 13 23:46:55 PDT 2020; root:xnu-7168.0.0.134.1~5/RELEASE_ARM64_T8006
7.0 beta 4 Darwin Kernel Version 20.0.0: Mon Jul 27 21:17:52 PDT 2020; root:xnu-7195.0.8.0.1~25/RELEASE_ARM64_T8006
7.0 beta 5 Darwin Kernel Version 20.0.0: Wed Aug 12 22:35:07 PDT 2020; root:xnu-7195.0.33.154.1~4/RELEASE_ARM64_T8006
7.0 beta 6 Darwin Kernel Version 20.0.0: Tue Aug 18 21:39:01 PDT 2020; root:xnu-7195.0.42~8/RELEASE_ARM64_T8006
7.0 beta 7 Darwin Kernel Version 20.0.0: Wed Aug 26 22:42:45 PDT 2020; root:xnu-7195.2.3~4/RELEASE_ARM64_T8006
7.0 beta 8
7.0 GM Darwin Kernel Version 20.0.0: Wed Aug 26 21:15:44 PDT 2020; root:xnu-7195.2.3~1/RELEASE_ARM64_T8006
7.0
7.0.1
7.0.2
7.0.3
7.1 beta Darwin Kernel Version 20.1.0: Fri Sep 11 19:08:11 PDT 2020; root:xnu-7195.40.84.172.1~3/RELEASE_ARM64_T8301
7.1 beta 2 Darwin Kernel Version 20.1.0: Sun Sep 20 23:49:50 PDT 2020; root:xnu-7195.40.113.0.2~21/RELEASE_ARM64_T8301
7.1 beta 3 Darwin Kernel Version 20.1.0: Sun Oct 4 22:33:36 PDT 2020; root:xnu-7195.40.141~9/RELEASE_ARM64_T8301
7.1 beta 4 Darwin Kernel Version 20.1.0: Fri Oct 16 01:25:58 PDT 2020; root:xnu-7195.44.2~2/RELEASE_ARM64_T8301
7.1 RC Darwin Kernel Version 20.1.0: Tue Oct 13 18:55:12 PDT 2020; root:xnu-7195.44.2~1/RELEASE_ARM64_T8301
7.1 Darwin Kernel Version 20.1.0: Fri Oct 30 00:47:34 PDT 2020; root:xnu-7195.44.4~1/RELEASE_ARM64_T8301
7.2 beta Darwin Kernel Version 20.2.0: Sun Nov 1 22:04:21 PST 2020; root:xnu-7195.60.63~20/RELEASE_ARM64_T8301
7.2 beta 2 Darwin Kernel Version 20.2.0: Wed Nov 11 05:36:26 PST 2020; root:xnu-7195.64.1~2/RELEASE_ARM64_T8301
7.2 beta 3
7.2 RC Darwin Kernel Version 20.2.0: Fri Nov 13 00:23:27 PST 2020; root:xnu-7195.64.1~4/RELEASE_ARM64_T8301
7.2
7.3 beta Darwin Kernel Version 20.3.0: Sun Dec 6 20:50:54 PST 2020; root:xnu-7195.80.16~12/RELEASE_ARM64_T8301
7.3 beta 2 Darwin Kernel Version 20.3.0: Mon Jan 4 21:22:32 PST 2021; root:xnu-7195.80.30~8/RELEASE_ARM64_T8301
7.3 RC Darwin Kernel Version 20.3.0: Tue Jan 5 18:47:08 PST 2021; root:xnu-7195.80.35~3/RELEASE_ARM64_T8301
7.3
7.3.1
7.3.2
7.3.3
7.4 beta Darwin Kernel Version 20.4.0: Thu Jan 21 22:14:59 PST 2021; root:xnu-7195.100.296.114.1~1/RELEASE_ARM64_T8301
7.4 beta 2 Darwin Kernel Version 20.4.0: Sun Feb 7 17:42:59 PST 2021; root:xnu-7195.100.326.0.1~46/RELEASE_ARM64_T8301
7.4 beta 3 Darwin Kernel Version 20.4.0: Mon Feb 22 21:26:45 PST 2021; root:xnu-7195.100.354.134.1~1/RELEASE_ARM64_T8301
7.4 beta 4 Darwin Kernel Version 20.4.0: Wed Mar 3 00:14:36 PST 2021; root:xnu-7195.100.367~15/RELEASE_ARM64_T8301
7.4 beta 5
7.4 beta 6 Darwin Kernel Version 20.4.0: Thu Mar 25 04:21:18 PDT 2021; root:xnu-7195.100.367~85/RELEASE_ARM64_T8301
7.4 beta 7
7.4 RC Darwin Kernel Version 20.4.0: Sun Feb 28 20:40:00 PST 2021; root:xnu-7195.100.367~2/RELEASE_ARM64_T8301
7.4
7.4.1
7.5 beta Darwin Kernel Version 20.5.0: Thu Apr 15 01:00:26 PDT 2021; root:xnu-7195.120.38.0.1~34/RELEASE_ARM64_T8301
7.5 beta 2 Darwin Kernel Version 20.5.0: Thu Apr 22 18:52:17 PDT 2021; root:xnu-7195.120.51~17/RELEASE_ARM64_T8301
7.5 beta 3 Darwin Kernel Version 20.5.0: Tue May 4 21:46:37 PDT 2021; root:xnu-7195.124.1~2/RELEASE_ARM64_T8301
7.5 RC Darwin Kernel Version 20.5.0: Sat May 8 05:58:55 PDT 2021; root:xnu-7195.124.1~4/RELEASE_ARM64_T8301
7.5
7.6 beta Darwin Kernel Version 20.6.0: Mon May 10 00:34:14 PDT 2021; root:xnu-7195.140.13.0.1~22/RELEASE_ARM64_T8301
7.6 beta 2 Darwin Kernel Version 20.6.0: Sun May 23 20:06:15 PDT 2021; root:xnu-7195.140.22~18/RELEASE_ARM64_T8301
7.6 beta 3 Darwin Kernel Version 20.6.0: Sun Jun 6 22:12:59 PDT 2021; root:xnu-7195.140.29.0.1~19/RELEASE_ARM64_T8301
7.6 beta 4 Darwin Kernel Version 20.6.0: Sun Jun 20 23:06:50 PDT 2021; root:xnu-7195.140.39.0.1~14/RELEASE_ARM64_T8301
7.6 beta 5 Darwin Kernel Version 20.6.0: Tue Jun 29 03:31:23 PDT 2021; root:xnu-7195.140.42~29/RELEASE_ARM64_T8301
7.6 RC Darwin Kernel Version 20.6.0: Mon Jun 21 20:47:28 PDT 2021; root:xnu-7195.140.42~8/RELEASE_ARM64_T8301
7.6
7.6.1
7.6.2
8.0 beta Darwin Kernel Version 21.0.0: Sat May 22 02:12:39 PDT 2021; root:xnu-7938.0.0.114.2~4/RELEASE_ARM64_T8301
8.0 beta 2 Darwin Kernel Version 21.0.0: Thu Jun 17 21:06:43 PDT 2021; root:xnu-8011.0.0.124.2~2/RELEASE_ARM64_T8301
8.0 beta 3 Darwin Kernel Version 21.0.0: Mon Jul 5 02:16:23 PDT 2021; root:xnu-8019.0.46.0.4~9/RELEASE_ARM64_T8301
8.0 beta 4 Darwin Kernel Version 21.0.0: Mon Jul 19 20:36:57 PDT 2021; root:xnu-8019.0.72.144.1~2/RELEASE_ARM64_T8301
8.0 beta 5 Darwin Kernel Version 21.0.0: Tue Aug 3 21:19:11 PDT 2021; root:xnu-8019.10.7.154.1~2/RELEASE_ARM64_T8301
8.0 beta 6 Darwin Kernel Version 21.0.0: Thu Aug 12 21:07:57 PDT 2021; root:xnu-8019.14.1~18/RELEASE_ARM64_T8301
8.0 beta 7 Darwin Kernel Version 21.0.0: Tue Aug 17 17:25:14 PDT 2021; root:xnu-8019.14.3~7/RELEASE_ARM64_T8301
8.0 beta 8
8.0 RC Darwin Kernel Version 21.0.0: Sun Aug 15 20:15:23 PDT 2021; root:xnu-8019.14.3~5/RELEASE_ARM64_T8301
8.0
8.1 beta Darwin Kernel Version 21.1.0: Sun Sep 5 22:24:12 PDT 2021; root:xnu-8019.40.67~9/RELEASE_ARM64_T8301
8.1 beta 2 Darwin Kernel Version 21.1.0: Tue Sep 21 10:17:34 PDT 2021; root:xnu-8019.40.86~11/RELEASE_ARM64_T8301
8.1 beta 3 Darwin Kernel Version 21.1.0: Wed Sep 29 22:40:57 PDT 2021; root:xnu-8019.40.96.0.2~8/RELEASE_ARM64_T8301
8.1 beta 4 Darwin Kernel Version 21.1.0: Wed Oct 6 00:38:06 PDT 2021; root:xnu-8019.40.98.0.1~36/RELEASE_ARM64_T8301
8.1 RC Darwin Kernel Version 21.1.0: Wed Oct 13 19:43:04 PDT 2021; root:xnu-8019.44.1~1/RELEASE_ARM64_T8301
8.1
8.1.1
8.3 beta Darwin Kernel Version 21.2.0: Tue Oct 19 21:12:31 PDT 2021; root:xnu-8019.60.40.0.1~23/RELEASE_ARM64_T8301
8.3 beta 2 Darwin Kernel Version 21.2.0: Sun Oct 31 20:20:03 PDT 2021; root:xnu-8019.60.58~14/RELEASE_ARM64_T8301
8.3 beta 3 Darwin Kernel Version 21.2.0: Thu Nov 11 00:56:55 PST 2021; root:xnu-8019.64.1~2/RELEASE_ARM64_T8301
8.3 beta 4
8.3 RC Darwin Kernel Version 21.2.0: Sun Nov 28 19:21:35 PST 2021; root:xnu-8019.64.2~1/RELEASE_ARM64_T8301
8.3
8.4 beta Darwin Kernel Version 21.3.0: Sat Dec 4 02:43:44 PST 2021; root:xnu-8019.80.11~20/RELEASE_ARM64_T8301
8.4 beta 2 Darwin Kernel Version 21.3.0: Mon Jan 3 23:31:08 PST 2022; root:xnu-8019.80.24~14/RELEASE_ARM64_T8301
8.4 RC Darwin Kernel Version 21.3.0: Thu Jan 13 19:48:08 PST 2022; root:xnu-8019.84.1~1/RELEASE_ARM64_T8301
8.4
8.4.1
8.4.2
8.5 beta Darwin Kernel Version 21.4.0: Sun Jan 23 10:25:01 PST 2022; root:xnu-8020.100.406.114.1~1/RELEASE_ARM64_T8301
8.5 beta 2 Darwin Kernel Version 21.4.0: Sun Jan 30 12:36:10 PST 2022; root:xnu-8020.100.417.0.4~48/RELEASE_ARM64_T8301
8.5 beta 3 Darwin Kernel Version 21.4.0: Mon Feb 7 21:48:39 PST 2022; root:xnu-8020.100.429.134.1~1/RELEASE_ARM64_T8301
8.5 beta 4 Darwin Kernel Version 21.4.0: Sun Feb 13 20:23:27 PST 2022; root:xnu-8020.104.1~2/RELEASE_ARM64_T8301
8.5 beta 5 Darwin Kernel Version 21.4.0: Mon Feb 21 22:26:15 PST 2022; root:xnu-8020.104.2~3/RELEASE_ARM64_T8301
8.5 RC Darwin Kernel Version 21.4.0: Mon Feb 21 21:02:09 PST 2022; root:xnu-8020.104.2~1/RELEASE_ARM64_T8301
8.5
8.5.1
8.6 beta Darwin Kernel Version 21.5.0: Fri Apr 1 17:57:48 PDT 2022; root:xnu-8020.120.43.114.1~1/RELEASE_ARM64_T8301
8.6 beta 2 Darwin Kernel Version 21.5.0: Mon Apr 11 22:22:51 PDT 2022; root:xnu-8020.120.51.124.1~1/RELEASE_ARM64_T8301
8.6 beta 3 Darwin Kernel Version 21.5.0: Mon Apr 18 23:06:57 PDT 2022; root:xnu-8020.120.68.134.1~1/RELEASE_ARM64_T8301
8.6 beta 4 Darwin Kernel Version 21.5.0: Tue Apr 26 08:08:44 PDT 2022; root:xnu-8020.124.1~2/RELEASE_ARM64_T8301
8.6 RC Darwin Kernel Version 21.5.0: Thu Apr 21 21:29:11 PDT 2022; root:xnu-8020.124.1~1/RELEASE_ARM64_T8301
8.6
8.7 beta Darwin Kernel Version 21.6.0: Sun May 8 19:07:32 PDT 2022; root:xnu-8020.140.20.0.4~15/RELEASE_ARM64_T8301
8.7 beta 2 Darwin Kernel Version 21.6.0: Wed May 25 22:21:26 PDT 2022; root:xnu-8020.140.30.124.1~1/RELEASE_ARM64_T8301
8.7 beta 3 Darwin Kernel Version 21.6.0: Sun Jun 5 17:47:02 PDT 2022; root:xnu-8020.140.36~30/RELEASE_ARM64_T8301
8.7 beta 4 Darwin Kernel Version 21.6.0: Sun Jun 19 22:08:04 PDT 2022; root:xnu-8020.140.41~6/RELEASE_ARM64_T8301
8.7 beta 5
8.7 RC Darwin Kernel Version 21.6.0: Sat Jun 18 17:01:28 PDT 2022; root:xnu-8020.140.41~2/RELEASE_ARM64_T8301
8.7
8.7.1
9.0 beta Darwin Kernel Version 22.0.0: Wed May 25 20:35:42 PDT 2022; root:xnu-8792.0.50.114.3~1/RELEASE_ARM64_T8301
9.0 beta 2 Darwin Kernel Version 22.0.0: Fri Jun 10 01:37:09 PDT 2022; root:xnu-8792.0.92.0.4~73/RELEASE_ARM64_T8301
9.0 beta 3 Darwin Kernel Version 22.0.0: Fri Jun 24 17:41:23 PDT 2022; root:xnu-8792.0.134.0.1~3/RELEASE_ARM64_T8301
9.0 beta 4 Darwin Kernel Version 22.0.0: Wed Jul 20 22:28:46 PDT 2022; root:xnu-8792.0.188.144.3~1/RELEASE_ARM64_T8301
9.0 beta 5 Darwin Kernel Version 22.0.0: Wed Aug 3 14:46:39 PDT 2022; root:xnu-8792.4.4~20/RELEASE_ARM64_T8301
9.0 beta 6 Darwin Kernel Version 22.0.0: Wed Aug 10 23:44:36 PDT 2022; root:xnu-8792.14.5.164.2~2/RELEASE_ARM64_T8301
9.0 beta 7 Darwin Kernel Version 22.0.0: Mon Aug 15 21:33:17 PDT 2022; root:xnu-8792.4.10~7/RELEASE_ARM64_T8301
9.0 RC Darwin Kernel Version 22.0.0: Thu Aug 11 19:53:42 PDT 2022; root:xnu-8792.4.10~1/RELEASE_ARM64_T8301
9.0
9.0 (20R8363) Darwin Kernel Version 22.0.0: Sat Aug 13 00:34:21 PDT 2022; root:xnu-8792.4.10~4/RELEASE_ARM64_T8301 Apple Watch Ultra only.
9.0.1
9.0.2 Darwin Kernel Version 22.0.0: Thu Aug 11 19:53:42 PDT 2022; root:xnu-8792.4.10~1/RELEASE_ARM64_T8301
9.0.2 (20R8391) Darwin Kernel Version 22.0.0: Sat Aug 13 00:34:21 PDT 2022; root:xnu-8792.4.10~4/RELEASE_ARM64_T8301 Apple Watch Ultra only.
9.1 beta Darwin Kernel Version 22.1.0: Wed Sep 7 19:25:14 PDT 2022; root:xnu-8792.40.93~31/RELEASE_ARM64_T8301
9.1 beta 2 Darwin Kernel Version 22.1.0: Sun Sep 11 19:23:59 PDT 2022; root:xnu-8792.40.101.0.1~13/RELEASE_ARM64_T8301
9.1 beta 3 Darwin Kernel Version 22.1.0: Thu Sep 22 21:28:53 PDT 2022; root:xnu-8792.40.108.134.1~1/RELEASE_ARM64_T8301
9.1 beta 4 Darwin Kernel Version 22.1.0: Wed Sep 28 03:37:19 PDT 2022; root:xnu-8792.44.1~9/RELEASE_ARM64_T8301
9.1 beta 5
9.1 RC Darwin Kernel Version 22.1.0: Fri Sep 30 00:53:52 PDT 2022; root:xnu-8792.44.1~11/RELEASE_ARM64_T8301
9.1
9.2 beta Darwin Kernel Version 22.2.0: Sun Oct 16 17:23:45 PDT 2022; root:xnu-8792.60.32.0.1~9/RELEASE_ARM64_T8301

Source Code

As XNU is based off of the BSD kernel, it is open source. The source is under a 3-clause BSD License for the original BSD portions with the portions added by Apple under the Apple Public Source License. The versions contained in iOS are not available, instead only versions used in macOS are available. This does not appear to be legal as per §2.3 in the APSL:

2.3     Distribution of Executable Versions.  In addition, if You Externally Deploy Covered
Code (Original Code and/or Modifications) in object code, executable form only, You must
include a prominent notice, in the code itself as well as in related documentation, stating
that Source Code of the Covered Code is available under the terms of this License with
information on how and where to obtain such Source Code.

with Source Code defined in §1.8:

1.8     "Source Code" means the human readable form of a program or other work that is
suitable for making modifications to it, including all modules it contains, plus any
associated interface definition files, scripts used to control compilation and installation
of an executable (object code).

It is worth noting that Apple does not list XNU as being an open source component of iOS. This can be seen by viewing opensource.apple.com and selecting any iOS version. As far as can be told, none of the versions of XNU are available in source version.

There are many other open souce components that iOS uses that are not listed, such as:

It does not appear that Apple assumes what you see in the macOS pages are also on iOS as JavaScriptCore, WebCore, among others are listed on both OS X (10.8) and iOS (6.0), albeit different versions.

It is also worth noting that gdb (GCC debugger) and ld64 are listed as components in iOS 6.0. Why there are present is a mystery as they are not present on unaltered devices, but only through Cydia or Xcode's DeveloperImage.dmg.

Kernel Extensions

iOS, sadly, does not have kexts floating around the file system, but they are indeed present. The kernelcache can be unpacked to show the kernel proper, along with the kexts (all packed in the __PRELINK_TEXT section) and their plists (in the __PRELINK_INFO section).

The kernelcache can also be directly unpacked (if decrypted) using the Jonathan Levin's joker tool from https://newosxbook.com/tools/joker.html. With the advent of iOS 10 betas and out-of-box plaintext kernelcaches, this tool can be used after unpacking and applying lzssdec to decompress the kernelcache to its full size.

The Cydia supplied kextstat does not work on iOS. Sadly, the reason is that kextstat relies on kmod_get_info(...), which is a deprecated (and recently removed) API in iOS 4.x and Mac OS X 10.6. With that said, the kexts do exist. As an alternative, consider using kextstat from the iOS BinUtils package (https://newosxbook.com/tool/iOSBinaries.html) or the open source modified version "JKextstat" (https://newosxbook.com/src.jl?tree=listings&file=18-1-JKextstat.c), which can also dump the raw XML data.


For a specific extension, e.g. SandBox, the full information (including the handy load address) is also accessible:

root# ./jkextstat -b sandbox -x:

<plist>
<dict>
        <key>CFBundleIdentifier</key>
        <string>com.apple.security.sandbox</string>
        <key>CFBundleVersion</key>
        <string>154.7</string>
        <key>OSBundleCPUSubtype</key>
        <integer>9</integer>
        <key>OSBundleCPUType</key>
        <integer>12</integer>
        <key>OSBundleDependencies</key>
        <array>
                <integer>6</integer>
                <integer>7</integer>
                <integer>5</integer>
                <integer>3</integer>
                <integer>28</integer>
                <integer>1</integer>
                <integer>4</integer>
                <integer>16</integer>
                <integer>2</integer>
        </array>
        <key>OSBundleExecutablePath</key>
        <string>/System/Library/Extensions/Sandbox.kext/Sandbox</string>
        <key>OSBundleIsInterface</key>
        <false/>
        <key>OSBundleLoadAddress</key>
        <integer>2153734144</integer>
        <key>OSBundleLoadSize</key>
        <integer>36864</integer>
        <key>OSBundleLoadTag</key>
        <integer>29</integer>
        <key>OSBundleMachOHeaders</key>
        
        zvrt/gwAAAAJAAAACwAAAAMAAAAgAgAAAQAAAAEAAAAEAQAAX19URVhUAAAAAAAAAAAA
        AABgX4AAgAAAAAAAAACAAAAHAAAABwAAAAMAAAAAAAAAX190ZXh0AAAAAAAAAAAAAF9f
        VEVYVAAAAAAAAAAAAADMbV+AKGEAAMwNAAACAAAAAAAAAAAAAAAABwCAAAAAAAAAAABf
        X2NzdHJpbmcAAAAAAAAAX19URVhUAAAAAAAAAAAAAPTOX4DLDQAA9G4AAAAAAAAAAAAA
        AAAAAAIAAAAAAAAAAAAAAF9fY29uc3QAAAAAAAAAAABfX1RFWFQAAAAAAAAAAAAAwNxf
        gDEDAADAfAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAQBAABfX0RBVEEAAAAA
        AAAAAAAAAOBfgAAQAAAAgAAAABAAAAcAAAAHAAAAAwAAAAAAAABfX2RhdGEAAAAAAAAA
        AAAAX19EQVRBAAAAAAAAAAAAAADgX4C0BgAAAIAAAAQAAAAAAAAAAAAAAAAAAAAAAAAA
        AAAAAF9fYnNzAAAAAAAAAAAAAABfX0RBVEEAAAAAAAAAAAAAwOZfgHgAAAAAAAAABAAA
        AAAAAAAAAAAAAQAAAAAAAAAAAAAAX19jb21tb24AAAAAAAAAAF9fREFUQQAAAAAAAAAA
        AAA451+AGAAAAAAAAAACAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAbAAAAGAAAABasg7Y2
        TzkVrtqsgOViBQ0=
        
        <key>OSBundlePath</key>
        <string>/System/Library/Extensions/Sandbox.kext</string>
        <key>OSBundlePrelinked</key>
        <true/>
        <key>OSBundleRetainCount</key>
        <integer>0</integer>
        <key>OSBundleStarted</key>
        <true/>
        <key>OSBundleUUID</key>
        
        FqyDtjZPORWu2qyA5WIFDQ==
        
        <key>OSBundleWiredSize</key>
        <integer>36864</integer>
        <key>OSKernelResource</key>
        <false/>
</dict>
</plist>


It's also worth mentioning that, in the above listing, the OSBundleMachOHeaders (base-64 encoded binary headers) leak kernel addresses in iOS 6.0, defeating Kernel ASLR. This has been quickly fixed in iOS 6.0.1, effectively locking down iOS for the foreseeable future, thanks to security researcher mdowd.

Winocm's custom kernel

Winocm uses a custom kernel which the version can be found below.

Darwin Kernel Version 13.0.0: Fri Nov 22 18:19:54 CST 2013; root:xnu-2050.48.13~7/DEVELOPMENT_ARM_S5L8930X

See Also

External Links