Skip to content

Commit 0ead122

Browse files
Add node-support page (#1161)
1 parent 4233575 commit 0ead122

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

app/router.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ Router.map(function () {
5555
});
5656

5757
this.route('security');
58+
this.route('node-support');
5859

5960
this.route('sponsors');
6061

app/templates/node-support.hbs

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{{page-title "Node Support"}}
2+
3+
<section class="container" aria-labelledby="node-support">
4+
<div class="layout">
5+
<div class="lg:col-4 lg:start-2 text-muted mb-5">
6+
<h1 id="ember-users">
7+
Node Support
8+
</h1>
9+
10+
<p>
11+
Ember and Ember CLI have committed to supporting the
12+
<a href="https://github.com/nodejs/LTS#lts-schedule">Node.js LTS Schedule</a> for the <code>HEAD</code> of our <code>main</code> branch(es). This means that we will drop support
13+
per the <a href="https://github.com/nodejs/Release">Node.js Release Working Group</a>'s schedule without a major version
14+
bump/change of ember-cli itself.
15+
</p>
16+
17+
18+
<h2>Supported Version Matrix</h2>
19+
20+
<table>
21+
<thead>
22+
<tr>
23+
<th>Node LTS Version</th>
24+
<th>Supported Ember CLI Versions</th>
25+
</tr>
26+
</thead>
27+
<tbody>
28+
<tr><td>24.x</td><td>6.7.0 - Current</td></tr>
29+
<tr><td>22.x</td><td>6.2.0 - Current</td></tr>
30+
<tr><td>20.x</td><td>5.4.0 - Current</td></tr>
31+
<tr><td>18.x</td><td>4.6.0 - 6.6.0</td></tr>
32+
<tr><td>16.x</td><td>3.28.0 - 5.3.0</td></tr>
33+
<tr><td>14.x</td><td>3.19.0 - 5.0.0</td></tr>
34+
<tr><td>13.x</td><td>3.15.0 - 3.20.0</td></tr>
35+
<tr><td>12.x</td><td>3.10.0 - 4.6.0</td></tr>
36+
<tr><td>11.x</td><td>3.9.0 - 3.13.0</td></tr>
37+
<tr><td>10.x</td><td>3.1.3 - 3.28.0</td></tr>
38+
<tr><td>9.x</td><td>2.16.2 - 3.2.x</td></tr>
39+
<tr><td>8.x</td><td>2.13.3 - 3.16.x</td></tr>
40+
<tr><td>7.x</td><td>2.10.0 - 2.16.x</td></tr>
41+
<tr><td>6.x</td><td>2.9.0 - 3.9.x</td></tr>
42+
<tr><td>5.x</td><td>1.13.9 - 2.6.3</td></tr>
43+
<tr><td>4.x</td><td>1.13.9 - 3.1.x</td></tr>
44+
<tr><td>0.12.x</td><td>0.0.0 - 2.11.x</td></tr>
45+
<tr><td>0.10.x</td><td>0.0.0 - 2.8.x</td></tr>
46+
</tbody>
47+
</table>
48+
</div>
49+
</div>
50+
</section>

0 commit comments

Comments
 (0)