{"id":42551401,"url":"https://github.com/leereilly/gh-changelog","last_synced_at":"2026-01-28T19:12:36.114Z","repository":{"id":334776063,"uuid":"1140149512","full_name":"leereilly/gh-changelog","owner":"leereilly","description":"A GitHub CLI extension to view the latest GitHub Changelog entries directly in your terminal.","archived":false,"fork":false,"pushed_at":"2026-01-27T04:13:51.000Z","size":10116,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-27T07:11:07.708Z","etag":null,"topics":["cli","devchallenge","gh-extension","github-cli","githubchallenge"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/leereilly.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-22T22:22:04.000Z","updated_at":"2026-01-27T04:13:56.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/leereilly/gh-changelog","commit_stats":null,"previous_names":["leereilly/gh-changelog"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/leereilly/gh-changelog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leereilly%2Fgh-changelog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leereilly%2Fgh-changelog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leereilly%2Fgh-changelog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leereilly%2Fgh-changelog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leereilly","download_url":"https://codeload.github.com/leereilly/gh-changelog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leereilly%2Fgh-changelog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28849579,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cli","devchallenge","gh-extension","github-cli","githubchallenge"],"created_at":"2026-01-28T19:12:35.525Z","updated_at":"2026-01-28T19:12:36.106Z","avatar_url":"https://github.com/leereilly.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gh-changelog\n\nA GitHub CLI extension to view the latest [GitHub Changelog](https://github.blog/changelog/) entries directly in your terminal.\n\nBuilt using [GitHub Copilot CLI](https://github.com/features/copilot/cli) for the [GitHub Copilot CLI Challenge](https://dev.to/leereilly/github-changelog-now-in-your-terminal-built-with-copilot-cli-4fn7).\n\n![Demo GIF](images/demo.gif)\n\n## Installation\n\n```\ngh extension install leereilly/gh-changelog\n```\n\n## Usage\n\n### View recent changelogs\n\n```\ngh changelog\n```\n\nExample output:\n\n```shell\nID      TITLE                                                                                       UPDATED\n#0      GPT-9000-Codex is now available in Visual Studio, JetBrains IDEs, and Emacs                 Today\n#1      GitHub Copilot Chat learned sarcasm (enable with COPILOT_SASS=true)                         2 days ago\n#2      CodeQL 13.37 as been released                                                               3 days ago\n#3      1 vCPU Linux runner now generally available in GitHub Actions                               4 days ago\n#4      GitHub Copilot CLI: Plan before you build, steer as you go                                  5 days ago\n#5      Install and Use GitHub Copilot CLI directly from the GitHub CLI                             5 days ago\n#6      CodeQL 2.23.9 has been released                                                             6 days ago\n#7      Strengthen your supply chain with code-to-cloud traceability and SLSA Build Level 3 sec...  6 days ago\n#8      Enterprise-scoped budgets that exclude cost center usage in public preview                  6 days ago\n#9      GitHub Copilot now supports OpenCode                                                        10 days ago\n```\n\nThe `--pretty` flag includes the full content with HTML converted to readable plain text. It will be even prettier when someone tackles [#1](https://github.com/leereilly/gh-changelog/issues/1). Anyone?\n\n### View specific changelog\n\n```\ngh changelog view 0\n```\n\nExample output:\n\n```shell\nGPT-9000-Codex is now available in Visual Studio, JetBrains IDEs, and Emacs\n---------------------------------------------------------------------------\n\nToday we're excited to announce that GPT-9000-Codex, our most advanced \nAI coding model, is now available across all major IDEs.\n\nWhat's new:\n• 10x faster code completions with 99.7% accuracy\n• Full codebase understanding up to 2 million tokens\n• Native support for 150+ programming languages\n• Real-time pair programming with voice commands\n\nGet started today by updating your GitHub Copilot extension.\n```\n\n### Open specific changelog in browser\n\n```\ngh changelog open 0\n```\n\n## Development\n\n### Requirements\n\n- Go 1.21+\n\n### Build\n\n```\ngo build -o gh-changelog\n```\n\n### Test\n\n```\ngo test -v\n```\n\n## How It Works\n\nThis extension fetches the RSS feed from https://github.blog/changelog/feed/ and displays entries in reverse chronological order (newest first).\n\n## License\n\nMIT\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleereilly%2Fgh-changelog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleereilly%2Fgh-changelog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleereilly%2Fgh-changelog/lists"}