We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebfdcaf commit 51ac5a1Copy full SHA for 51ac5a1
1 file changed
lib/src/Gren.js
@@ -1146,6 +1146,11 @@ class Gren {
1146
commits = commits.filter((commit) =>
1147
branchCommitShas.includes(commit.sha)
1148
);
1149
+ commits.sort(
1150
+ (commit1, commit2) =>
1151
+ new Date(commit2.commit.committer.date) -
1152
+ new Date(commit1.commit.committer.date)
1153
+ );
1154
releaseRange.push(commits);
1155
}
1156
loadedCommits('Commits acquired');
0 commit comments