We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa4b373 commit 9d3a781Copy full SHA for 9d3a781
scripts/helpers/changeloglink.js
@@ -9,5 +9,10 @@ module.exports = function (version) {
9
return `https://github.com/nodejs/node/blob/${version}/CHANGELOG.md`
10
}
11
12
+ // 0.12.8+ and 0.10.41+ releases come from the new repo
13
+ if (semver.satisfies(version, '~0.12.8 || ~0.10.41')) {
14
+ return `https://github.com/nodejs/node/blob/${version}/ChangeLog`
15
+ }
16
+
17
return `https://github.com/nodejs/node-v0.x-archive/blob/${version}/ChangeLog`
18
0 commit comments