npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mp911de/changelog

v0.1.2

Published

Standalone TypeScript CLI that generates GitHub release notes for a commit range.

Readme

Changelog Tool

This is the home of Changelog Tool, a standalone command-line application for generating GitHub release notes from a commit range. It scans non-merge commits, resolves referenced GitHub issues and pull requests, and groups the resulting changes into configurable sections.

Changelog Tool requires Node.js 24 or later, Git, and gh.

For a detailed description of how commit messages are matched to issues and pull requests, how those references are grouped into sections, and how contributors are credited, see the Reference Documentation.

Code of Conduct

This project is governed by the Contributor Covenant. By participating, you are expected to uphold this code of conduct.

npx Quickstart

npx mp911de/changelog <version>

Alternative: Installation

npm install --global @mp911de/changelog

Usage

Run Changelog Tool in the Git repository for which release notes should be generated:

changelog [options] <version>
changelog [options] <from> <to>
changelog [options] <from>..<to>

With a single release version, Changelog Tool resolves the previous release tag and the appropriate upper bound automatically. Supported versions include SemVer and common Spring-style forms such as 4.0, v4.0.0, 4.0.0.RELEASE, 4.0.0.Final, 4.0.0.RC1, and 4.0.0.SR1.

An explicit range may instead be given as two arguments or in Git's two-dot notation. The from revision is excluded and the to revision is included. For example, changelog 4.0.0..4.0.4 is equivalent to changelog 4.0.0 4.0.4. Release notes are written to release-notes.md by default. GitHub authentication is obtained from the GH_TOKEN environment variable or an authenticated GitHub CLI installation.

Security

Do not report security vulnerabilities through a public issue. Use the private reporting process in SECURITY.md.

Running changelog with no arguments prints a short usage synopsis:

Usage: changelog [options] <target> [to]

Generate GitHub release notes for a commit range.

Arguments:
  target               release version to generate notes for, or the <from> of an explicit
                       range
  to                   explicit upper bound; supplying it treats <target> as the <from>
                       lower bound

Options:
  -V, --version        output the version number
  -C <directory>       run as if started in the given directory
  -O, --output <file>  output file, or - for stdout (default: "release-notes.md")
  --all                collect unclassified issues under an Other Changes section (default:
                       false)
  --refresh            force re-fetch and overwrite cached tickets (default: false)
  --show-missing       list only commits without ticket reference (default: false)
  --show-commits       list every scanned commit (default: false)
  --show-all           list every commit and every looked-up ticket outcome (default:
                       false)
  --repo <owner/repo>  override the auto-detected repository
  --resolve-previous   print the resolved previous version tag and exit (default: false)
  --debug              trace the git and GitHub calls being made (default: false)
  -q, --quiet          suppress all output except errors (default: false)
  -h, --help           display help for command

-O - implies --quiet, so standard output carries only the changelog; with --debug the trace is written to standard error. --quiet and --debug cannot be combined.

Build from Source

See Contributing for build instructions and contribution guidelines.

Continuous Integration Builds

CI builds run in GitHub Actions.

License

Changelog Tool is released under version 2.0 of the Apache License.