Skip to content

Commit f54c4fc

Browse files
committed
Make support 36 months from release for LTS (full support time, including sec updates)
1 parent 97c1c3e commit f54c4fc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/supported-versions.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ function resolveActiveSupport(ver, released) {
1010
} else if (ver.minor > 0) {
1111
return support.add(6, 'months');
1212
} else {
13-
return support.add(24, 'months');
13+
// 36 months for security updates
14+
return support.add(36, 'months');
1415
}
1516
}
1617

0 commit comments

Comments
 (0)