Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions scripts/helpers/changeloglink.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,10 @@ module.exports = function (version) {
return `https://github.com/nodejs/node/blob/${version}/CHANGELOG.md`
}

// 0.12.8+ and 0.10.41+ releases come from the new repo
if (semver.satisfies(version, '~0.12.8 || ~0.10.41')) {
return `https://github.com/nodejs/node/blob/${version}/ChangeLog`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this not need to be ChangeLog.md?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@thealphanerd It was not markdown until io.js v1.0.0.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh my bad... I was misunderstanding what the bug was. nothing to see here :D

}

return `https://github.com/nodejs/node-v0.x-archive/blob/${version}/ChangeLog`
}