From dcde64aa2a276e4d02abc30bc6ad4b24aba71b2b Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 13 Dec 2024 18:31:23 +0100 Subject: [PATCH] fix(core): Improve error handling in fetchRecentCommitsForRepo method --- changelog.md | 11 +++++++++++ ts/00_commitinfo_data.ts | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 changelog.md create mode 100644 ts/00_commitinfo_data.ts diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..cfd6651 --- /dev/null +++ b/changelog.md @@ -0,0 +1,11 @@ +# Changelog + +## 2024-12-13 - 1.0.2 - fix(core) +Improve error handling in fetchRecentCommitsForRepo method + +- Refined the console error message for better clarity. +- Updated the fetchRecentCommitsForRepo method to stop fetching when encountering a commit older than 24 hours. + +## 2024-12-13 - 1.0.1 - initial release +Initial release of the project + diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts new file mode 100644 index 0000000..9996100 --- /dev/null +++ b/ts/00_commitinfo_data.ts @@ -0,0 +1,8 @@ +/** + * autocreated commitinfo by @push.rocks/commitinfo + */ +export const commitinfo = { + name: '@foss.global/codefeed', + version: '1.0.2', + description: 'a module for creating feeds for code development' +}