{"id":17469807,"url":"https://github.com/corneliusweig/release-notes","last_synced_at":"2025-10-12T17:52:42.125Z","repository":{"id":47752235,"uuid":"209860723","full_name":"corneliusweig/release-notes","owner":"corneliusweig","description":"Generates release notes from merged pull request since last release","archived":false,"fork":false,"pushed_at":"2023-03-07T03:16:35.000Z","size":127,"stargazers_count":2,"open_issues_count":5,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-20T00:59:39.030Z","etag":null,"topics":["automation","changelog","changelog-generator","github-api","golang-application","markdown","release-notes"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/corneliusweig.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2019-09-20T18:54:01.000Z","updated_at":"2021-08-25T12:48:17.000Z","dependencies_parsed_at":"2025-03-03T07:42:23.051Z","dependency_job_id":null,"html_url":"https://github.com/corneliusweig/release-notes","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corneliusweig%2Frelease-notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corneliusweig%2Frelease-notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corneliusweig%2Frelease-notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corneliusweig%2Frelease-notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/corneliusweig","download_url":"https://codeload.github.com/corneliusweig/release-notes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249834788,"owners_count":21331988,"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","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":["automation","changelog","changelog-generator","github-api","golang-application","markdown","release-notes"],"created_at":"2024-10-18T15:43:50.551Z","updated_at":"2025-10-12T17:52:37.101Z","avatar_url":"https://github.com/corneliusweig.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# release-notes\n[![Build Status](https://travis-ci.com/corneliusweig/release-notes.svg?branch=master)](https://travis-ci.com/corneliusweig/release-notes)\n[![LICENSE](https://img.shields.io/github/license/corneliusweig/release-notes.svg)](https://github.com/corneliusweig/release-notes/blob/master/LICENSE)\n[![Go Report Card](https://goreportcard.com/badge/corneliusweig/release-notes)](https://goreportcard.com/report/corneliusweig/release-notes)\n\u003c!--\n[![Code Coverage](https://codecov.io/gh/corneliusweig/release-notes/branch/master/graph/badge.svg)](https://codecov.io/gh/corneliusweig/release-notes)\n[![Releases](https://img.shields.io/github/release-pre/corneliusweig/release-notes.svg)](https://github.com/corneliusweig/release-notes/releases)\n--\u003e\n\nGenerates a markdown changelog of merged pull requests since last release.\n\nThe script uses the GitHub API to retrieve a list of all merged pull\nrequests since the last release. The found pull requests are then\nprinted as markdown changelog with their commit summary and a link\nto the pull request on GitHub.  \n\nThe idea and original implementation of this script is due to Bálint Pató\n([@balopat](https://github.com/balopat)) while working on\n[minikube](https://github.com/kubernetes/minikube) and\n[Skaffold](https://github.com/GoogleContainerTools/skaffold).\n\n## Examples\n\nThe binary expects two parameters:\n\n1. The GitHub organization which your repository is part of.\n2. The repository name.\n\nFor example:\n```sh\n./release-notes GoogleContainerTools skaffold\n```\n\nwhich will output\n```text\nCollecting pull request that were merged since the last release: v0.38.0 (2019-09-12 22:56:07 +0000 UTC)\n* add github pull request template [#2894](https://github.com/googlecontainertools/skaffold/pull/2894)\n* Add Jib-Gradle support for Kotlin buildscripts [#2914](https://github.com/googlecontainertools/skaffold/pull/2914)\n* Add missing T.Helper() in testutil.Check* as required [#2913](https://github.com/googlecontainertools/skaffold/pull/2913)\n* Move buildpacks tutorial to buildpacks example README [#2908](https://github.com/googlecontainertools/skaffold/pull/2908)\n...\n```\n\n## Options\n\n##### `--token`\n\nSpecify a personal Github Token if you are hitting a rate limit anonymously (see https://github.com/settings/tokens).\n\n##### `--since`\n\nThe tag of the last release up to which PRs should be collected (one of `any`, `patch`, `minor`, `major`, or a valid semver). Defaults to 'patch'. \n\nFor example:\n\n|  |`2.3.4-alpha.1+1234`|`2.3.4-alpha.1`|`2.3.4`|`2.3.0`|`2.0.0`|\n|---|---|---|---|---|---|\n|`any`|true|true|true|true|true|\n|`patch`|false|false|true|true|true|\n|`minor`|false|false|false|true|true|\n|`major`|false|false|false|false|true|\n\n\n## Installation\n\nYou need Go \u003e=1.16. Install by running:\n\n```sh\ngo install github.com/corneliusweig/release-notes\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorneliusweig%2Frelease-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcorneliusweig%2Frelease-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorneliusweig%2Frelease-notes/lists"}