{"id":17663532,"url":"https://github.com/maximousblk/prlog","last_synced_at":"2026-01-04T15:04:49.342Z","repository":{"id":62421661,"uuid":"291114719","full_name":"maximousblk/prlog","owner":"maximousblk","description":"Generate release notes based on GitHub Pull Requests","archived":false,"fork":false,"pushed_at":"2021-01-30T17:00:50.000Z","size":19,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-11T14:12:39.233Z","etag":null,"topics":["changelog","cli","release-notes","releases"],"latest_commit_sha":null,"homepage":"https://deno.land/x/prlog","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/maximousblk.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}},"created_at":"2020-08-28T18:07:33.000Z","updated_at":"2021-06-10T07:38:38.000Z","dependencies_parsed_at":"2022-11-01T17:32:32.988Z","dependency_job_id":null,"html_url":"https://github.com/maximousblk/prlog","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/maximousblk/prlog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximousblk%2Fprlog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximousblk%2Fprlog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximousblk%2Fprlog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximousblk%2Fprlog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maximousblk","download_url":"https://codeload.github.com/maximousblk/prlog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximousblk%2Fprlog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28149192,"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-12-31T02:00:06.200Z","response_time":55,"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":["changelog","cli","release-notes","releases"],"created_at":"2024-10-23T19:06:56.979Z","updated_at":"2026-01-04T15:04:49.326Z","avatar_url":"https://github.com/maximousblk.png","language":"TypeScript","readme":"# prlog\n\nGenerate release notes based on GitHub Pull Requests\n\n## Install\n\nYou can install prlog using the following command.\n\n```sh\ndeno install -A https://deno.land/x/prlog/prlog.ts\n```\n\n## Usage\n\n```sh\nprlog \u003cowner/repo\u003e [start_tag] [end_tag] [options]\n```\n\n- `[start_tag]` - where to start counting changes. Defaults to last tag or first commit.\n- `[end_tag]` - where to stop counting changes. Defaults to the last commit.\n- `[options]`:\n  - `-t, --template` - location of the release notes template (default: undefined)\n  - `-o, --output` - location where to output generated release notes (default: undefined)\n  - `-v, --version` - version to use in release notes (default: \"UNRELEASED\")\n  - `-b, --branch` - name of the default branch of the repo (default: \"master\")\n  - `-m, --markdown` - use CommonMark spec instead of GitHub Flavoured Markdown\n  - `-a, --append` - append the out to an existing changelog instead of owerwriting it\n  - `--auth` - GitHub access token. Use this to avoid API rate limits and access private repositories\n\nYou can also use the `GITHUB_TOKEN` environment variable to use the GitHub access token.\n\n### Templates\n\nprlog can use any plaintext file for templates. Just use appropriate tags where you need them. If you don't define a template, prlog cli will output only a markdown list of pull requests.\n\nOfficially supported tags:\n\n- `{{ VERSION }}` - release version\n- `{{ CHANGELOG }}` - list of merged pull requests\n\nExample :\n\n```md\n\u003c!-- template.md --\u003e\n\n### {{ VERSION }}\n\n{{ CHANGELOG }}\n```\n\n```sh\n# /bin/sh\nprlog denoland/deno -v 1.3.3 -t template.md -o changelog.md\n```\n\n```md\n\u003c!-- changelog.md --\u003e\n\n### 1.3.3\n\n- docs(std/fs): remove stale references to readFileStr and writeFileStr (#7254)\n- Typo in zsh env setup steps (#7250)\n- upgrade: rust 1.46.0 (#7251)\n```\n\n### Plugins\n\nIn addition to using the CLI, you can build custom plugins for prlog.\n\nOfficial plugins:\n\n- [Version](plugins/Version.ts) - Set the release version. tag: `{{ VERSION }}`\n- [SetDate](plugins/SetDate.ts) - Set date of release in desired format. tag: `{{ DATE }}`\n- [CodeName](plugins/CodeName.ts) - Set a code name for the release. tag: `{{ CODENAME }}`\n\nView [plugins](plugins) and [docs](https://doc.deno.land/https/deno.land/x/prlog/mod.ts) for more info.\n\nExample:\n\n```ts\n// release.ts\nimport prlog from \"https://deno.land/x/prlog/mod.ts\";\nimport \"https://deno.land/x/prlog/plugins/SetDate.ts\";\nimport \"https://deno.land/x/prlog/plugins/Version.ts\";\n\nconst template: string = `\n# {{ VERSION }} / {{ DATE }}\n\n{{ CHANGELOG }}\n`;\n\nconst changelog: string = (await prlog(template, \"denoland/deno\"))\n  .prlogSetDate()\n  .prlogVersion(\"1.3.3\");\n\nconsole.log(changelog);\n\n/*\n$ deno run -A release.ts\n### 1.3.3 / 02 09 2020\n\n- docs(std/fs): remove stale references to readFileStr and writeFileStr (#7254)\n- Typo in zsh env setup steps (#7250)\n- upgrade: rust 1.46.0 (#7251)\n*/\n```\n\n## License\n\nThis software is released under [The MIT License](LICENSE)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaximousblk%2Fprlog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaximousblk%2Fprlog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaximousblk%2Fprlog/lists"}