4 Commits

Author SHA1 Message Date
e843197211 1.5.3
Some checks failed
Default (tags) / security (push) Successful in 47s
Default (tags) / test (push) Successful in 2m17s
Default (tags) / release (push) Failing after 1m31s
Default (tags) / metadata (push) Successful in 1m54s
2024-12-14 00:47:24 +01:00
3502a661ea fix(core): Fix filtering logic for returning only tagged commits 2024-12-14 00:47:24 +01:00
d103778a75 1.5.2
Some checks failed
Default (tags) / security (push) Successful in 43s
Default (tags) / test (push) Successful in 2m19s
Default (tags) / release (push) Failing after 1m32s
Default (tags) / metadata (push) Successful in 1m58s
2024-12-14 00:33:58 +01:00
9b1b91eb31 fix(core): Ensure stability of core functionalities. 2024-12-14 00:33:58 +01:00
4 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,14 @@
# Changelog # Changelog
## 2024-12-14 - 1.5.3 - fix(core)
Fix filtering logic for returning only tagged commits
- Ensure `allCommits` is filtered to only include commits with 'tagged' status before returning.
## 2024-12-14 - 1.5.2 - fix(core)
Ensure stability of core functionalities.
## 2024-12-14 - 1.5.1 - fix(core) ## 2024-12-14 - 1.5.1 - fix(core)
Refine logging format in CodeFeed class Refine logging format in CodeFeed class

View File

@ -1,6 +1,6 @@
{ {
"name": "@foss.global/codefeed", "name": "@foss.global/codefeed",
"version": "1.5.1", "version": "1.5.3",
"private": false, "private": false,
"description": "a module for creating feeds for code development", "description": "a module for creating feeds for code development",
"exports": { "exports": {

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@foss.global/codefeed', name: '@foss.global/codefeed',
version: '1.5.1', version: '1.5.3',
description: 'a module for creating feeds for code development' description: 'a module for creating feeds for code development'
} }

View File

@ -286,6 +286,9 @@ export class CodeFeed {
Published on npm: ${c.publishedOnNpm} Published on npm: ${c.publishedOnNpm}
`); `);
} }
allCommits = allCommits.filter(commitArg => commitArg.tagged);
return allCommits; return allCommits;
} }
} }