{"id":31132376,"url":"https://github.com/gocom/changelog","last_synced_at":"2026-01-20T16:44:00.063Z","repository":{"id":305726885,"uuid":"1023755924","full_name":"gocom/changelog","owner":"gocom","description":"Extracts releases notes from CHANGELOG.md","archived":false,"fork":false,"pushed_at":"2025-08-14T18:17:29.000Z","size":135,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-12T05:53:25.529Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gocom.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-21T16:37:18.000Z","updated_at":"2025-08-14T18:16:47.000Z","dependencies_parsed_at":"2025-07-21T18:53:30.180Z","dependency_job_id":"c9cc8aff-5aaa-4a29-966d-dd9e11bd49a1","html_url":"https://github.com/gocom/changelog","commit_stats":null,"previous_names":["gocom/changelog"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/gocom/changelog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gocom%2Fchangelog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gocom%2Fchangelog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gocom%2Fchangelog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gocom%2Fchangelog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gocom","download_url":"https://codeload.github.com/gocom/changelog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gocom%2Fchangelog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275712389,"owners_count":25514205,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-18T02:00:09.552Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-09-18T04:59:44.125Z","updated_at":"2025-09-18T04:59:45.392Z","avatar_url":"https://github.com/gocom.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Changelog\n=====\n\n[![npm](https://img.shields.io/npm/v/%40gocom%2Fchangelog)](https://www.npmjs.com/package/@gocom/changelog) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=gocom_changelog\u0026metric=alert_status)](https://sonarcloud.io/summary/new_code?id=gocom_changelog) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=gocom_changelog\u0026metric=coverage)](https://sonarcloud.io/summary/new_code?id=gocom_changelog) [![MIT](https://img.shields.io/badge/license-MIT-green)](https://github.com/gocom/changelog/blob/main/LICENSE) ![TypeScript](https://img.shields.io/badge/types-TypeScript-blue)\n\nExtract version changelogs from CHANGELOG.md. The library enables parsing Markdown formatted changelog documents,\nand extracting details and release notes from the contents. Written in TypeScript, and supports both client-side\nweb browser and Node.js backend usage.\n\n⚡ Install\n-----\n\nUsing npm:\n\n```shell\n$ npm install @gocom/changelog\n```\n\n📖 Documentation\n-----\n\nSee [API Docs](https://github.com/gocom/changelog/blob/docs/main/Public/API.md).\n\n📝 Example Usage\n-----\n\n### Parsing changelog\n\nThe following would parse the given changelog document string, and returns the results as an array of objects:\n\n```typescript\nimport {parse} from '@gocom/changelog';\n\nconst changelog = parse(`\n# Changelog\n\n### 1.1.0-alpha.1\n\n* Change 1.\n* Change 2.\n\n### 1.0.0 🚀\n\n* Initial public release.\n`);\n```\n\nThe above `changelog` variable would become:\n\n```typescript\n[\n  {\n    version: '1.1.0-alpha.1',\n    isPrerelease: true,\n    titleStart: '',\n    titleEnd: '',\n    notes: '* Change 1.\\n* Change 2.'\n  },\n  {\n    version: '1.0.0',\n    isPrerelease: false,\n    titleStart: '',\n    titleEnd: '🚀',\n    notes: '* Initial public release.'\n  }\n];\n```\n\nFor more see [documentation](https://github.com/gocom/changelog/blob/docs/main/Public/API.md).\n\n🛠️ Development\n-----\n\nSee [CONTRIBUTING.md](https://github.com/gocom/changelog/blob/main/CONTRIBUTING.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgocom%2Fchangelog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgocom%2Fchangelog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgocom%2Fchangelog/lists"}