Skip to content

Commit

Permalink
lib: sort affected versions ASC
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGSS committed Jul 9, 2024
1 parent 987aaca commit 495063a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/security_blog.js
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export default class SecurityBlog {
affectedVersions.add(affectedVersion);
}
}
return Array.from(affectedVersions).join(', ');
return Array.from(affectedVersions).sort().join(', ');
}

getSecurityPreReleaseTemplate() {
Expand Down

0 comments on commit 495063a

Please sign in to comment.