4 Commits

Author SHA1 Message Date
d23a27eb66 1.3.0
Some checks failed
Default (tags) / security (push) Successful in 45s
Default (tags) / test (push) Successful in 2m18s
Default (tags) / release (push) Failing after 1m35s
Default (tags) / metadata (push) Successful in 1m57s
2024-12-13 20:01:30 +01:00
96ed35e953 feat(core): Export CommitResult interface for external use. 2024-12-13 20:01:29 +01:00
e3b51414a9 1.2.1
Some checks failed
Default (tags) / security (push) Successful in 39s
Default (tags) / test (push) Successful in 2m15s
Default (tags) / release (push) Failing after 1m43s
Default (tags) / metadata (push) Successful in 2m9s
2024-12-13 19:52:43 +01:00
7b1e9ed072 fix(core): No changes detected 2024-12-13 19:52:43 +01:00
4 changed files with 12 additions and 3 deletions

View File

@ -1,5 +1,14 @@
# Changelog
## 2024-12-13 - 1.3.0 - feat(core)
Export CommitResult interface for external use.
- Changed CommitResult from a local interface to an exported interface, allowing for external usage and integration.
## 2024-12-13 - 1.2.1 - fix(core)
No changes detected
## 2024-12-13 - 1.2.0 - feat(core)
Add organization-level activity fetching and RSS parsing

View File

@ -1,6 +1,6 @@
{
"name": "@foss.global/codefeed",
"version": "1.2.0",
"version": "1.3.0",
"private": false,
"description": "a module for creating feeds for code development",
"main": "dist_ts/index.js",

View File

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

View File

@ -33,7 +33,7 @@ interface RepoSearchResponse {
data: Repository[];
}
interface CommitResult {
export interface CommitResult {
baseUrl: string;
org: string;
repo: string;