fix(core): Fix sorting order of tagged commits by timestamp
This commit is contained in:
parent
1df8064247
commit
f511ab7a63
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-12-14 - 1.6.2 - fix(core)
|
||||||
|
Fix sorting order of tagged commits by timestamp
|
||||||
|
|
||||||
|
- Fixed the sorting order of commits to be by timestamp in descending order after filtering for tagged commits.
|
||||||
|
|
||||||
## 2024-12-14 - 1.6.1 - fix(docs)
|
## 2024-12-14 - 1.6.1 - fix(docs)
|
||||||
Updated project metadata and expanded documentation for installation and usage.
|
Updated project metadata and expanded documentation for installation and usage.
|
||||||
|
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@foss.global/codefeed',
|
name: '@foss.global/codefeed',
|
||||||
version: '1.6.1',
|
version: '1.6.2',
|
||||||
description: 'The @foss.global/codefeed module is designed for generating feeds from Gitea repositories, enhancing development workflows by processing commit data and repository activities.'
|
description: 'The @foss.global/codefeed module is designed for generating feeds from Gitea repositories, enhancing development workflows by processing commit data and repository activities.'
|
||||||
}
|
}
|
||||||
|
@ -326,7 +326,7 @@ export class CodeFeed {
|
|||||||
|
|
||||||
console.log(`Processed ${allCommits.length} commits in total.`);
|
console.log(`Processed ${allCommits.length} commits in total.`);
|
||||||
|
|
||||||
allCommits = allCommits.filter(commitArg => commitArg.tagged);
|
allCommits = allCommits.filter(commitArg => commitArg.tagged).sort((a, b) => b.timestamp.localeCompare(a.timestamp));
|
||||||
|
|
||||||
console.log(`Filtered to ${allCommits.length} commits with tagged statuses.`);
|
console.log(`Filtered to ${allCommits.length} commits with tagged statuses.`);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user