-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathcompatibility.ts
123 lines (123 loc) · 3.18 KB
/
compatibility.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
interface CompatibilityVersion {
name: string;
channel: string;
isActive: boolean;
isSpecialRelease: boolean;
lockstep: string[];
supported: string[];
tested: string[];
range: string[];
footnote: string | null;
}
export const Compatibility = [
{
name: 'Canary',
channel: 'canary',
isActive: true,
isSpecialRelease: false,
lockstep: ['6.4'],
supported: ['4.8', '4.12', '5.*', '6.*'],
tested: ['3.28', '4.4', '4.8', '4.12', '5.4', '5.8', '5.12', '6.3'],
range: ['3.28.12', '>= 4.*', '>= 5.*', '>= 6.*'],
footnote: null,
},
{
name: 'Beta',
channel: 'beta',
isActive: true,
isSpecialRelease: false,
lockstep: ['6.4'],
supported: ['4.8', '4.12', '5.*', '6.*'],
tested: ['3.28', '4.4', '4.8', '4.12', '5.4', '5.8', '5.12', '6.3'],
range: ['3.28.12', '>= 4.*', '>= 5.*', '>= 6.*'],
footnote: null,
},
{
name: 'Latest (Stable)',
channel: 'latest',
isActive: true,
isSpecialRelease: false,
lockstep: ['>= 5.3', '6.0', '6.1', '6.2', '6.3'],
supported: ['4.8', '4.12', '5.*', '6.*'],
tested: ['3.28', '4.4', '4.8', '4.12', '5.4', '5.8', '5.12', '6.3'],
range: ['3.28.12', '>= 4.*', '>= 5.*', '>= 6.*'],
footnote: null,
},
{
name: 'LTS',
channel: 'lts',
isActive: true,
isSpecialRelease: false,
lockstep: ['>= 5.3', '6.0', '6.1', '6.2', '6.3'],
supported: ['4.8', '4.12', '5.*', '6.*'],
tested: ['3.28', '4.4', '4.8', '4.12', '5.4', '5.8', '5.12', '6.3'],
range: ['3.28.12', '>= 4.*', '>= 5.*', '>= 6.*'],
footnote: null,
},
{
name: 'V4 Special Release<br>(vite support)',
channel: 'v4-canary',
isActive: true,
isSpecialRelease: true,
lockstep: ['6.3'],
supported: ['4.*', '5.*', '6.*'],
tested: ['3.28', '4.4', '4.8', '4.12', '5.4', '5.8', '5.12', '6.3'],
range: ['3.28.12', '>= 4.*', '>= 5.*', '>= 6.*'],
footnote: '1',
},
{
name: 'Prior LTS',
channel: 'lts-4-12',
isActive: false,
isSpecialRelease: false,
lockstep: ['4.12.3'],
supported: ['4.*', '5.*'],
tested: ['3.28', '4.4', '4.8', '4.12', '5.0'],
range: ['3.28.12', '>= 4.*', '>= 5.*'],
footnote: null,
},
{
name: 'Prior LTS',
channel: 'lts-4-8',
isActive: false,
isSpecialRelease: false,
lockstep: ['4.8.6'],
supported: ['4.*'],
tested: ['3.28', '4.4', '4.8'],
range: ['3.28.12', '>= 4.*'],
footnote: null,
},
{
name: 'ModelFragments',
channel: 'release-4-6',
isActive: false,
isSpecialRelease: true,
lockstep: ['4.6.0'],
supported: ['3.28', '4.*'],
tested: ['3.28', '4.4', '4.5', '4.6'],
range: ['3.28.12', '>= 4.*'],
footnote: '2',
},
{
name: 'Prior LTS',
channel: 'lts-4-4',
isActive: false,
isSpecialRelease: true,
lockstep: ['4.4.5'],
supported: ['3.28', '4.*'],
tested: ['3.28', '4.4'],
range: ['3.28.12', '>= 4.*'],
footnote: '2',
},
{
name: 'Prior LTS',
channel: 'lts-3-28',
isActive: false,
isSpecialRelease: true,
lockstep: ['3.28.12'],
supported: ['3.*', '4.*'],
tested: ['3.20', '3.24', '3.28'],
range: ['>= 3.*', '>= 4.*'],
footnote: '3',
},
] satisfies CompatibilityVersion[];